From 6b8ac4d857bdf6de37b86e4bbeb1891b223bf1da Mon Sep 17 00:00:00 2001 From: Graham Percival Date: Fri, 14 Mar 2008 17:46:08 -0700 Subject: [PATCH] Add \large and \huge for consistency (we already have \small and \tiny) --- ly/property-init.ly | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/ly/property-init.ly b/ly/property-init.ly index 11c0318b4a..b6da29332b 100644 --- a/ly/property-init.ly +++ b/ly/property-init.ly @@ -139,16 +139,25 @@ voiceNeutralStyle = { } -tiny = -\set fontSize = #-2 +tiny = { + \set fontSize = #-2 +} -small = -\set fontSize = #-1 +small = { + \set fontSize = #-1 +} normalsize = { \set fontSize = #0 } +large = { + \set fontSize = #1 +} + +huge = { + \set fontSize = #2 +} %% End the incipit and print a ``normal line start''. endincipit = \context Staff { -- 2.39.5