]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/web.texi
621488e92f53b98df0714c4fc46b49335a220d71
[lilypond.git] / Documentation / web.texi
1 \input texinfo @c -*- coding: utf-8; mode: texinfo; -*-
2 @ignore
3     Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
4
5     When revising a translation, copy the HEAD committish of the
6     version that you are working on.  For details, see the Contributors'
7     Guide, node Updating translation committishes..
8 @end ignore
9
10 @setfilename web.info
11 @settitle LilyPond -- Music notation for everyone
12 @documentencoding UTF-8
13 @documentlanguage en
14 @afourpaper
15
16 @c `Web' was imported 2009-08-05 with git commit b938d71...
17 @c @macro copyrightDeclare
18 @c Copyright @copyright{} 2009--2012 by the authors.
19 @c @end macro
20
21 @set FDL
22 @set web
23 @include macros.itexi
24 @include weblinks.itexi
25
26
27 @c don't remove this comment.
28 @ignore
29 @omfcreator Graham Percival and Patrick McCarty
30 @omfdescription General info about the LilyPond music engraving system
31 @omftype program usage
32 @omfcategory Applications|Publishing
33 @omflanguage English
34 @end ignore
35
36 @copying
37 Copyright @copyright{} 2009--2012 by the authors.
38
39 @c next line is necessary for broken pre-4.13 texinfo's
40 @c install-info, so leave it there until we officially
41 @c bump the required version.  -gp
42 This file documents the LilyPond website.
43
44 @quotation
45 Permission is granted to copy, distribute and/or modify this
46 document under the terms of the GNU Free Documentation License,
47 Version 1.1 or any later version published by the Free Software
48 Foundation; with no Invariant Sections.  A copy of the license is
49 included in the section entitled ``GNU Free Documentation
50 License''.
51 @end quotation
52 @end copying
53
54
55 @c Info files are no longer installed in a subdirectory, images are
56 @c expected to be found in lilypond/ subdirectory.
57 @dircategory GNU LilyPond --- the music typesetter
58 @direntry
59 * LilyPond Learning Manual: (lilypond-learning).  Start here.
60 * Music Glossary: (music-glossary).               For non-English users.
61 * LilyPond: (lilypond-notation).                           LilyPond Notation Reference.
62 * LilyPond Snippets: (lilypond-snippets).         Short tricks, tips, and examples.
63 * LilyPond Internals Reference: (lilypond-internals).  Definitions for tweaking.
64 * LilyPond Application Usage: (lilypond-usage). Installing and running applications.
65 * LilyPond Website: (lilypond-web).    Preview of new website.
66 * lilypond: (lilypond-usage)Running lilypond.      Invoking the LilyPond program.
67 * abc2ly: (lilypond-usage)Invoking abc2ly.      Importing ABC.
68 * convert-ly: (lilypond-usage)Updating files with convert-ly. Older LilyPond versions.
69 * etf2ly: (lilypond-usage)Invoking etf2ly.      Importing Finale.
70 * lilypond-book: (lilypond-usage)lilypond-book. Integrating text and music.
71 * midi2ly: (lilypond-usage)Invoking midi2ly.    Importing MIDI.
72 * musicxml2ly: (lilypond-usage)Invoking musicxml2ly.  Importing MusicXML.
73 @end direntry
74
75
76 @c TITLE PAGE
77 @ifnottex
78 @node Top
79 @top LilyPond... music notation for everyone
80 @end ifnottex
81
82
83 @c hack for texi2html, bleh -gp
84 @ifnothtml
85
86 @finalout
87
88 @titlepage
89 @title LilyPond
90 @subtitle The music typesetter
91 @titlefont{General Information}
92 @author The LilyPond development team
93
94 @vskip 0pt plus 1filll
95 @c @vskip 20pt
96
97 @insertcopying
98
99 For LilyPond version @version{}
100 @end titlepage
101 @end ifnothtml
102 @c end hack for texi2html
103
104
105 @c ************************ WEBSITE START ***************
106
107
108 @divId{pageHeader}
109 @heading LilyPond
110
111 ... music notation for everyone
112 @divEnd
113
114 @c @imageId{cmws,web-clef-g-eight-alpha.png,Catchy Musical Web Snippet}
115 @imageId{lilylogo,double-lily-modified3,png,LilyPond logo}
116 @c @im ageId{cmws,web-snippet-alpha.png,Catchy Musical Web Snippet}
117
118 @divId{quickSummary}
119 @subheading What is LilyPond?
120
121 LilyPond is a music engraving program, devoted to producing the
122 highest-quality sheet music possible.  It brings the aesthetics of
123 traditionally engraved music to computer printouts.  LilyPond is free
124 software and part of the @uref{http://gnu.org,GNU Project}.
125
126
127 @divClass{align-right}
128 Read more in our @ref{Introduction}!
129
130 @divEnd
131 @divEnd
132
133 @divClass{separator}
134 @divEnd
135
136
137 @divId{news}
138
139 @c TODO: generate this automatically, including RSS feed.
140 @include web/news-front.itexi
141
142 @divClass{float-right}
143 (@ref{Old news})
144 @divEnd
145
146 @divEnd
147
148 @ifclear web_version
149   @c do nothing
150 @end ifclear
151 @ifset web_version
152   @c make the box:
153 @divId{wildCardBox}
154 @subheading Pondings
155 @divId{wildCardText}
156
157 @divEnd
158 @divEnd
159 @end ifset
160
161 @html
162
163 <script language="JavaScript" type="text/javascript">
164   function loadXMLDoc(dname)
165     {
166       if (window.XMLHttpRequest)
167         {
168           xhttp=new XMLHttpRequest();
169         }
170       else
171         {
172           xhttp=new ActiveXObject("Microsoft.XMLHTTP");
173         }
174       xhttp.open("GET",dname,false);
175       xhttp.send();
176       return xhttp.responseXML;
177     }
178
179   var xmlDoc = loadXMLDoc("tweets.xml");
180   var tweets = xmlDoc.getElementsByTagName("tweet");
181   var index = Math.floor(Math.random() * tweets.length);
182   var tweet = tweets[index];
183   var text = tweet.childNodes[0];
184   document.getElementById("wildCardText").innerHTML = text.nodeValue;
185 </script>
186
187 @end html
188
189 @ifset web_version
190   @c make the box:
191 @divId{latestVersion}
192 @subheading Quick links
193
194 @c TODO: javascript to detect OS and suggest download?
195
196 @subsubheading Stable
197
198 @ref{Download, Download @versionStable}
199
200 @ref{Manuals, Manuals @versionStable}
201
202 @subsubheading Unstable
203
204 @ref{Development, Download @versionDevel}
205
206 @ref{Development, Manuals @versionDevel}
207
208 @divEnd
209 @end ifset
210
211
212 @ifnottex
213
214 @divClass{hide}
215 @menu
216 * Introduction::     Start here to creating sheet music.
217 * Download::         Get LilyPond.
218 * Manuals::          Read The Fine Manuals (RTFM).
219 * Community::        Contact other users.
220 @end menu
221 @divEnd
222
223 @end ifnottex
224
225 @contents
226
227 @allowcodebreaks false
228
229 @c ****************** GENERAL STUFF FOR INFO ************
230 @ignore
231 Distributions will want to install lilypond.info in postinstall, doing:
232
233     install-info --info-dir=/usr/share/info out[-www]/lilypond-web.info
234
235   * Prepend GNU for dir, must be unique.
236
237   * Do not list the `lilypond' node at toplevel, so that `info lilypond'
238     goes to Top.
239
240   * List all commands in direntry.
241
242 @end ignore
243
244 @c FIXME: this still doesn't solve the broken links in pdf and big
245 @c        html; we'll need a bunch of @iftext and stuff in here. -gp
246 @c ****************** SPECIAL MACROS FOR WEB MANUAL ************
247 @macro docLinks{name,base,refLink,split,big,bigsize,pdf,pdfsize}
248 @subheading Read it
249
250 @docLinksBare{\name\,\base\,\refLink\,\split\,\big\,\bigsize\,\pdf\,\pdfsize\}
251
252 @end macro
253
254
255 @macro docLinkSplit{name,base,webLink}
256   @docLink{\name\ (split HTML),\base\/index.html,\webLink\}
257 @end macro
258
259 @macro docLinkBig{name,base,webLink}
260   @docLink{\name\ (big HTML),\base\-big-page.html,\webLink\}
261 @end macro
262
263 @macro docLinkPdf{name,base,webLink}
264   @docLink{\base\.pdf,\base\.pdf,\webLink\}
265 @end macro
266
267
268 @macro docLinksBare{name,base,refLink,split,big,bigsize,pdf,pdfsize}
269
270 @divClass{keep-bullets}
271 @itemize
272
273 @item @docLinkSplit{\name\,\base\,\split\} @minus{}
274   the manual is split between many HTML pages.
275   @*@ @ @emph{(small download for each page)}
276
277 @item @docLinkBig{\name\,\base\,\big\} @minus{}
278   read this manual as one huge HTML page.
279   @*@ @ @emph{(large single download, \bigsize\)}
280
281 @item @docLinkPdf{\name\,\base\,\pdf\} @minus{}
282   download as a PDF file.
283   @*@ @ @emph{(large single download, \pdfsize\)}
284
285 @end itemize
286
287 @divEnd
288
289 @end macro
290
291
292 @c don't add any extra spaces in this macro -gp
293 @macro ifWebLinks{webLink,normalLink}
294 @ifclear web_version
295   \normalLink\:
296 @end ifclear
297 @ifset web_version
298   \webLink\:
299 @end ifset
300 @end macro
301
302
303 @ifhtml
304 @macro contactUsAbout{topic}
305
306 @divClass{heading-center}
307 @divClass{contactBox}
308 If you are aware of any other \topic\ which could be listed here,
309 please let us know by writing a message to the bug-lilypond
310 mailing list. If you're not subscribed yet you can do so on the list's
311 @uref{https://lists.gnu.org/mailman/listinfo/bug-lilypond,info page}
312 or post directly through the
313 @uref{http://post.gmane.org/post.php?group=gmane.comp.gnu.lilypond.bugs,
314 gmane lilypond.bugs web interface}.
315
316 @divEnd
317 @divEnd
318
319 @end macro
320 @end ifhtml
321
322 @ifnothtml
323 @macro contactUsAbout{topic}
324 @cartouche
325 If you are aware of any other \topic\ which could be listed here,
326 please let us know by following the instructions on
327 @ref{Bug reports}.
328
329 @end cartouche
330
331 @end macro
332 @end ifnothtml
333
334 @include web/introduction.itexi
335 @include web/download.itexi
336 @include web/manuals.itexi
337 @include web/community.itexi
338
339
340 @bye