예제 #1
0
 def breathe(self):
     r'''Handles LilyPond ``\breathe`` command.
     '''
     return indicatortools.LilyPondLiteral(r'\breathe', 'after')
예제 #2
0
 def voiceTwo(self):
     r'''Handles LilyPond ``\voiceTwo`` command.
     '''
     return indicatortools.LilyPondLiteral(r'\voiceTwo')
예제 #3
0
 def oneVoice(self):
     r'''Handles LilyPond ``\oneVoice`` command.
     '''
     return indicatortools.LilyPondLiteral(r'\oneVoice')
예제 #4
0
 def voiceOne(self):
     r'''Handles LilyPond ``\voiceOnce`` command.
     '''
     return indicatortools.LilyPondLiteral(r'\voiceOne')
예제 #5
0
 def mark(self, label):
     r'''Handles LilyPond ``\mark`` command.
     '''
     if label is None:
         label = '\default'
     return indicatortools.LilyPondLiteral(r'\mark %s' % label)