]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/printing-hairpins-in-various-styles.ly
Imported Upstream version 2.18.0
[lilypond.git] / Documentation / snippets / printing-hairpins-in-various-styles.ly
diff --git a/Documentation/snippets/printing-hairpins-in-various-styles.ly b/Documentation/snippets/printing-hairpins-in-various-styles.ly
new file mode 100644 (file)
index 0000000..1ce96f7
--- /dev/null
@@ -0,0 +1,38 @@
+% DO NOT EDIT this file manually; it is automatically
+% generated from Documentation/snippets/new
+% Make any changes in Documentation/snippets/new/
+% and then run scripts/auxiliar/makelsr.py
+%
+% This file is in the public domain.
+%% Note: this file works from version 2.17.14
+\version "2.17.14"
+
+\header {
+  lsrtags = "expressive-marks"
+
+  texidoc = "
+Hairpin dynamics may be created in a variety of styles
+
+"
+  doctitle = "Printing hairpins in various styles"
+} % begin verbatim
+
+
+\relative c'' {
+  \override Hairpin.stencil = #flared-hairpin
+  a4\< a a a\f
+  a4\p\< a a a\ff
+  a4\sfz\< a a a\!
+  \override Hairpin.stencil = #constante-hairpin
+  a4\< a a a\f
+  a4\p\< a a a\ff
+  a4\sfz\< a a a\!
+  \override Hairpin.stencil = #flared-hairpin
+  a4\> a a a\f
+  a4\p\> a a a\ff
+  a4\sfz\> a a a\!
+  \override Hairpin.stencil = #constante-hairpin
+  a4\> a a a\f
+  a4\p\> a a a\ff
+  a4\sfz\> a a a\!
+}