From ab0aa30677036343c715becc677a43c62fca4119 Mon Sep 17 00:00:00 2001 From: Reinhold Kainhofer Date: Sun, 10 Apr 2011 09:00:53 +0200 Subject: [PATCH] Add documentation about alternative breve symbol --- Documentation/notation/rhythms.itely | 3 +++ Documentation/snippets/alternative-breve-note.ly | 16 ++++++++++++++++ .../snippets/new/alternative-breve-note.ly | 13 +++++++++++++ 3 files changed, 32 insertions(+) create mode 100644 Documentation/snippets/alternative-breve-note.ly create mode 100644 Documentation/snippets/new/alternative-breve-note.ly 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 +} -- 2.39.5