]> git.donarmstrong.com Git - lilypond.git/blob - input/bugs/markup-definition.ly
patch::: 1.5.7.jcn1
[lilypond.git] / input / bugs / markup-definition.ly
1 \version "1.3.148"
2 \header {
3
4 texidoc="
5 The definition of markup is incomplete.
6
7 Ideally, either the input is valid, and all information therein is
8 used, or it is invalid, and an error message is produced."
9
10 }
11
12
13 \score { \notes \relative c' {
14     f_#'(lines "one" ( "tow"))
15
16     % FIXED:three ignored
17     f_#'(lines "one" ( "two" "three" ))        
18
19     % right way of using multiple markups
20     f_#'(lines "one" ((bold italic) "towo"))
21     
22     % italic ignored.
23     % possibly explicit relaxed code for chords stuff, must check
24     f_#'(lines "one" (bold italic "towo"))
25     
26   }}