]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/formatting-lyrics-syllables.ly
resolve merge
[lilypond.git] / Documentation / snippets / formatting-lyrics-syllables.ly
diff --git a/Documentation/snippets/formatting-lyrics-syllables.ly b/Documentation/snippets/formatting-lyrics-syllables.ly
new file mode 100644 (file)
index 0000000..22ab511
--- /dev/null
@@ -0,0 +1,36 @@
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.dsi.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
+%% This file is in the public domain.
+\version "2.14.0"
+
+\header {
+%%%    Translation of GIT committish: f86f00c1a8de0f034ba48506de2801c074bd5422
+  texidocde = "
+Textbeschriftungsmodus kann eingesetzt werden, um individuelle Silben im Gesangstext
+zu formatieren.
+
+"
+  doctitlede = "Silben im Gesangstext formatieren"
+
+  lsrtags = "text, vocal-music"
+
+  texidoc = "
+Markup mode may be used to format individual syllables in lyrics.
+
+"
+  doctitle = "Formatting lyrics syllables"
+} % begin verbatim
+
+mel = \relative c'' { c4 c c c }
+lyr = \lyricmode {
+  Lyrics \markup { \italic can } \markup { \with-color #red contain }
+  \markup { \fontsize #8 \bold Markup! }
+}
+
+<<
+  \new Voice = melody \mel
+  \new Lyrics \lyricsto melody \lyr
+>>