From: Reinhold Kainhofer Date: Sun, 10 Apr 2011 07:00:53 +0000 (+0200) Subject: Add documentation about alternative breve symbol X-Git-Tag: release/2.13.60-1~16 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=ab0aa30677036343c715becc677a43c62fca4119;p=lilypond.git Add documentation about alternative breve symbol --- diff --git a/Documentation/notation/rhythms.itely b/Documentation/notation/rhythms.itely index dd084a2156..0a7a8568ba 100644 --- a/Documentation/notation/rhythms.itely +++ b/Documentation/notation/rhythms.itely @@ -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 index 0000000000..b360b89e5b --- /dev/null +++ b/Documentation/snippets/alternative-breve-note.ly @@ -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 index 0000000000..4b55d15e9f --- /dev/null +++ b/Documentation/snippets/new/alternative-breve-note.ly @@ -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 +}