Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(94)

Delta Between Two Patch Sets: Documentation/snippets/making-glissandi-breakable.ly

Issue 6635050: Make arguments like Context.GrobName accessible as symbol lists (Closed) Base URL: http://git.savannah.gnu.org/gitweb/?p=lilypond.git/trunk/
Left Patch Set: Fix a few bugs, modify \tweak syntax, demonstrate high impact conversion Created 12 years, 5 months ago
Right Patch Set: Allow \override Accidental.color = #red (dot between grob and property) Created 12 years, 5 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
1 % DO NOT EDIT this file manually; it is automatically 1 % DO NOT EDIT this file manually; it is automatically
2 % generated from Documentation/snippets/new 2 % generated from Documentation/snippets/new
3 % Make any changes in Documentation/snippets/new/ 3 % Make any changes in Documentation/snippets/new/
4 % and then run scripts/auxiliar/makelsr.py 4 % and then run scripts/auxiliar/makelsr.py
5 % 5 %
6 % This file is in the public domain. 6 % This file is in the public domain.
7 %% Note: this file works from version 2.15.15 7 %% Note: this file works from version 2.15.15
8 \version "2.17.5" 8 \version "2.17.6"
9 9
10 \header { 10 \header {
11 lsrtags = "staff-notation, tweaks-and-overrides" 11 lsrtags = "staff-notation, tweaks-and-overrides"
12 12
13 texidoc = " 13 texidoc = "
14 Setting the @code{breakable} property to @code{#t} in combination with 14 Setting the @code{breakable} property to @code{#t} in combination with
15 @code{after-line-breaking} allows a glissando to break if it occurs 15 @code{after-line-breaking} allows a glissando to break if it occurs
16 at a line break: 16 at a line break:
17 " 17 "
18 18
19 doctitle = "Making glissandi breakable" 19 doctitle = "Making glissandi breakable"
20 } % begin verbatim 20 } % begin verbatim
21 21
22 22
23 glissandoSkipOn = { 23 glissandoSkipOn = {
24 \override NoteColumn glissando-skip = ##t 24 \override NoteColumn.glissando-skip = ##t
25 \override NoteHead transparent = ##t 25 \override NoteHead.transparent = ##t
26 \override NoteHead no-ledgers = ##t 26 \override NoteHead.no-ledgers = ##t
27 } 27 }
28 28
29 \relative c'' { 29 \relative c'' {
30 \override Glissando breakable = ##t 30 \override Glissando.breakable = ##t
31 \override Glissando after-line-breaking = ##t 31 \override Glissando.after-line-breaking = ##t
32 f1\glissando | 32 f1\glissando |
33 \break 33 \break
34 a4 r2. | 34 a4 r2. |
35 f1\glissando 35 f1\glissando
36 \once \glissandoSkipOn 36 \once \glissandoSkipOn
37 \break 37 \break
38 a2 a4 r4 | 38 a2 a4 r4 |
39 } 39 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b