]> git.donarmstrong.com Git - lilypond.git/commitdiff
Add documentation about alternative breve symbol
authorReinhold Kainhofer <reinhold@kainhofer.com>
Sun, 10 Apr 2011 07:00:53 +0000 (09:00 +0200)
committerReinhold Kainhofer <reinhold@kainhofer.com>
Sun, 10 Apr 2011 07:00:53 +0000 (09:00 +0200)
Documentation/notation/rhythms.itely
Documentation/snippets/alternative-breve-note.ly [new file with mode: 0644]
Documentation/snippets/new/alternative-breve-note.ly [new file with mode: 0644]

index dd084a2156ad03fe2c4b1ff9f45c2cc452839217..0a7a8568ba2b57a51996185fcdc9192488e08476 100644 (file)
@@ -142,6 +142,9 @@ the staff; see @ref{Direction and placement}.
 
 @snippets
 
+@lilypondfile[verbatim,lilyquote,ragged-right,texidoc,doctitle]
+{alternative-breve-note.ly}
+
 @lilypondfile[verbatim,lilyquote,ragged-right,texidoc,doctitle]
 {changing-the-number-of-augmentation-dots-per-note.ly}
 
diff --git a/Documentation/snippets/alternative-breve-note.ly b/Documentation/snippets/alternative-breve-note.ly
new file mode 100644 (file)
index 0000000..b360b89
--- /dev/null
@@ -0,0 +1,16 @@
+% Do not edit this file; it is automatically
+% generated from Documentation/snippets/new
+% This file is in the public domain.
+\version "2.13.36"
+\header {
+  lsrtags = "rhythms,expressive-marks"
+  texidoc = "This code demonstrates how to use the alternative breve note
+with two vertical lines on each side of the notehead instead of one line."
+  doctitle = "Alternative breve notehead with double vertical lines"
+} % begin verbatim
+
+\relative c'' {
+  \time 4/2
+  \override Staff.NoteHead #'style = #'altdefault
+  c\breve | b\breve
+}
diff --git a/Documentation/snippets/new/alternative-breve-note.ly b/Documentation/snippets/new/alternative-breve-note.ly
new file mode 100644 (file)
index 0000000..4b55d15
--- /dev/null
@@ -0,0 +1,13 @@
+\version "2.13.36"
+\header {
+  lsrtags = "rhythms,expressive-marks"
+  texidoc = "This code demonstrates how to use the alternative breve note
+with two vertical lines on each side of the notehead instead of one line."
+  doctitle = "Alternative breve notehead with double vertical lines"
+}
+
+\relative c'' {
+  \time 4/2
+  \override Staff.NoteHead #'style = #'altdefault
+  c\breve | b\breve
+}