chiark / gitweb /
Merge branch 'arkkra' into shiny
[mup] / mup / docs / uguide / mantup.html
CommitLineData
69695f33
MW
1<HTML>
2<HEAD><TITLE>
3Manually placed tuplet numbers
4</TITLE></HEAD>
5<BODY>
6<P>
7&nbsp;&nbsp;&nbsp;<A HREF="sharehd.html">&lt;-- previous page</A>
8
9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="index.html">Table of Contents</A>&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="manual.html">next page --&gt;</A>
10</P>
11
12<H2>
13Manually placed tuplet numbers
14</H2>
15<P>
16Generally, Mup will place
17<A HREF="tuplets.html">tuplet</A>
18numbers for you.
19However, you do need to print them yourself on
20<A HREF="ichdattr.html#crossbm">cross-staff beams.</A>
21And there may be cases where you choose
22to use 'n' to turn off Mup's automatic printing of tuplet numbers,
23in order to print them manually in a different place than Mup would.
24Mup normally uses newcentury boldital font for tuplet numbers, in 11-point
25size for regular notes and 9-point for cue notes.
26So to make your manually placed tuplet numbers
27look the same as automatic ones, you might use a
28<A HREF="macros.html">macro</A>
29something like this:
30<BR><PRE>
31define TUPNUM(NUM) &quot;\f(NX)\s(11)&quot; +`NUM` @
321: { 8c; d; e; } 3n; 2.us;
33rom above 1 dist0: 1.34 TUPNUM(3);
34bar
35</PRE><BR>
36Or another approach would be something like this:
37<BR><PRE>
38define TN(NUM,WHERE,D,N) newcentury boldital WHERE dist D: N `NUM`;@
391: { 8c; d; e; } 3n; 2.us;
40TN(3,above 1,0,1.34)
41bar
42</PRE><BR>
43</P>
44<HR><P>
45&nbsp;&nbsp;&nbsp;<A HREF="sharehd.html">&lt;-- previous page</A>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="index.html">Table of Contents</A>&nbsp;&nbsp;&nbsp;&nbsp;<A HREF="manual.html">next page --&gt;</A>
46</P>
47</BODY></HTML>