Can any music notation software create different sizes of staff-text items (dynamics, expression, technique) for parts and score?
I see an obvious difference in the older scores (and parts) in these sizes.
Options? Opinions?
Differentiation of text sizes in score and parts
Differentiation of text sizes in score and parts
Freelance Composer. Self-Publisher.
Finale 27.5 • Sibelius 2024.3• MuseScore 4+ • Logic Pro X+ • Ableton Live 11+ • Digital Performer 11 /// MacOS Monterey (secondary in use systems: Fedora 35, Windows 10)
Finale 27.5 • Sibelius 2024.3• MuseScore 4+ • Logic Pro X+ • Ableton Live 11+ • Digital Performer 11 /// MacOS Monterey (secondary in use systems: Fedora 35, Windows 10)
Re: Differentiation of text sizes in score and parts
LilyPond can do that, not only for font sizes but also font shapes, names, colors, …
Edit: This shows all scores/parts in one image, you’d use \book to make several PDFs.
Code: Select all
\version "2.21.0"
violin = \relative {
c'\ff d e^"pizz." f g-\markup \italic "espress." a b c
}
viola = \relative {
\clef alto
a\mp b c d e f g a
}
fullscorelayout = \layout {
\context {
\Staff
\override DynamicText.color = #blue
}
}
partlayout = \layout {
\context {
\Staff
\override DynamicText.font-size = 3
\override TextScript.color = #red
\override TextScript.font-family = #'sans
}
}
\score {
\new StaffGroup <<
\new Staff \violin
\new Staff \viola
>>
\fullscorelayout
}
\score {
\new Staff \violin
\partlayout
}
\score {
\new Staff \viola
\partlayout
}
- Attachments
-
- document.png (23.75 KiB) Viewed 5350 times
-
- Posts: 3
- Joined: 06 Oct 2015, 08:39
Re: Differentiation of text sizes in score and parts
Sibelius and Dorico both are able to manage different text size (but not font nor style) for score and parts.
Re: Differentiation of text sizes in score and parts
MuseScore can do this too in the sense that style settings are not synchronized between score and parts after you've added the parts. The style menu has an "apply to all parts" button when inside a part, but not when changing things on the score. Something like the Lilypond mechanism would be ideal.