Benutzer-Werkzeuge

Webseiten-Werkzeuge


lilypond:faq_links

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Nächste Überarbeitung
Vorhergehende Überarbeitung
lilypond:faq_links [2011/07/20 16:22] reinholdlilypond:faq_links [2013/09/09 23:41] (aktuell) – gelöscht reinhold
Zeile 1: Zeile 1:
-====== Reinhold Links to LilyPond Answers ====== 
  
-===== Printing out a SMOB from within C++ ===== 
- 
-Use 
-    ly_display_scm ([SCM-object]); 
-     
-===== Positioning dynamics (\ff) before notes instead of above ===== 
- 
-Use 
-            \override DynamicLineSpanner #'padding = #-1.8 
-            \override DynamicText #'extra-offset = #'( -2.1 . 0) 
-before the dynamics. (Taken from http://lilypond.org/doc/v2.10/Documentation/user/lilypond/Fitting-music-onto-fewer-pages) 
- 
- 
- 
-===== How shall I write tempo marks (Andante, Allegro, etc) so that they don't disturb the spacing of the notes? ===== 
- 
-You can use the following definition: 
-     tempoMark = #(define-music-function (parser location padding marktext) 
-                                         (number? string?) 
-     #{ 
-       \once \override Score . RehearsalMark #'padding = $padding 
-       \once \override Score . RehearsalMark #'no-spacing-rods = ##t 
-       \mark \markup {  $marktext } 
-     #}) 
-and then  
-  \tempoMark #3.0 #"Andante" 
-in the notes. The first argument is the padding, the second the text. Of course you can modify the contents of \markup to make the text appear in bold/italic or whatever you like. (Taken from http://lilypond.org/doc/v2.10/Documentation/user/lilypond/Advanced-tweaks-with-Scheme#Advanced-tweaks-with-Scheme) 
- 
-===== If I combine the rests in choir music, a doted 8th rest will have two dots ===== 
- 
-If you combine rests of two choir voices on the same staff, you can do this with: 
-  GlobalSettings = { 
-    ... 
-    \revert Rest #'direction 
-    \revert MultiMeasureRest #'staff-position 
-  } 
- 
-However, then dotted rests will appear with two dots. The reason is apparently that \voiceOne and \voiceTwo settings also set different prefered directions for the dots. One possible solution is to try to add also 
-  \revert Dots #'direction 
-and/or 
-  \revert DotColumn #'direction 
-( Tip given by Mats Bengtsson on the [[http://www.mail-archive.com/lilypond-user%40gnu.org/msg14115.html|Lilypond User Mailinglist]], [[http://www.mail-archive.com/lilypond-user%40gnu.org/msg14116.html|didn't work for me, though]]) 
- 
-===== Increasing the horizontal spacing of vocal scores ===== 
-Lilypond is too aggressive puttint too much stuff in one line. As a workaround, try: 
-  \override Score.SeparationItem #'padding = #0.5 
-(from the [[http://www.mail-archive.com/lilypond-user%40gnu.org/msg14121.html|Lilypond Mailinglist]] and the documentation) 
- 
-===== Removing empty staves in a system ===== 
- 
-If a whole staff contains only rests, you can tell lilypond to hide such staves by using the RemoveEmptyStaffContext: 
-  \layout { 
-    \context { 
-      \RemoveEmptyStaffContext  
-    } 
-  } 
-However, the first system will always have all staves, even if they are empty! This can be changed by  
-  \layout { 
-    \context { \Score 
-      \override VerticalAxisGroup #'remove-first = ##t 
-    } 
-  } 
-(idea taken from http://www.mail-archive.com/lilypond-user%40gnu.org/msg23664.html) 
- 
-===== Links to snippets ===== 
-  * [[http://lilypond.org/doc/v2.10/input/regression/collated-files#parenthesize.ly|Staccato etc. in parentheses]] 
-  * [[http://lilypond.org/doc/v2.10/input/regression/collated-files#span-bar.ly|Bar lines in ChoirStaff also / only between the staves]] 
-  * [[http://lilypond.org/doc/v2.10/input/regression/collated-files#accidental-cautionary.ly|Cautionary accidentals (sharp/flat) in parentheses or smaller font]] 
-  * [[http://lsr.dsi.unimi.it/LSR/Item?id=213|Various breathing signs and caesuras]] 
-  * [[http://lsr.dsi.unimi.it/LSR/Item?id=170|Caesura with fermata]] 
-  * [[http://lsr.dsi.unimi.it/LSR/Item?id=262|Text and \f,\p (e.g. "1. \f, 2. \p")]] 
-  * [[http://lsr.dsi.unimi.it/LSR/Item?id=201|Display choir bracket also with single solo staff]] 
-  * [[http://lsr.dsi.unimi.it/LSR/Item?id=99|Boxes around marks]] 
-  * [[http://lsr.dsi.unimi.it/LSR/Item?id=227|Various page spacing values]] 
-  * [[http://lsr.dsi.unimi.it/LSR/Item?id=1|Fermata on last bar line]] 
-  * D.S. al Coda: [[http://lsr.dsi.unimi.it/LSR/Item?id=190|Coda in new line]], [[http://lsr.dsi.unimi.it/LSR/Item?id=198|Coda in same line]] 
-  * [[http://lsr.dsi.unimi.it/LSR/Item?id=293|Title on every page]] 
-  * [[http://lsr.dsi.unimi.it/LSR/Item?id=185|Repeat alternatives brackets forced at the same height]] 
-  * [[http://lsr.dsi.unimi.it/LSR/Item?id=232|Shifting dynamics to the left of the note]] 
-  * [[http://lsr.dsi.unimi.it/LSR/Item?id=218|Rehearsal mark maekup (boxed, cirlec, etc.)]] 
-  * [[http://lists.gnu.org/archive/html/lilypond-user/2006-10/msg00443.html|Applying some setting to all scores / staves / lyrics / etc.]] 
-  *  [[http://lilypond.org/doc/v2.10/Documentation/user/lilypond/Changing-horizontal-spacing#Changing-horizontal-spacing|Better horizontal spacing by choosing smaller base duration]] 
-  * [[http://lsr.dsi.unimi.it/LSR/Item?id=301|Preventing long \mark texts to stretch the measure]] 
-  * [[http://lsr.dsi.unimi.it/LSR/Item?id=287|Printing "D.C. al fine" at the very end of the score]] 
-  * [[http://www.mail-archive.com/lilypond-user%40gnu.org/msg23664.html|Removing empty (all-rests) lines in scores, even the first line if empty]] 
lilypond/faq_links.1311178945.txt.gz · Zuletzt geändert: 2013/03/13 10:42 (Externe Bearbeitung)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki