]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/faq.pod
release: 0.1.32
[lilypond.git] / Documentation / faq.pod
1 =head1 NAME
2
3 FAQ - GNU LilyPond FAQs
4
5 =head1 DESCRIPTION
6
7 Some questions that have been answered before.
8
9 =head2 Installing
10
11 Q: I get all kinds of errors while  compiling F<parser.cc>
12
13 A: LilyPond uses features of bison version 1.25. Please confirm that
14 you are using a version 1.25 or better, that is B<GNU> bison
15 B<1.25>. Don't forget to do "make clean" after installing it. Don't
16 forget to remove the stale F<bison.simple> as well.
17
18 If the problem persists, then please mail me.
19
20 Q: Some of your neat scripts fail, what directories do you use:
21
22 A: [This only applies if you don't do C<make install>, and develop out
23 of the source directory]
24         
25         ~/something/
26
27 which contains:
28
29           lilypond/     # the directory as unpacked from the tarball
30           releases/     # directory for .tar.gz releases
31           patches/      # directory for patches between different releases
32           test/
33         
34 ~/something/lilypond/bin is in the PATH, and contains symlinks to the
35 compiled executables.
36
37 If you don't use patches, you'd probably want to symlink
38
39         lilypond -> lilypond-x.y.z
40
41 =head2 Language: mudela
42
43 Q: Why can't you type C<#c> in stead of C<cis> ?
44
45 A: We think that C<#c> looks as if you are entering the symbols to
46 print (which you are not; remember, you're entering the musical
47 content in Mudela)
48
49 We're not sure on leaving out this feature. If you think this is a
50 good idea, please let us know.
51
52 Be warned we will I<not> allow you to leave out the C<#> if the note
53 already has an accidental. We won't allow
54
55         c# c    % no way! 
56
57 in stead of:
58
59         cis cis
60         #c #c
61
62 Why, you might ask? Because independently of how it was written, you
63 would say that you are playing and reading "two C-sharp" notes.
64
65
66 Q: What is C<cis> anyway
67
68 A: C<cis> is the dutch naming for C-sharp. The notes are named
69 a, b,.., g. The suffix -is means sharp, and -es flat. This system is
70 common in a number of languages (such as swedish, dutch, german.)
71 Certain other languages (such as English, French and Italian) just add
72 the word for "sharp" to the notename.
73
74 We chose the Dutch system, because we're dutch. You are free to chose
75 whatever names you like; they are user definable.
76
77 Q: I can type
78
79         <a c> <e g>
80
81 to make a few chords, but why do I have to type
82
83
84         < { a~ e } { c ~ g } >
85
86 instead of
87
88         <a~ c~> <e g>
89
90 to generate ties between the chords?
91
92 A: When you type 
93
94         <a c> <e g>
95
96 this is shorthand for
97
98         < { a } { c } > < { e } { g } >
99
100 Ties have to be confined to `voices', and the a and the e are in
101 different {} blocks, so they are in different voices. You should view
102 the desired construct as a "generalised chord" (two voices stacked
103 vertically). It might help you visualise this by using the following
104 formatting:
105
106         < { a ~ e }
107           { c ~ g }
108         >
109
110 Q: and where do the beams come into this picture?
111
112 A: Beams are voicegroup-wide, and may be entered in any part of the
113 voicegroup:
114
115         < { [a ~ e] } { c ~ g } >
116         < { [a ~ e } { c ~ g] } >
117         < { [a ~ e] } { [c ~ g] } >
118
119 These all give the same result.
120
121 Q: Why are [] around the notes, and () inbetween?
122
123 A: [] designate beams, a note can only be in one beam at the same
124 time. () is a slur, which connects notes.  You need to be able to 
125 specify
126
127         a()a()a
128
129 Q: I want to insert some TeX commands
130
131 A: You shouldn't: it's against LilyPond philosophy to have typesetting
132 commands in the mudela source. Moreover, this would be difficult. The
133 manner in which Request (the basic building blocks of mudela) are
134 translated into printable items is complex: it is not always possible
135 to associate one Request with one Item or Spanner.
136
137 As a further notice, we want to move away from TeX (and perhaps
138 output PostScript or render to an X window too), so  using TeX will
139 make sources non-portable at some time.
140
141 =head2 Miscellaneous
142
143 Q: Do you support pop songs (chords, single staff, lyrics)?
144
145 A: Yes, see the F<twinkle-pop> example
146
147 Q: Do you support guitar chord diagrams?
148
149 A: No, not yet. We ourselves don't play guitar, and don't know the
150 fine points of this notation.  We would welcome anyone who could give
151 this a try.
152
153 Q: Do you support TAB notation
154
155 A: No. The same as for the previous question goes, but TAB is a lot
156 more work than diagrams (TAB needs modification of Parser, Lexer,
157 Staff, Notehead, Stem code and all the code that creates these graphic
158 elements.)
159
160 Q: How do I change the TeX layout?
161
162 A: See F<lilyponddefs.tex>, it has some comments.
163
164 Q: How do I learn the C++ code?
165
166 A: The entry point is in C<main()>. Good luck. :-)
167
168 Seriously, read, reread and reread lilygut and CodingStyle, and
169 just start anywhere. 
170
171 Anywhere? Well, most of the comment doco are in the header files, so
172 your best bet would be C<less lily/include/*.hh>. Some of the most
173 important data-structures are to be found in:
174
175         - p-col.hh
176         - *request.hh
177         - engraver.hh
178         - performer.hh
179         - translator.hh
180         - score-elem.hh
181         - music.hh
182         - music-list.hh
183         - music-iterator.hh
184         - item.hh
185         - spanner.hh
186
187
188 Q: Why GPL?
189
190 A: Yes.
191
192 Q: Could you implement feature XXXX? It is really easy, just extend
193 the syntax to allow YYYY!
194
195 A: If it is reasonable, I'll add XXXX to the TODO list. In general
196 finding a cute syntax (such as YYYY) isn't very hard. The complicated
197 issue how to adapt the internals to do XXXX. The parser is really a
198 simple front end to the complicated internals. 
199
200
201 Q: I want to implement XXXX!  Should I do this?
202
203 A: There might be better ways of doing XXXX, so it's a good thing to
204 ask about this before you start hacking.  If you want to keep in touch
205 with current developments, you should subscribe to the mailing list
206 (see the "links" section of the documentation).
207
208
209 Q: I want to implement XXXX!  How should I do this?
210
211 A: Your best bet of getting me to include code, is to present it as a
212 "fait accompli", ie., to send me a patch.
213
214
215 Q: Why do I need g++ >= 2.7?
216
217 A: By using g++, GNU LilyPond is portable to all platforms which support
218 g++ (there are quite a few). Not having to support other compilers
219 saves us a I<lot> of trouble. 
220
221 =head2 Running
222
223 Q: I don't get midi-output, even if I use B<-M>
224
225 A: Your \score should include a \midi block, eg.
226
227         \score {
228                 \melodic { c4 c g g }
229                 \paper {}       
230                 \midi {
231                         \output "myfile.mid";
232                         \tempo 4=70;
233                 }
234
235 The B<-M> option was added to LilyPond because processing the \paper
236 block is so slow.
237
238 Q: A lot of musical stuff doesn't make it to the MIDI file (dynamics,
239 articulation, etc).
240
241 A: The MIDI output was originally put in as a proof that MIDI could be
242 done, and as a method of proof"reading" the input.  The MIDI support
243 is by no means finished. 
244
245 Q: I get 
246
247         can't load library 'libflower.so'
248
249 A: You are using the dynamically compiled Flower library. Please set
250 LD_LIBRARY_PATH to a directory containing F<libflower.so>
251
252 =head2 DOZE
253
254 Q: I want a DOS/NT/W95 port.
255
256 A.0: Reconsider.  Try Linux.  It's fun!
257
258 A.1: Currently (0.0.27), GNU LilyPond (and flowerLib) compiles, 
259 links and runs on Windows-nt, using Cygnus' gnu port (release b17.1). 
260 I (JCN) only had to make a minor workaround for missing library calls.  
261 Have a look at http://www.cygnus.com/gnu-win32.  To make GNU LilyPond 
262 type C<make>. (I am not promising to maintain this platform, it is just
263 that when forced into doze, i'm sometimes too lazy to reboot.)
264
265 A.2: I haven't had time to find a Linux GCC crosscompiler (I<with> g++
266 and libg++, mind you) to DOS/Windows (in rpm, please :-)
267
268 A.3: If you are knowledgeable enough to make w32 compiles from time to
269 time, please do so!  We want to keep away from w32 as far as possible.
270
271 Q: I just love to blindly run the (sometimes bit stale) .exe's you distribute. 
272 Why do i need cygwin.dll?
273
274 A: It's all in this cut-n-paste:
275
276 Minimalist GNU-Win32 Readme                   
277 version 0.1.3                           
278 March 20, 1997                       
279 Colin Peters <colin@bird.fu.is.saga-u.ac.jp>
280
281 [...]
282
283 0.3 Fixes and Improvements          
284
285 [...]
286 In the "coming soon" category I have a version of the GNU Standard C++
287 library ported to Mingw32. This means you can use iostreams, complex
288 numbers and all those neat STL (Standard Template Library) things
289 without needing the Cygwin DLL. I hope to put this port up for
290 downloading soon (along with the source of course).
291        
292 [...] 
293
294 3.2 C++ Support                                                         
295
296 To add C++ Support to the above the following extra files are required: 
297
298 In C:\cygnus\H-i386-cygwin32\lib\gcc-lib\i386-cygwin32\cygnus-2.7.2-    
299 961023:                                                                         
300         cc1plus.exe                                                   
301
302 Note that this does not include support for the standard C++ libraries
303 (only the C run time libraries) or for iostreams. That support is still
304 only available with the Cygwin32 API.
305