]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/topdocs/FAQ.texi
release: 1.3.114
[lilypond.git] / Documentation / topdocs / FAQ.texi
1 \input texinfo @c -*-texinfo-*-
2 @setfilename FAQ.info
3 @settitle FAQ - GNU LilyPond Frequently Asked Questions
4
5
6 @node Top
7 @chapter FAQ - GNU LilyPond Frequently Asked Questions
8
9
10 @menu
11 * General::                       General questions
12 * Installation::                  Installation questions
13 @end menu
14
15
16 @node General
17 @section General
18
19 @subsection I'm stuck, HELP!
20
21 Please read the
22 @uref{http://appel.lilypond.org/wiki?LilyPondFaqs, full online
23 FAQs}.  Also, please look in the searchable mailinglist archives:
24
25 @itemize @bullet
26 @item
27 @uref{http://www.mail-archive.com/help-gnu-music@@gnu.org,help-gnu-music}
28 @item
29 @uref{http://www.mail-archive.com/bug-gnu-music@@gnu.org,bug-gnu-music}
30 @item
31 @uref{http://www.mail-archive.com/gnu-music-discuss@@gnu.org,gnu-music-discuss}
32 @end itemize
33
34 If you are still at loss, send your questions to the @strong{mailing
35 list}, and not to authors directly.
36
37 @subsection My symbols are all messed up!
38
39 After I upgraded, I get the wrong symbols and dvi-checksum errors!
40
41 We obviously mucked with the fonts in the upgrade.  Remove @strong{all}
42 previous fonts, including the @file{.pk} and @file{.tfm} fonts in
43 @file{/var/lib/texmf} and your current directory.  A script automating
44 this has been included, see @file{buildscripts/clean-fonts.sh}.
45
46 @node Installation
47 @section Installation
48
49 @subsection Where is guile, libguileX, guile-config?
50
51 RedHat users need to install guile-1.4 and guile-devel-1.4, Debian
52 users need to get guile1.4, libguile9 and libguile9-dev.
53
54 If you're building from source, you need guile 1.3.4 or newer.  Verify
55 that the correct guile, guile-config, and libguile* in your PATH and
56 LD_LIBRARY_PATH (or @file{/etc/ld.so.conf}).
57
58 @subsection I upgraded by applying a patch, and now my configure/build breaks.
59
60 Patches don't include automatically generated files, i.e. 
61 @file{configure} and files generated by @file{configure}.  Regenerate them 
62 yourself:
63 @example 
64
65     autoconf
66     configure
67  
68 @end example 
69
70 @subsection Is there an emacs mode?
71
72 Yes.  It is included with the source archive as
73 @file{lilypond-mode.el} and @file{lilypond-font-lock.el}.  If you have
74 an RPM or .deb it is in @file{/usr/share/doc/lilypond-X/}.  You have
75 to install it yourself.
76
77 Add this to your .emacs.el:
78 @example 
79     (load-library "lilypond-mode.el")
80     (setq auto-mode-alist
81      (append '(("\\.ly$" . LilyPond-mode) auto-mode-alist)))
82 @end example 
83
84
85 @subsection I downloaded the windows32 port, and it doesn't match the website!
86
87 The website is usually made from the latest snapshots.  Binary releases,
88 in particular the windows32 binaries, are only made every once in a while.
89 They may lag several versions behind the latest version.
90
91 @bye