Hello Knute Snortum, Thanks for your reply. I just tried \magnifyMusic but it makes both voices after \partCombine smaller, not only the selected voice. Did I make a mistake here?
\version "2.22.1" smallNote = \tweak font-size -3 \etc soprano = { f'4 g'4 a'4 b'4 c''2 } basso = { \smallNote d'4 \smallNote e' \smallNote f' \smallNote g' \smallNote a'2 } tenor = { \magnifyMusic 0.65 { d'4 e' f' g' a'2 } } \new Score { \new Staff << \partCombineUp \soprano \basso >> } % expected \new Score { \new Staff << \partCombineUp \soprano \tenor >> } % not expected Many thanks, Tu' DINH On Mon, 28 Jun 2021 at 22:31, Knute Snortum <ksnor...@gmail.com> wrote: > Have you tried \magnifyMusic? > > > https://lilypond.org/doc/v2.22/Documentation/notation/inside-the-staff#selecting-notation-font-size > > -- > Knute Snortum > > > -- > Knute Snortum > > > > On Mon, Jun 28, 2021 at 7:22 AM Dinh Hoang Tu <dhoan...@gmail.com> wrote: > > > > Hello Lilypond team and users, > > > > I tried to combine 2 voices having identical rythm: notes of 2 voices > > share same stem and same side, one note upper, other lower. > > I found \partCombine is suitable for this. > > Then I tried to make all notes of 2nd voice smaller, and found \tweak > > can be used (I did tried \once, \single, \override, \overrideProperty > > but none of them works as expected) > > But the inconvenience is to tweak on every note of the 2nd voice, like > below: > > > > \version "2.22.1" > > smallNote = \tweak font-size -3 \etc > > soprano = { f'4 g'4 a'4 b'4 c''2 } > > basso = { \smallNote d'4 \smallNote e' \smallNote f' \smallNote g' > > \smallNote a'2 } > > \new Staff << \partCombineUp \soprano \basso >> > > > > Do we have a music function for this purpose? Or could someone help me > > to create one? > > > > Any help is appreciated. > > > > Kind regards, > > Tu' DINH > > >