Deutschsprachiges LilyPond-Forum

Allgemeine Fragen und Probleme => Fragen und Probleme aller Art => Thema gestartet von: martinusbaum am Mittwoch, 25. Dezember 2019, 20:45

Titel: Größe Notenkopf auf Partiturebene ändern?
Beitrag von: martinusbaum am Mittwoch, 25. Dezember 2019, 20:45
hallo,
habe Noten in einzelnen Iclude-Dateien und will nun die Notenkopfgröße ändern (/huge, large ). Ist dies nur auf Ebene der Einzelstimme oder auch auf höherer Ebene (z.B. Partitur) "auf einen Rutsch" möglich?
danke für Hilfe
Titel: Antw:Größe Notenkopf auf Partiturebene ändern?
Beitrag von: Manuela am Donnerstag, 26. Dezember 2019, 08:07
Willst du alle Größen parallel anpassen? Dann siehe hier: Setting the staff size (http://lilypond.org/doc/v2.19/Documentation/notation/setting-the-staff-size.en.html)

Notenkopfgröße/-stil ändern: Notation Note heads (http://lilypond.org/doc/v2.19/Documentation/notation/note-heads.en.html) Internals: NoteHead (http://lilypond.org/doc/v2.19/Documentation/internals/notehead.html) Internals: font-interface (http://lilypond.org/doc/v2.19/Documentation/internals/font_002dinterface)

Auf Pariturebene könnte das dann so aussehen (Effekt absichtlich stark übertrieben)

\version "2.19.82"

\layout {
  \context {
    \Voice
    \override NoteHead.font-size = #6
  }
}

\relative c'' { c4 c c c }
Titel: Antw:Größe Notenkopf auf Partiturebene ändern?
Beitrag von: martinusbaum am Freitag, 27. Dezember 2019, 13:17
lieben Dank!
notehead-fontsize hat gefehlt....
Guten Rutsch!