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

Delta Between Two Patch Sets: Documentation/snippets/changing-the-staff-size.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: unquote \accidentalStyle parameters, make and use symbol-list-or-symbol?, some amendments 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:
Right: Side by side diff | Download
LEFTRIGHT
(no file at all)
1 %% DO NOT EDIT this file manually; it is automatically 1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it 2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ , 3 %% Make any changes in LSR itself, or 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 \version "2.16.0" 7 \version "2.17.6"
8 8
9 \header { 9 \header {
10 lsrtags = "paper-and-layout, staff-notation, tweaks-and-overrides" 10 lsrtags = "paper-and-layout, staff-notation, tweaks-and-overrides"
11 11
12 texidoc = " 12 texidoc = "
13 Though the simplest way to resize staves is to use 13 Though the simplest way to resize staves is to use
14 @code{#(set-global-staff-size xx)}, an individual staff's size can be 14 @code{#(set-global-staff-size xx)}, an individual staff's size can be
15 changed by scaling the properties @code{'staff-space} and 15 changed by scaling the properties @code{'staff-space} and
16 @code{fontSize}. 16 @code{fontSize}.
17 17
18 " 18 "
19 doctitle = "Changing the staff size" 19 doctitle = "Changing the staff size"
20 } % begin verbatim 20 } % begin verbatim
21 21
22 22
23 << 23 <<
24 \new Staff { 24 \new Staff {
25 \relative c'' { 25 \relative c'' {
26 \dynamicDown 26 \dynamicDown
27 c8\ff c c c c c c c 27 c8\ff c c c c c c c
28 } 28 }
29 } 29 }
30 \new Staff \with { 30 \new Staff \with {
31 fontSize = #-3 31 fontSize = #-3
32 \override StaffSymbol #'staff-space = #(magstep -3) 32 \override StaffSymbol.staff-space = #(magstep -3)
33 } { 33 } {
34 \clef bass 34 \clef bass
35 c8 c c c c\f c c c 35 c8 c c c c\f c c c
36 } 36 }
37 >> 37 >>
LEFTRIGHT

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