File: MuseScore-en.html

package info (click to toggle)
musescore 1.3%2Bdfsg1-0.1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 148,004 kB
  • ctags: 30,854
  • sloc: cpp: 372,716; xml: 148,276; ansic: 6,156; python: 2,202; perl: 710; sh: 505; makefile: 227
file content (2126 lines) | stat: -rw-r--r-- 210,693 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
  <head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>
    <script type="text/javascript" src="/sites/musescore.org/files/js/js_91ae80d06390351e9c35791d0c5591f1.js"></script>
<script type="text/javascript">
<!--//--><![CDATA[//><!--
jQuery.extend(Drupal.settings, {"basePath":"\/","googleanalytics":{"trackOutgoing":1,"trackMailto":1,"trackDownload":1,"trackDownloadExtensions":"7z|aac|avi|csv|doc|exe|flv|gif|gz|jpe?g|js|mp(3|4|e?g)|mov|pdf|phps|png|ppt|rar|sit|tar|torrent|txt|wma|wmv|xls|xml|zip|dmg|mscz|mscx|bz2"},"syntaxhighlighter":null,"musescore":{"ytlang":"en","destination":"destination=print%2Fbook%2Fexport%2Fhtml%2F51"}});
//--><!]]>
</script>
    <meta name='robots' content='noindex, nofollow' />
    <base href='http://musescore.org/en/handbook/handbook' />
    <link rel='shortcut icon' href='/sites/musescore.org/files/amadou_favicon_11.ico' type='image/x-icon' />
    <link type="text/css" rel="stylesheet" media="all" href="/sites/musescore.org/files/css/css_97bc1c895cd998afadc2e961b7dfb5ab.css" />
  </head>
  <body>
        <div class="print-logo"><img class='print-logo' src='/sites/musescore.org/files/musescore-logo.png' alt='' />
</div>
    <div class="print-slogan">Free music composition &amp; notation software</div>
    <p></p>
    <hr class="print-hr" />
    <div class="print-site_name">Retrieved from <a href="http://musescore.org/en">http://musescore.org</a> on Mon, 02/18/2013</div>
    <h1 class="print-title"></h1>
    <div class="print-submitted"></div>
    <div class="print-created"></div>
    <div class="print-content"><div id="node-51" class="section-1">
  <h1 class="book-heading">Handbook</h1>
  <p>This handbook is for MuseScore version 1.0 and above (though in large parts it applies to earlier versions too). In order to help improve or translate the handbook, leave a post in the MuseScore <a class="freelinking external" href="http://www.musescore.org/en/forum/8">Documentation</a> resp. <a class="freelinking external" href="http://www.musescore.org/en/forum/9">Translation</a> Forum and apply to become a handbook contributor/translator.</p>
  <div id="node-299" class="section-2">
  <h1 class="book-heading">Getting started</h1>
  <p>This chapter helps you install and run MuseScore for the first time. The chapter will also show you how to create a new score.</p>
  <div id="node-424" class="section-3">
  <h1 class="book-heading">Installation</h1>
  <p>MuseScore works on many different computer systems including, Windows, Mac OS, and Linux. </p>
<h3 id="windows-installation">Windows</h3>
<p>You can get the Windows installer from the <a href="http://musescore.org/en/download">Download</a> page of the MuseScore website. Click on the link to start the download. Your Internet browser will confirm that you want to download this file. Click "Save File". </p>
<p>When the download finishes double click on the file to start the installation. Windows may open a security window and ask you to confirm before running the software. Click "Run" to continue.</p>
<p><img src="/sites/musescore.org/files/install-wizard-1-winxp_0.png" alt="install-wizard-1-winxp.png" title="install-wizard-1-winxp.png" width="377" height="295" class="inline" /></p>
<p>The installer recommends that you close all other applications before continuing. After you close the other applications click "Next" to continue.</p>
<p>The setup wizard displays the terms of the free software license which you may review. Click "I Agree" to continue.</p>
<p>Next it confirms the location for installing MuseScore. If you are installing a newer version of MuseScore but still want to keep the old version on your computer then you should change the folder. Otherwise click "Next" to continue.</p>
<p>Next it confirms the name for the MuseScore folder that appears in the Windows Start menu list of programs. Click "Install" to continue.</p>
<p>Give the setup wizard a few minutes to install the necessary files and configurations. When it is done click "Finish" to exit the installer. If you wish, you may now delete the installer file you downloaded.</p>
<p><img src="/sites/musescore.org/files/install-wizard-finish-winxp_1.png" alt="install-wizard-finish-winxp.png" title="install-wizard-finish-winxp.png" width="377" height="295" class="inline" /></p>
<h4>Start MuseScore</h4>
<p>To start MuseScore choose <kbd><samp class="menu">Start</samp> → <samp class="submenu">All Programs</samp> → <samp class="submenu">MuseScore</samp> → <samp class="menuitem">MuseScore</samp></kbd>. </p>
<p>After several seconds MuseScore will open up to the demo score. Feel free to experiment with the demo score and get the feel of the program. Next you may want to <a href="http://musescore.org/en/handbook/create-new-score" title="create new score">create your own score</a>.</p>
<p><img src="/sites/musescore.org/files/screenshot-demo-score.png" alt="screenshot-demo-score.png" title="screenshot-demo-score.png" width="450" height="416" class="inline" /></p>
<h4>Advanced users: Silent or unattended install</h4>
<p>You can install MuseScore silently with the following command<br />
<code>MuseScore-X.Y.exe /S /D=C:\Program Files\MuseScore</code><br />
You can uninstall with<code><br />
cd C:\Program Files\MuseScore<br />
Uninstall.exe /S</code></p>
<h3 id="mac-installation">Mac OS X</h3>
<h4>Install</h4>
<p>You will find the Mac dmg file on the <a href="http://musescore.org/en/download">Download</a> page of the MuseScore website. Click on the link to start the download. When download is finished, the dmg file is automatically mounted on your desktop as "MuseScore-X.Y" and the installer appears.</p>
<p><img src="/sites/musescore.org/files/install_mac_0963.png" alt="install_mac.png" title="install_mac.png" width="460" height="642" class="inline" /></p>
<p>Drag the MuseScore icon and drop it to the Applications folder icon. If you are not logged in as an administrator, Mac OS X will ask for a password: click "Authenticate" and enter your password to let Mac OS X copy MuseScore into your Application folder.<br />
You can now launch MuseScore from Applications or SpotLight.</p>
<h4>Uninstall</h4>
<p>Just delete MuseScore from Applications folder.</p>
<h3 id="linux-installation">Linux</h3>
<p>Please see the <a href="http://musescore.org/en/download">Download</a> page for instructions pertaining to MuseScore on Linux. Packages are provided for Debian, Ubuntu, Fedora and PCLinuxOS. Other distributions will require you to build the application from source. For instructions specific to Fedora see <a href="print/book/export/html/51#fedora-installation">below</a>.</p>
<h4 id="fedora-installation">Fedora</h4>
<ol>
<li>Import the GPG key:<br />
<pre>su
rpm --import http://prereleases.musescore.org/linux/Fedora/RPM-GPG-KEY-Seve</pre></li>
<li>Go to the <a href="http://musescore.org/en/download">download</a> page of the MuseScore website. Click on the link for the stable Fedora download and choose the correct rpm package for your architecture</li>
<li>Depending on your architecture, use one of the two sets of commands to install MuseScore
<ul>
<li>if for arch i386<br />
<pre>su
yum localinstall musescore-X.Y-1.fc10.i386.rpm</pre></li>
<li>or if for arch x86_64<br />
<pre>su
yum localinstall musescore-X.Y-1.fc10.x86_64.rpm</pre></li>
</ul>
</li>
</ol>
<p>If you have difficulty with sound, see <a class="freelinking external" href="http://www.musescore.org/en/node/3848#comment-9634">Fedora 11 and sound</a>.</p>
  </div>
<div id="node-68" class="section-3">
  <h1 class="book-heading">Create New Score</h1>
  <p>From the main menu choose <kbd><samp class="menu">File</samp> → <samp class="menuitem">New...</samp></kbd>. This opens the new score wizard. </p>
<h3 id="newscore-titles">Title, composer and other information</h3>
<p><img src="/sites/musescore.org/files/newscore-titles_0.png" alt="New Score wizard: Title and other text" title="New Score wizard: Title and other text" width="450" height="367" class="inline" /></p>
<p>Enter the title, composer, or any other information as shown above. Windows users please be aware that currently, using characters in the Title field which are restricted by your file system such as : or / may result in you being unable to save your work due to a bug. This is fixed as of version 1.3. If you wish to use characters like this in your title, then edit your title after score creation.</p>
<p>Notice the two options at the bottom:</p>
<ul>
<li>Create new score from template</li>
<li>Create new score from scratch</li>
</ul>
<p>The first option offers a list of ready-made score templates in the next screen. The second option gives you the full choice of instruments in the next screen. Templates are discussed in more detail <a href="print/book/export/html/51#newscore-templates" title="Templates">below</a>, but for now, choose "Create new score from scratch." </p>
<p>Click "Next" to continue.</p>
<h3>Instruments and voice parts</h3>
<p><img src="/sites/musescore.org/files/newscore-instruments_0.png" alt="New Score wizard: Add instruments" title="New Score wizard: Add instruments" width="450" height="367" class="inline" /></p>
<p>The instrument window is divided into two columns. The first column lists instruments or voice parts to choose from. The second column, while initially empty, will soon contain a list of the instruments for your new score. </p>
<p>The instrument list in the first column is categorized into instrument families. Double click a category to show the full list of instruments in each family. Select an instrument and click "Add". The instrument you selected now appears in the second column. You can add more instruments or voice parts, if needed. </p>
<p>The order of the instruments in the second column determines the order they appear in the score. To change the order, click on an instrument name and use the "Up" or "Down" buttons to move it higher or lower. When you are done, click "Next".</p>
<h3>Key signature</h3>
<p>The wizard asks for a key signature. Select the key signature you need and click "Next" to continue.</p>
<h3>Time signature, pickup, and number of measures</h3>
<p><img src="/sites/musescore.org/files/newscore-measures_0.png" alt="New Score wizard: Time signature and measure options" title="New Score wizard: Time signature and measure options" width="450" height="367" class="inline" /></p>
<p>Set the time signature to the numbers you want. If your piece begins with a pickup, then mark the "Pickup measure" checkbox and adjust pickup time signature to indicate the actual duration of the first measure.</p>
<p>If you know approximately how many measures you need, you can specify that here. Otherwise, you can add, or delete measures later. </p>
<p>Click "Finish" to create your new score. </p>
<h3 id="create-new-score-adjustments-after">Adjustments to score after creation</h3>
<p>You can change any settings specified during the new score wizard, even after you start working on the score.</p>
<ul>
<li>To add or delete measures or create a pickup see <a href="http://musescore.org/en/handbook/measure-operations" title="Measure operations">Measure operations</a></li>
<li>To change any text see <a href="http://musescore.org/en/handbook/text-editing" title="Text editing">Text editing</a>. To add a missing Title (or other text item) use the menu <kbd><samp class="menu">Create</samp> → <samp class="submenu">Text</samp> → <samp class="menuitem">Title</samp></kbd> (or other text item)</li>
<li>To add, delete, or change the order of instruments use the menu <kbd><samp class="menu">Create</samp> → <samp class="menuitem">Instruments...</samp></kbd>.</li>
</ul>
<p>See also: <a href="http://musescore.org/en/handbook/key-signature" title="Key signature">Key signature</a>, <a href="http://musescore.org/en/handbook/time-signature" title="time signature">time signature</a>, <a href="http://musescore.org/en/handbook/clef" title="clef">clef</a>.</p>
<h3 id="newscore-templates">Templates</h3>
<p>The first screen of the new score wizard has an option to "Create new score from template" (see <a href="print/book/export/html/51#newscore-titles">Title and other text</a> above for details). To create a score using this method, select the template option and click "Next" to continue. </p>
<p>The next screen shows a list of templates. Select a template and click "Next". Continue and finish the new score wizard as usual. </p>
<p>The template files are normal MuseScore files stored in the template folder. You can create your own templates by saving MuseScore files to the template folder.<br />
On Windows, the template folder is usually located at C:\Program Files\MuseScore\templates.<br />
On Linux, look under /usr/share/mscore-xxx if you installed from the package manager. If you compiled mscore on Linux yourself, then look under /usr/local/share/mscore-xxx.<br />
On Mac, look under /Applications/MuseScore.app/Contents/Resources/templates</p>
<h3 id="weblinks">External links</h3>
<ul>
<li><a class="freelinking external" href="http://www.youtube.com/watch?v=0mh6m2mbVHs">Video tutorial: Score Setup</a></li>
</ul>
  </div>
</div>
<div id="node-126" class="section-2">
  <h1 class="book-heading">Basics</h1>
  <p>The "<a href="http://musescore.org/en/handbook/getting-started" title="Getting started">Getting started</a>" chapter above guides you through the <a href="http://musescore.org/en/handbook/installation" title="Installation">Installation</a> and process for <a href="http://musescore.org/en/handbook/create-new-score" title="create new score">creating a new score</a>. The "Basics" chapter gives an overview of MuseScore and describes the general methods for interacting with the score.</p>
  <div id="node-66" class="section-3">
  <h1 class="book-heading">Note entry</h1>
  <p>Adding notes and rests to a staff requires four basic steps:</p>
<ol>
<li>Select your starting position for note entry</li>
<li>Select <samp class="mode">Note Entry mode</samp></li>
<li>Select the duration of the note (or rest) you want to enter</li>
<li>Enter the pitch (or rest) using keyboard shortcut, mouse or a MIDI keyboard</li>
</ol>
<p>To add notes <B>that overlap in time, but start or end at different times,</b> see <a href="http://musescore.org/en/handbook/voices" title="Voices">Voices</a>.  For chords, continue reading here. </p>
<h3>Step 1: Starting position</h3>
<p>First, select a note, or rest on the score as your starting position for note entry. Note entry in MuseScore replaces the existing notes or rests in a measure with your new notes (i.e. overwrites rather than inserts). However, you can insert new measures at any point (see <a href="http://musescore.org/en/handbook/measure-operations" title="measure operations">measure operations</a>, "Insert"), or use <a href="http://musescore.org/en/handbook/copy-and-paste" title="copy and paste">copy and paste</a> to move a passage of notes.</p>
<h3>Step 2: Note Entry mode</h3>
<p>The "N" button on the Note Entry toolbar indicates whether you are in Note Entry mode or not. Besides clicking the button, you can also use the following keyboard shortcuts:</p>
<ul>
<li><kbd><kbd>N</kbd></kbd>: Enter <samp class="mode">Note Entry mode</samp></li>
<li><kbd><kbd>N</kbd></kbd> or <kbd><kbd>Esc</kbd></kbd>: Leave <samp class="mode">Note Entry mode</samp></li>
</ul>
<h3>Step 3: Duration of the note</h3>
<p>After entering <samp class="mode">Note Entry mode</samp>, select the duration of the note you need from the Note Entry toolbar, or use the corresponding keyboard shortcut.</p>
<p>The keyboard shortcuts for selecting the note duration are:</p>
<ul>
<li><kbd><kbd>1</kbd></kbd>: 64th note (hemidemisemiquaver)</li>
<li><kbd><kbd>2</kbd></kbd>: 32nd note (demisemiquaver)</li>
<li><kbd><kbd>3</kbd></kbd>: 16th note (semiquaver)</li>
<li><kbd><kbd>4</kbd></kbd>: Eighth note (quaver)</li>
<li><kbd><kbd>5</kbd></kbd>: Quarter note (crotchet)</li>
<li><kbd><kbd>6</kbd></kbd>: Half note (minim)</li>
<li><kbd><kbd>7</kbd></kbd>: Whole note (semibreve)</li>
<li><kbd><kbd>8</kbd></kbd>: Double whole note (breve)</li>
<li><kbd><kbd>9</kbd></kbd>: Longa</li>
<li><kbd><kbd>0</kbd></kbd>: Rest</li>
<li><kbd><kbd>.</kbd></kbd>: A period (dot) changes the selected duration into a dotted note</li>
</ul>
<h3>Step 4: Enter pitch</h3>
<p>For all instruments (except unpitched percussion), you can add note pitches using the mouse by clicking directly on the staff. (For instructions specific to percussion see <a href="http://musescore.org/en/handbook/drum-notation" title="Drum notation">Drum notation</a>). However, you may find it quicker to use a MIDI keyboard (see below), or your alphabetical keyboard. The following examples use a standard computer keyboard.</p>
<p>Enter pitches by typing the corresponding letter on your keyboard:<br />
<kbd><kbd>C</kbd></kbd> <kbd><kbd>D</kbd></kbd> <kbd><kbd>E</kbd></kbd> <kbd><kbd>F</kbd></kbd> <kbd><kbd>G</kbd></kbd> <kbd><kbd>A</kbd></kbd> <kbd><kbd>B</kbd></kbd> <kbd><kbd>C</kbd></kbd><br />
<img src="/sites/musescore.org/files/noteentry1_0.png" alt="Notes: C, D, E, F, G, A, B, C" title="Notes: C, D, E, F, G, A, B, C" width="430" height="82" class="inline" /></p>
<p><kbd><kbd>0</kbd></kbd> (Zero) creates a rest: for example <kbd><kbd>C</kbd> <kbd>D</kbd> <kbd>0</kbd> <kbd>E</kbd></kbd>. Notice that the duration you select for the notes (quarter/crotchet notes in this example) also determines the duration of the rest (quarter/crotchet rest).<br />
<img src="/sites/musescore.org/files/noteentry2_0.png" alt="C, D, rest, E" title="C, D, rest, E" width="237" height="59" class="inline" /></p>
<p>During note entry, MuseScore automatically advances in the score. If you want to add a chord note to your previous entry, hold <kbd><kbd>Shift&uArr;</kbd></kbd> and enter a note name: <kbd><kbd>C</kbd></kbd> <kbd><kbd>D</kbd></kbd> <kbd><kbd>Shift&uArr;</kbd>+<kbd>F</kbd></kbd> <kbd><kbd>Shift&uArr;</kbd>+<kbd>A</kbd> <kbd>E</kbd> <kbd>F</kbd></kbd><br />
<img src="/sites/musescore.org/files/noteentry3_0.png" alt="C, D minor triad, E, F" title="C, D minor triad, E, F" width="233" height="59" class="inline" /></p>
<p>To create chords with notes of different durations, see <a href="http://musescore.org/en/handbook/voices" title="voices">voices</a>.</p>
<p>If you want to create a dotted note, press <kbd><kbd>.</kbd></kbd>. For example <kbd><kbd>5</kbd></kbd> <kbd><kbd>.</kbd></kbd> <kbd><kbd>C</kbd></kbd> <kbd><kbd>4</kbd></kbd> <kbd><kbd>D</kbd></kbd> <kbd><kbd>E</kbd></kbd> <kbd><kbd>F</kbd></kbd> <kbd><kbd>G</kbd></kbd> <kbd><kbd>A</kbd></kbd><br />
<img src="/sites/musescore.org/files/note-entry-4.png" alt="Dotted quarter note: C, eighth notes: D, E, F, G, A" title="Dotted quarter note: C, eighth notes: D, E, F, G, A" width="244" height="59" class="inline" /></p>
<p>When you type a note on the keyboard, MuseScore chooses the octave closest to the previous note entered. To shift your note up or down by an octave, use the following keyboard shortcuts:</p>
<ul>
<li><kbd><kbd>Ctrl</kbd>+<kbd>&uarr;</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>&uarr;</kbd></kbd>):	Increase the pitch of a note by one octave.</li>
<li><kbd><kbd>Ctrl</kbd>+<kbd>&darr;</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>&darr;</kbd></kbd>):	Decrease the pitch of a note by one octave.</li>
</ul>
<p>Other useful editing keyboard shortcuts available in Note Entry Mode:</p>
<ul>
<li><kbd><kbd>&uarr;</kbd></kbd> (Up): Increase the pitch of a note by a semitone (uses sharps).</li>
<li><kbd><kbd>&darr;</kbd></kbd> (Down): Decrease the pitch of a note by a semitone (uses flats).</li>
<li><kbd><kbd>R</kbd></kbd>: Duplicate the last entered note</li>
<li><kbd><kbd>Q</kbd></kbd>: Halve the duration of the last entered note</li>
<li><kbd><kbd>W</kbd></kbd>: Double the duration of the last entered note</li>
<li><kbd><kbd>Backspace</kbd></kbd>: Undo last entered note</li>
<li><kbd><kbd>X</kbd></kbd>: Flip direction of note stem</li>
<li><kbd><kbd>Shift&uArr;</kbd>+<kbd>X</kbd></kbd>: Move note head to opposite side of stem</li>
</ul>
<h3>MIDI keyboard</h3>
<p>You can also insert pitches using a MIDI keyboard.</p>
<ol>
<li>Connect your MIDI keyboard to the computer and switch your keyboard on</li>
<li>Start MuseScore</li>
<li>Create a new score</li>
<li>Click to select the rest in measure 1 to indicate where you want note entry to begin</li>
<li>Press <kbd><kbd>N</kbd></kbd> to begin Note Entry mode</li>
<li>Select a note duration such as <kbd><kbd>5</kbd></kbd> for quarter notes (crotchets), as described above</li>
<li>Press a note on your MIDI keyboard, and notice that the pitch is added to your score</li>
</ol>
<p>Note: The MIDI keyboard enters one note or chord at a time. This mode of note entry (often called "step-time entry") is fast and reliable. Some notation software try to interpret "real-time entry", where the musician plays a passage and the software tries to create the notation. However, the results are frequently unreliable, even when played by a skilled musician using expensive software. MuseScore's focus is on more reliable forms of note entry. </p>
<p>If you have multiple MIDI devices connected to your computer, you may need to tell MuseScore which one is the MIDI keyboard. Go to <kbd><samp class="menu">Edit</samp> → <samp class="menuitem">Preferences...</samp></kbd> (Mac: <kbd><samp class="menu">MuseScore</samp> → <samp class="menuitem">Preferences...</samp></kbd>). In the preferences dialog, click on the <kbd><samp class="tab">I/O</samp></kbd> tab and select your device under the section labeled "Choose PortMidi input device".</p>
<h3>Coloring of notes out of an instrument's range</h3>
<p>Notes within the playable range of an instrument or voice part appear appear black, whilst notes extending beyond the normal range of an instrument, are marked red. For some instruments, the range depends on the skills of the musician (such as string, wind, or voice). For these instruments, notes outside the range of an early amateur appear dark yellow, and notes outside the typical range of a professional appear red.</p>
<p>The colors are informational and appear on the computer screen but do not appear on printed copies of your scores. To disable note colors, choose <kbd><samp class="menu">Edit</samp> → <samp class="menuitem">Preferences...</samp></kbd> (Mac: <kbd><samp class="menu">MuseScore</samp> → <samp class="menuitem">Preferences...</samp></kbd>), click on the <kbd><samp>Note Entry</samp></kbd> tab, and unmark "Color notes outside of usable pitch range".</p>
<h3>See also</h3>
<ul>
<li><a href="http://musescore.org/en/handbook/drum-notation" title="Drum notation">Drum notation</a></li>
<li><a href="http://musescore.org/en/handbook/voices" title="Voices">Voices</a></li>
</ul>
<h3>External links</h3>
<ul>
<li><a class="freelinking external" href="http://www.youtube.com/watch?v=uGZgeZApBgE">Video tutorial: Note entry basics</a></li>
<li><a class="freelinking external" href="http://www.youtube.com/watch?v=Rxy3IEUFxJM">Video tutorial: Note Entry with a MIDI Keyboard and Playback</a></li>
</ul>
  </div>
<div id="node-268" class="section-3">
  <h1 class="book-heading">Copy and paste</h1>
  <p>Copy and paste is useful tool for repetitious music, or for shifting a section of music by a beat or two. </p>
<h3>Copy</h3>
<ol>
<li>Click on the first note of your selection.</li>
<li><kbd><kbd>Shift&uArr;</kbd>+<kbd class="mouse">click</kbd></kbd> on the last note of your selection. A blue rectangle highlights the region you selected.</li>
<li>From the menu choose <kbd><samp class="menu">Edit</samp> → <samp class="menuitem">Copy</samp></kbd></li>
</ol>
<h3>Paste</h3>
<ol>
<li>Click on the note or measure that you want your pasted selection to begin.</li>
<li>From the menu, choose <kbd><samp class="menu">Edit</samp> → <samp class="menuitem">Paste</samp></kbd></li>
</ol>
<h3 id="weblinks">Weblinks</h3>
<ul>
<li><a class="freelinking external" href="http://www.youtube.com/watch?v=e55-YnhSk-s">Video tutorial: Lyrics, Copying &amp; Dynamics</a></li>
</ul>
  </div>
<div id="node-73" class="section-3">
  <h1 class="book-heading">Edit mode</h1>
  <p>Many elements in the score can be edited in <samp class="mode">Edit Mode</samp> :</p>
<ul>
<li><kbd><kbd class="mousebutton">Double Click</kbd></kbd>:  Starts <samp class="mode">Edit Mode</samp></li>
<li><kbd><kbd>Esc</kbd></kbd>: 	Ends <samp class="mode">Edit Mode</samp></li>
</ul>
<p>Some elements show <i>handles</i> in edit mode, which can be moved by mouse dragging or keyboard commands.</p>
<p><a href="http://musescore.org/en/handbook/slur" title="Slur">Slur</a> in <samp class="mode">Edit Mode</samp>:</p>
<p><img src="/sites/musescore.org/files/slur4_0.png" alt="Sample slur in Edit Mode" title="Sample slur in Edit Mode" width="201" height="101" class="inline" /></p>
<p>Available keyboard commands:</p>
<ul>
<li><kbd><kbd>&larr;</kbd></kbd>: Moves handle left one Space (the distance between two staff lines)</li>
<li><kbd><kbd>&rarr;</kbd></kbd>: Moves handle right one Space</li>
<li><kbd><kbd>&uarr;</kbd></kbd>: Moves handle up one Space</li>
<li><kbd><kbd>&darr;</kbd></kbd>: Moves handle down one Space</li>
<li><kbd><kbd>Ctrl</kbd>+<kbd>&larr;</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>&larr;</kbd></kbd>): Moves handle left 0.1 Space</li>
<li><kbd><kbd>Ctrl</kbd>+<kbd>&rarr;</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>&rarr;</kbd></kbd>): Moves handle right 0.1 Space</li>
<li><kbd><kbd>Ctrl</kbd>+<kbd>&uarr;</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>&uarr;</kbd></kbd>): Moves handle up 0.1 Space</li>
<li><kbd><kbd>Ctrl</kbd>+<kbd>&darr;</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>&darr;</kbd></kbd>): Moves handle down 0.1 Space</li>
<li><kbd><kbd>Alt</kbd>+<kbd>&larr;</kbd></kbd>: Moves handle left 0.01 Space</li>
<li><kbd><kbd>Alt</kbd>+<kbd>&rarr;</kbd></kbd>: Moves handle right 0.01 Space</li>
<li><kbd><kbd>Alt</kbd>+<kbd>&uarr;</kbd></kbd>: Moves handle up 0.01 Space</li>
<li><kbd><kbd>Alt</kbd>+<kbd>&darr;</kbd></kbd>: Moves handle down 0.01 Space</li>
<li><kbd><kbd>Shift&uArr;</kbd>+<kbd>&larr;</kbd></kbd>: Moves handle's tick anchor left</li>
<li><kbd><kbd>Shift&uArr;</kbd>+<kbd>&rarr;</kbd></kbd>: Moves handle's tick anchor right</li>
<li><kbd><kbd>Tab</kbd></kbd>: Goes to next handle</li>
</ul>
<p>If you need to move score elements manually, double-click it and use the directional keys.</p>
<p>See also: <a href="http://musescore.org/en/handbook/text-editing" title="Text editing">Text editing</a>, <a href="http://musescore.org/en/handbook/slur" title="Slur">Slur</a>, <a href="http://musescore.org/en/handbook/bracket" title="Bracket">Bracket</a>, <a href="http://musescore.org/en/handbook/line" title="Line">Line</a>, <a href="http://musescore.org/en/handbook/beam" title="Beam">Beam</a></p>
  </div>
<div id="node-71" class="section-3">
  <h1 class="book-heading">Measure operations</h1>
  <h3 id="append">Append</h3>
<p>To add a measure to the end of the piece, press <kbd><kbd>Ctrl</kbd>+<kbd>B</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>B</kbd></kbd>), or from the menu choose <kbd><samp class="menu">Create</samp> → <samp class="submenu">Measures</samp> → <samp class="menuitem">Append Measure</samp></kbd>. To add multiple measures, press <kbd><kbd>Ctrl</kbd>+<kbd>Shift&uArr;</kbd>+<kbd>B</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>Shift&uArr;</kbd>+<kbd>B</kbd></kbd>) or use the menu <kbd><samp class="menu">Create</samp> → <samp class="submenu">Measures</samp> → <samp class="menuitem">Append Measures...</samp></kbd>.</p>
<h3 id="insert">Insert</h3>
<p>Select a measure, then press <kbd><kbd>Ins</kbd></kbd> or use the menu <kbd><samp class="menu">Create</samp> → <samp class="submenu">Measures</samp> → <samp class="menuitem">Insert Measure</samp></kbd> to insert a new empty measure before the selected one. To insert multiple measures, press <kbd><kbd>Ctrl</kbd>+<kbd>Ins</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>Ins</kbd></kbd>) or use the menu <kbd><samp class="menu">Create</samp> → <samp class="submenu">Measures</samp> → <samp class="menuitem">Insert Measures...</samp></kbd>.</p>
<h3 id="delete">Delete</h3>
<p>Select the measure, then press <kbd><kbd>Ctrl</kbd>+<kbd>Del</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>Fn</kbd>+<kbd>Backspace</kbd></kbd>).</p>
<h3 id="properties">Properties</h3>
<p>To edit the properties of a measure, right-click on an empty part of the measure and select <kbd><samp class="menuitem">Measure Properties...</samp></kbd>.</p>
<p><img src="/sites/musescore.org/files/measure-properties.png" alt="Measure properties dialog" title="Measure properties dialog" width="449" height="347" class="inline" /></p>
<h4 id="staves">Staves</h4>
<p>The <em>Visible</em> property allows you to show or hide the notes and staff lines for the current measure. The <em>Stemless</em> property allows you to show or hide all note stems for the current measure. Notes that normally have a stem such as half notes (minums) and quarter notes (crotchets) only show the note head when marked as stemless. </p>
<h4 id="duration">Duration</h4>
<p>The <em>Nominal</em> duration is the time signature that is displayed on the score. You can change the <em>Actual</em> duration of a measure to anything regardless of the time signature displayed on the score. Normally, the nominal and actual duration of a measure is identical. However, a measure (e.g. pickup, anacrusis) can have an actual duration that is shorter.</p>
<p>In the figure below, the quarter note (crotchet) pickup has a nominal measure duration of 4/4, but an actual duration of 1/4. The measures in the middle have both nominal and actual durations of 4/4. The complimentary measure with only a dotted half note (dotted minim) at the end has an actual duration of 3/4.</p>
<p><img src="/sites/musescore.org/files/incomplete-measures.png" alt="incomplete measures" title="incomplete measures" width="369" height="52" class="inline" /></p>
<h4 id="irregular">Irregular</h4>
<p>An "irregular" measure is not counted in the measure numbering. Normally a pickup measure is marked as "irregular".</p>
<h4 id="add-to-measure-number">Add to measure number</h4>
<p>You can also use the "add to measure no." option to influence the measure numbering. You can enter positive or negative numbers here. Please note that this affects subsequent measures. A value of "-1" has the same effect as marking a measure irregular.</p>
<h4 id="layout-stretch">Layout stretch</h4>
<p>You can increase, or decrease horizontal space between notes with this option.</p>
<h4 id="repeat-count">Repeat count</h4>
<p>If the measure is the end of a <a href="http://musescore.org/en/handbook/repeat" title="repeat">repeat</a>, you can define how often it is played.</p>
<h4 id="break-multi-measure-rests">Break multi-measure rests</h4>
<p>This property separates a <a href="http://musescore.org/en/handbook/measure-rests" title="Measure rests">multi-measure rest</a> at the current measure. This option should be checked <em>before</em> you turn on the "Create multi-measure rests" option in <kbd><samp class="menu">Style</samp> → <samp class="menuitem">Edit General Style</samp></kbd>.</p>
<p>Multi-measures are automatically broken at important breaks, such as rehearsal marks, time changes, double bar lines, etc.</p>
<h4 id="numbering">Numbering</h4>
<p>MuseScore automatically numbers the first measure of each system, but more numbering options are possible. From the main menu, choose <kbd><samp class="menu">Style</samp> → <samp class="submenu">Edit Style</samp></kbd>. In the left pane, choose <b>"Numbers"</b>. In the bottom half of the right pane is the <b>"Measure Numbers"</b> ("Bar Numbers") section. </p>
<p>Mark the checkbox next to the "Measure Numbers" ("Bar Numbers") to turn on automatic measure numbers.<br />
Mark "show first" if you want the first measure numbered.<br />
Mark "all staffs" if you want numbers on all staffs. Otherwise, only the top staff of each system shows measure numbers.<br />
Choose to show numbers on "every system" which numbers the first measure of each line, or show numbers by "interval" and specify the size of the interval. For example, an interval of 1 numbers every measure; an interval of 5 numbers every fifth measure.</p>
  </div>
<div id="node-82" class="section-3">
  <h1 class="book-heading">Palette</h1>
  <p>You can show, or hide the palette using the menu <kbd><samp class="menu">Display</samp> → <samp class="menuitem">Palette</samp></kbd> (or use the shortcut <kbd><kbd>F9</kbd></kbd>).</p>
<p>You can drag-and-drop palette symbols onto score elements.</p>
<p>Double clicking a palette symbol is equivalent to drag-and-dropping it to each of the selected elements on the score.</p>
<p>For example, you can quickly add tenuto marks to a group of notes:</p>
<ol>
<li>Select notes</li>
<li>In the Articulations/Ornaments palette, double-click on the tenuto symbol</li>
</ol>
  </div>
<div id="node-93" class="section-3">
  <h1 class="book-heading">Undo and redo</h1>
  <p>MuseScore has unlimited undo/redo functions.</p>
<p>The standard shortcuts are:</p>
<ul>
<li>Undo <kbd><kbd>Ctrl</kbd>+<kbd>Z</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>Z</kbd></kbd>)</li>
<li>Redo <kbd><kbd>Ctrl</kbd>+<kbd>Shift&uArr;</kbd>+<kbd>Z</kbd></kbd> or <kbd><kbd>Ctrl</kbd>+<kbd>Y</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>Shift&uArr;</kbd>+<kbd>Z</kbd></kbd>)</li>
</ul>
<p>Or use the toolbar buttons:</p>
<p><img src="/sites/musescore.org/files/undoredo.png" alt="Undo/Redo buttons" title="Undo/Redo buttons" width="73" height="35" class="inline" /></p>
  </div>
<div id="node-456" class="section-3">
  <h1 class="book-heading">File format</h1>
  <p>MuseScore supports a wide variety of file formats, which allows you to share and publish scores in the format that best meets your needs. You can import files via <kbd><samp class="menu">File</samp> → <samp class="menuitem">Open...</samp></kbd> and export via <kbd><samp class="menu">File</samp> → <samp class="menuitem">Save As...</samp></kbd>. In addition to the formats detailed below, you can save and share your scores on the web at <a href="http://musescore.com?utm_source=handbook">MuseScore.com</a> <kbd><samp class="menu">File</samp> → <samp class="menuitem">Save Online...</samp></kbd>. See <a href="http://musescore.org/en/handbook/share-scores-online" title="Share scores online">Share scores online</a>.</p>
<h3>MuseScore native format</h3>
<dl>
<dt>Compressed MuseScore format (<code>*.mscz</code>)</dt>
<dd>MSCZ is the standard <i>MuseScore</i> file format and recommended for most uses. A score saved in this format takes up very little disk space, but preserves all the necessary information. The format is a ZIP-compressed version of <code>.mscx</code> files and includes images.</dd>
<dt class="latest">MuseScore format (<code>*.mscx</code>)</dt>
<dd class="latest">MSCX is the uncompressed version of the <i>MuseScore</i> file format. A score saved in this format will not lose any information, except images. It is recommended if you need to manually edit the file format using a text editor. Previous versions of MuseScore used the MSC file extension. However, MSC conflicts with a file extension used by Microsoft Windows and is blocked by some email providers. The new MSCX file extension supersedes the old MSC file extension, due to the problems outlined above.</dd>
</dl>
<p><strong>Note about fonts</strong>: MuseScore does not embed fonts in the file. If you want to share a MuseScore file with other parties, choose a font for your text that the other parties have installed. When a computer does not have the fonts specified in the file, MuseScore uses a fallback font instead, which will of course, appear different.</p>
<h3>MuseScore backup files</h3>
<dl>
<dt>MuseScore Backup File (<code>.*.mscz,</code> <i>or</i> <code>.*.mscx,</code>)</dt>
<dd>Backup files are created automatically and saved in the same folder as your normal MuseScore file. The backup file adds a period to the beginning of the file name (.) and a comma (,) to the end (for example, if your normal file is called "<code>untitled.mscz</code>", then the backup copy is called "<code>.untitled.mscz,</code>"). The backup copy contains the previously saved version of the MuseScore file and can be important if your normal copy becomes corrupted, or you need to look at an older version of your score. To open a MuseScore backup file, you need to rename the file by removing the period and comma. Since it is stored in the same folder as your normal MuseScore file, you also need to give it a unique name (for example, you might change the file name "<code>.untitled.mscz,</code>" to "<code>untitled-backup1.mscz</code>"). </p>
<p>If using Linux, you will need to change your view settings to "show hidden files" in order to see the MuseScore backup files.</dd>
</dl>
<h3>View and print (Export only)</h3>
<dl>
<dt>PDF (<code>*.pdf</code>)</dt>
<dd>Portable Document Format (PDF) is ideal for sharing your sheet music with others who do not need to edit the music. Most computer users already have a PDF viewer on their computer, so they will not need to install any extra software to see your score.</dd>
<dt>PostScript (<code>*.ps</code>)</dt>
<dd>PostScript (PS) is popular as a page description language used in professional printing.</dd>
<dt>PNG (<code>*.png</code>)</dt>
<dd>Portable Network Graphics (PNG) is a bitmap image format widely supported by software on Windows, Mac OS, and Linux. The image format is particularly popular on the web. Multi-page scores export a PNG file for every page. MuseScore creates images as they would appear on the printed page. If you want to create images that show screen-only items, such as frame boxes, invisible notes, and out-of-range note colors, then go to <kbd><samp class="menu">Edit</samp> → <samp class="menuitem">Preferences...</samp></kbd> (Mac: <kbd><samp class="menu">MuseScore</samp> → <samp class="menuitem">Preferences...</samp></kbd>) click on the Export tab and mark "Screenshot function" check box.</dd>
<dt>SVG (<code>*.svg</code>)</dt>
<dd>Scalable Vector Graphics (SVG) can be opened by most web browsers (except Internet Explorer before version 9) and most vector graphics software. However, most SVG software don't support embedded fonts, so the appropriate MuseScore fonts must be installed to view these files correctly.</dd>
</dl>
<h3>Listen (Export only)</h3>
<dl>
<dt class="latest">WAV Audio (<code>*.wav</code>)</dt>
<dd class="latest">WAV (Waveform Audio Format) is an uncompressed sound format developed by Microsoft and IBM, but widely supported by software for Windows, Mac OS, and Linux. This is an ideal format for creating CDs, since no sound quality is lost in the process of saving the file. However, the large file sizes make it difficult to share via email, or the web.</dd>
<dt class="latest">FLAC Audio (<code>*.flac</code>)</dt>
<dd class="latest">Free Lossless Audio Codec (FLAC) is compressed audio format. FLAC files are approximately half the size of uncompressed audio and just as good quality. Windows and Mac OS do not have built-in support for FLAC, but software such as <a href="http://www.videolan.org/vlc/">VLC media player</a> can play FLAC files on any operating system.</dd>
<dt class="latest">Ogg Vorbis (<code>*.ogg</code>)</dt>
<dd class="latest">Ogg Vorbis is intended as a patent-free replacement for the popular MP3 audio format. Like MP3, Ogg Vorbis files are relatively small (often a tenth of uncompressed audio), but some sound quality is lost. Windows and Mac OS do not have built-in support for Ogg Vorbis. However, software such as <a href="http://www.videolan.org/vlc/">VLC media player</a> and Firefox can play Ogg files on any operating system.</dd>
<dt>MP3 (<code>*.mp3</code>) (2.0+)</dt>
<dd>MP3 files are relatively small (often a tenth of uncompressed audio), but some sound quality is lost. To be able to create MP3 files, an additional DLL, lame_enc.dll, needs to be installed and MuseScore needs to get told about its location.</dd>
</dl>
<h3>Share with other music software</h3>
<dl>
<dt>MusicXML (<code>*.xml</code>)</dt>
<dd><a class="freelinking external" href="http://www.makemusic.com/musicxml">MusicXML</a> is the universal standard for sheet music and can be used by most of the currently available scorewriters including Sibelius, Finale, and more than 100 others. It is the recommended format for sharing your sheet music between different scorewriters.</dd>
<dt>Compressed MusicXML (<code>*.mxl</code>)</dt>
<dd>Compressed MusicXML creates smaller files than regular MusicXML. Compressed MusicXML is a newer standard and not as widely supported by other scorewriters at this time.</dd>
<dt>MIDI (<code>*.mid</code>, <code>*.midi</code>, <code>*.kar</code>)</dt>
<dd>Musical Instrument Digital Interface (MIDI) is a format widely supported by sequencers and music notation software. However, MIDI files are designed for playback, and not score layout. Therefore, they do not contain information about formatting, pitch spelling, voicing, ornaments, articulations, repeats, or key signatures, among other things. To share files between different music notation software, use MusicXML. If you are only interested in playback, use MIDI.</dd>
<dt>LilyPond (<code>*.ly</code>) (Export only)</dt>
<dd>LY files can be opened by <a class="freelinking external" href="http://lilypond.org">LilyPond</a>, a free scorewriter. However, LilyPond export is currently incomplete and experimental.</dd>
<dt>MuseData (<code>*.md</code>) (Import only)</dt>
<dd>MuseData is a format developed by Walter B. Hewlett beginning in 1983 as an early means of sharing music notation between software. It has since been eclipsed by MusicXML, but several thousand scores in this format are still available on the web.</dd>
<dt>Capella (<code>*.cap</code>) (Import only)</dt>
<dd>CAP files are created by the scorewriter, "Capella". MuseScore imports these files fairly accurately.</dd>
<dt class="latest">Bagpipe Music Writer (<code>*.bww</code>) (Import only)</dt>
<dd>BWW files are created by the niche scorewriter, "Bagpipe Music Writer".</dd>
<dt>BB (<code>*.mgu</code>, <code>*.sgu</code>) (Import only)</dt>
<dd>BB files are created by the music arranging software, "Band-in-a-Box". MuseScore includes experimental support for BB import.</dd>
<dt>Overture (<code>*.ove</code>) (Import only)</dt>
<dd>OVE files are created by the scorewriter, "Overture". This format is mainly popular in Chinese-language environments, such as Mainland China, Hong Kong, Taiwan. This is experimental.</dd>
</dl>
  </div>
<div id="node-8780" class="section-3">
  <h1 class="book-heading">Share scores online</h1>
  <p>Go to <a href="http://musescore.com/sheetmusic" title="http://musescore.com/sheetmusic">http://musescore.com/sheetmusic</a> to view other scores from MuseScore.</p>
<p>You can save and share your scores online at MuseScore.com. You can choose to save a score privately for personal access from any computer, or choose to share the score publicly for friends and band members to view, or download. MuseScore.com lets you view and playback scores in your web browser, and even lets you synchronize your score with a YouTube video. For use outside of a web browser, you can download the score in a variety of formats (including PDF, MIDI, MP3, MusicXML, and the original MuseScore file).</p>
<h3>Create an account</h3>
<ol>
<li>Visit <a href="http://musescore.com/?utm_source=handbook">MuseScore.com</a> and click on <a href="http://musescore.com/user/register">Create new account</a></li>
<li>Pick a username and enter a valid email and press "Create New Account" </li>
<li>Wait a few minutes for an email afrom MuseScore.com support. If no email arrived, check your spam folder</li>
<li>Click the link in the email and visit your <a href="http://musescore.com/user?utm_source=handbook">user profile</a> to change your password</li>
</ol>
<h3 id="direct">Share a score directly from MuseScore</h3>
<p>You can directly save a score online from <kbd><samp class="menu">File</samp> → <samp class="menuitem">Save Online...</samp></kbd>. If it's the first time you are using this feature, you'll have to authenticate.</p>
<h4>First time authentication</h4>
<ol>
<li>Go to <kbd><samp class="menu">File</samp> → <samp class="menuitem">Save Online...</samp></kbd></li>
<li>MuseScore asks you to click OK to open your browser and gives permission to MuseScore on MuseScore.com.<br />
<img src="/sites/musescore.org/files/needpermission.png" alt="MuseScore needs your permission" title="MuseScore needs your permission" width="307" height="200" class="inline" /></li>
<li>Click OK and your browser opens on MuseScore.com. If you are not logged in, enter your username and password and </li>
<li>Click "Allow Access"</li>
<li>Go back to MuseScore, and press "OK". If your browser doesn't open, you can copy/paste the URL into the address bar of your browser.<br />
<img src="/sites/musescore.org/files/ready.png" alt="Press OK once access is allowed" title="Press OK once access is allowed" width="383" height="229" class="inline" /></li>
<li>MuseScore is now linked to your account on <a href="http://musescore.com/?utm_source=handbook">MuseScore.com</a></li>
</ol>
<h4>Save online</h4>
<p>After your first authentication, or when you go to <kbd><samp class="menu">File</samp> → <samp class="menuitem">Save Online...</samp></kbd>, MuseScore asks you some information about your scores<br />
<img src="/sites/musescore.org/files/ScoreInformation_0.png" alt="score information" title="score information" width="584" height="401" class="inline" /></p>
<ol>
<li>The <strong>title</strong> is the title of the score. You can change it</li>
<li>The <strong>description</strong> will end up next to your scores.</li>
<li>You can choose to make your score <strong>public</strong> and everybody on MuseScore.com will see it or <strong>private</strong> and only you will be able to see the score.</li>
<li>Choose a <strong>license</strong>. By using a <a href="http://creativecommons.org">Creative Commons licence</a>, you allow people to use your scores under certain restrictions.</li>
<li>You can add <b>tags</b> to help finding your scores on MuseScore.com. Don't forget to use a comma to separate the tags.</li>
</ol>
<h3>Upload a score on MuseScore.com</h3>
<p>You can also upload a score directly on MuseScore.com.</p>
<ol>
<li>Click the <a href="http://musescore.com/upload?utm_source=handbook">Upload link</a> on MuseScore.com</li>
<li>You have the same options as with the Save Online menu</li>
<li>You have also access to more information such as <strong>Genre</strong></li>
</ol>
<p>Note: In case you hit the 5 score upload limit, you can still upload <a href="print/book/export/html/51#direct">score directly from MuseScore</a>,  but only the last 5 are visible. If you wish to continue uploading via the web, upgrade to a <a href="http://musescore.com/upgrade">Pro Account</a> first.</p>
<h3>Edit a score on MuseScore.com</h3>
<p>If you want to make changes to one of your scores on MuseScore.com, edit the MuseScore file on your own computer and follow the steps below.</p>
<ol>
<li>Go to the score page on MuseScore.com</li>
<li>Click the edit link</li>
<li>In the form, you can change the score file, you can also change all the score info, such as title, description, etc...</li>
</ol>
  </div>
</div>
<div id="node-304" class="section-2">
  <h1 class="book-heading">Notation</h1>
  <p>In the previous "<a href="http://musescore.org/en/handbook/basics" title="Basics">Basics</a>" chapter you learn how to <a href="http://musescore.org/en/handbook/note-entry" title="note entry">enter notes</a> and interact with the <a href="http://musescore.org/en/handbook/palette" title="palette">palette</a>. The "Notation" chapter describes the different types of notation in more detail including more advanced music notation.</p>
  <div id="node-53" class="section-3">
  <h1 class="book-heading">Accidental</h1>
  <p><strong>Accidentals</strong> can be set, or changed by dragging an accidental symbol from the accidental palette to a note in the score.<br />
<img src="/sites/musescore.org/files/accidental-palette.png" alt="Accidentals palette" title="Accidentals palette" width="168" height="203" class="inline" /></p>
<p>If you only want to change the pitch of a note, you can also select the note and press:</p>
<ul>
<li><kbd><kbd>&uarr;</kbd></kbd>: Increase the pitch of a note by one semitone (favors sharps).</li>
<li><kbd><kbd>&darr;</kbd></kbd>: Decrease the pitch of a note by one semitone (favors flats).</li>
<li><kbd><kbd>Ctrl</kbd>+<kbd>&uarr;</kbd></kbd>: Increase the pitch of a note by one octave.</li>
<li><kbd><kbd>Ctrl</kbd>+<kbd>&darr;</kbd></kbd>: Decrease the pitch of a note by one octave.</li>
</ul>
<p>You can change an existing accidental into a cautionary accidental (enclosed in parentheses), drag the parentheses from the accidental palette onto to the existing accidental (not the note head). To remove parentheses, select the accidental and press <kbd><kbd>Del</kbd></kbd>.</p>
<p>If you later change the pitch with cursor keys, manual settings to the accidental are removed.</p>
<p>The menu function <kbd><samp class="menu">Notes</samp> → <samp class="menuitem">Pitch spell</samp></kbd> tries to guess the right accidentals for the whole score.</p>
<h3>Weblinks</h3>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Accidental_(music)">Accidetal</a> on <a href="http://en.wikipedia.org">en.wikipedia.org</a></li>
</ul>
  </div>
<div id="node-59" class="section-3">
  <h1 class="book-heading">Arpeggio &amp; Glissando</h1>
  <p><strong>Arpeggios</strong> are set by dragging an arpeggio symbol from the Arpeggio &amp; Glissando palette to a note of a chord.</p>
<p><img src="/sites/musescore.org/files/arpeggio-palette_0.png" alt="Arpeggio palette" title="Arpeggio palette" width="167" height="82" class="inline" /></p>
<p>To change the length of the arpeggio, double-click the arpeggio and drag the handle up or down.</p>
<p><img src="/sites/musescore.org/files/arpeggio-multi-staff_0.png" alt="Arpeggio spanning two staves" title="Arpeggio spanning two staves" width="136" height="110" class="inline" /></p>
<p><strong>Glissandi</strong> are set by dragging a glissando symbol from the Arpeggio &amp; Glissando palette to the first of two consecutive notes on the same staff.</p>
<p><img src="/sites/musescore.org/files/glissando_uses.png" alt="MuseScore can create glissandos with a straight or zig-zag line" title="MuseScore can create glissandos with a straight or zig-zag line" width="534" height="87" class="inline" /></p>
<p>Edit or delete the text of a glissando by right-clicking it and select "Glissando Properties" in menu. If there isn't enough room between two notes, MuseScore will not display the text.</p>
<h3>Weblinks</h3>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Arpeggio">Arpeggio</a> on <a href="http://en.wikipedia.org">en.wikipedia.org</a></li>
<li><a href="http://en.wikipedia.org/wiki/Glissando">Glissando</a> on <a href="http://en.wikipedia.org">en.wikipedia.org</a></li>
</ul>
  </div>
<div id="node-60" class="section-3">
  <h1 class="book-heading">Bar line</h1>
  <h3>Change bar line type</h3>
<p>Bar lines are changed by dragging a bar line symbol from the bar line palette to a bar line in the score. </p>
<p><img src="/sites/musescore.org/files/barlinepalette_0.png" alt="Bar Line palette" title="Bar Line palette" width="168" height="125" class="inline" /></p>
<p>To hide a bar line entirely, right-click on the line and choose <kbd><samp class="menuitem">Set Invisible</samp></kbd>.</p>
<h3>Create grand staff</h3>
<p>To extend bar lines over multiple staves, double-click on a bar line to edit it (see <samp class="mode"><a href="http://musescore.org/en/handbook/edit-mode" title="Edit mode">Edit mode</a></samp>).</p>
<p><img src="/sites/musescore.org/files/grandstaff0_0.png" alt="Bar Line edit mode" title="Bar Line edit mode" width="258" height="127" class="inline" /></p>
<p>Click and drag the blue square down to the next staff. </p>
<p>Staff bar lines updates appear when you leave <samp class="mode">edit mode</samp>. 	</p>
<p><img src="/sites/musescore.org/files/grandstaff1_0.png" alt="Grand staff" title="Grand staff" width="258" height="127" class="inline" /></p>
<p>See also: <a href="http://musescore.org/en/handbook/measure-operations" title="Measure operations">Measure operations</a></p>
  </div>
<div id="node-61" class="section-3">
  <h1 class="book-heading">Beam</h1>
  <p><strong>Beams</strong> are set automatically, but the automatic setting can be overridden manually. Drag a beam symbol from the beam palette to a note in order to change its beam behavior. </p>
<p><img src="/sites/musescore.org/files/beam-palette_0.png" alt="Beam Palette" title="Beam Palette" width="135" height="60" class="inline" /> </p>
<p>You can also first select a note, and then double-click the appropriate symbol in the beam palette. </p>
<p><img src="/sites/musescore.org/files/beambutton1_0.png" alt="Start beam button" title="Start beam button" width="29" height="28" class="inline" /> Start a beam at this note. </p>
<p><img src="/sites/musescore.org/files/beambutton2_0.png" alt="Middle of beam button" title="Middle of beam button" width="29" height="28" class="inline" /> Do not end a beam at this note. </p>
<p><img src="/sites/musescore.org/files/beambutton3_0.png" alt="No beam button" title="No beam button" width="29" height="28" class="inline" /> Do not beam this note. </p>
<p>&nbsp;'A'&nbsp;&nbsp; = (back to) Automatic mode: the mode MuseScore chooses on note entry, dependent on current time signature. </p>
<p>To change the beam angle or the distance of the beam to the notes (i.e. the length of the stems), double click on the beam to put it into <samp class="mode"><a href="http://musescore.org/en/handbook/edit-mode" title="Edit mode">Edit mode</a></samp>, with the right end handle being selected. Up/down arrow will now change the angle. Selecting left end handle and using the up/down arrow keys will lengthen/shorten the stems. Hit <kbd><kbd>Esc</kbd></kbd> to get out of edit mode, once done with the changes. </p>
<p>To move a beam from above to below the notes, or vice-versa, flip the direction of the stems by using the <i>button</i> along the second top row (before the voice indicators) that shows a note with stems attached above and below or use the <kbd><kbd>X</kbd></kbd> key. </p>
<h3>See also</h3>
<ul>
<li><a href="http://musescore.org/en/handbook/cross-staff-beaming" title="Cross staff beaming">Cross staff beaming</a></li>
<li><a href="http://musescore.org/en/handbook/edit-mode" title="Edit Mode">Edit Mode</a></li>
<li><a href="http://musescore.org/en/handbook/note-entry" title="Note Entry">Note Entry</a></li>
</ul>
  </div>
<div id="node-62" class="section-3">
  <h1 class="book-heading">Bracket</h1>
  <h3>Delete</h3>
<p>Select the bracket and press  <kbd><kbd>Del</kbd></kbd></p>
<h3>Add</h3>
<p>Drag a bracket symbol from the bracket palette to an empty space in the first measure of a system.<br />
<img src="/sites/musescore.org/files/brackets-palette.png" alt="Brackets Palette" title="Brackets Palette" width="135" height="84" class="inline" /></p>
<h3>Change</h3>
<p>Drag a bracket symbol from the bracket palette to an bracket in the score.</p>
<h3>Edit</h3>
<p>Double-click on a bracket to enter <samp class="mode"><a href="http://musescore.org/en/handbook/edit-mode" title="edit mode">edit mode</a></samp>. In <samp class="mode">edit mode</samp>, you can drag the height of a bracket to span arbitrary staves of a system.</p>
<h3>Horizontal offset</h3>
<p>If you need to move a bracket further left or right, then double-click the bracket to enter edit mode, and press <kbd><kbd>Shift&uArr;</kbd>+<kbd>&larr;</kbd></kbd> or <kbd><kbd>Shift&uArr;</kbd>+<kbd>&rarr;</kbd></kbd>.</p>
  </div>
<div id="node-64" class="section-3">
  <h1 class="book-heading">Breath and pause</h1>
  <p>To place a <strong>breath</strong> symbol, drag it from the breath palette to a note in the score. The breath symbol is placed after the note.</p>
<p><img src="/sites/musescore.org/files/breath-pause-palette.png" alt="Breath &amp;amp; Pause Palette" title="Breath &amp;amp; Pause Palette" width="138" height="103" class="inline" /></p>
<p>Breath symbol in score: </p>
<p><img src="/sites/musescore.org/files/breath_0.png" alt="Breath" title="Breath" width="284" height="181" class="inline" /></p>
<p><strong>Caesura</strong> (informally called <strong>tram lines</strong> or <strong>railroad tracks</strong>) work the same way.</p>
  </div>
<div id="node-67" class="section-3">
  <h1 class="book-heading">Clef</h1>
  <p><strong>Clefs</strong> are created, or changed by dragging a clef symbol from the clef palette to a measure or another clef. Use <kbd><kbd>F9</kbd></kbd> (Mac: <kbd><kbd>⌥</kbd>+<kbd>⌘</kbd>+<kbd>K</kbd></kbd>) to show or hide the <a href="http://musescore.org/en/handbook/palette" title="palette">palette</a> sidebar.</p>
<p><img src="/sites/musescore.org/files/clef-palette_0.png" alt="Clefs palette" title="Clefs palette" width="170" height="284" class="inline" /></p>
<h3>Add</h3>
<p>Drag a clef from the palette onto an empty part of a measure. This creates a clef at the beginning of the measure. Drag a clef to a particular note to create a mid-measure clef. If the measure is not the first measure in the staff, it is drawn smaller.</p>
<h3>Remove</h3>
<p>Select a clef and press <kbd><kbd>Del</kbd></kbd>.</p>
<p>Note: Changing a clef does not change the pitch of any note. Instead, the notes move to preserve pitch.</p>
  </div>
<div id="node-72" class="section-3">
  <h1 class="book-heading">Drum notation</h1>
  <p>Example drum notation:<br />
<img src="/sites/musescore.org/files/drum1_0.png" alt="Sample Drum Notation" title="Sample Drum Notation" width="461" height="180" class="inline" /></p>
<p>Notation for drumsets often include simultaneous upstem and downstem notes. If you are unfamiliar with editing multiple voices in a single staff, see <a href="http://musescore.org/en/handbook/voices" title="voices">voices</a> for an overview. See below for instructions specific to percussion notation.</p>
<h3>MIDI keyboard</h3>
<p>The easiest way to add drum notation to your score is via MIDI keyboard. Most MIDI keyboard have percussion markings above each key. If you press the key for high hat, then MuseScore will add the correct notation to the score. MuseScore automatically takes care of the stem direction and type of note head.</p>
<h3>Computer keyboard</h3>
<p>Only a few drum-instruments are mapped to shortcut by default. You can add more with right click on the staff  <kbd> → <samp class="menuitem">Edit drumset...</samp></kbd></p>
<ul>
<li>c for Bass-Drum</li>
<li>d for Ride</li>
</ul>
<h3>Mouse</h3>
<p>Note entry for unpitched percussion works differently than for other instruments, so here are the special steps:</p>
<ol>
<li>Select a note or rest in the percussion staff. Please note that the Drum palette will remain empty until you have completed this step</li>
<li>Press "N" to begin note entry</li>
<li>Select a note duration from the Note Input toolbar</li>
<li>Select a type of note (such as bass drum or snare) from the drum <a href="http://musescore.org/en/handbook/palette" title="palette">palette</a></li>
<li>Click on the percussion staff to add the note to the score</li>
</ol>
<h3>External links</h3>
<ul>
<li><a class="freelinking external" href="http://www.youtube.com/watch?v=KFj7v5S4Akw">Drum Parts</a> [video]</li>
<li><a class="freelinking external" href="http://www.youtube.com/watch?v=PvVBHW-O5Ww">Editing the Drum Palette in MuseScore 1.1</a> [video]</li>
</ul>
  </div>
<div id="node-52" class="section-3">
  <h1 class="book-heading">Grace note</h1>
  <p><strong>Short grace notes</strong> (Acciaccatura) appear as small notes with a stroke through the stem. <strong>Long grace notes</strong> (Appoggiatura) have no stroke. Both are placed before the normal-sized main note. </p>
<h3>Instructions</h3>
<p>Create a grace note by dragging a grace note symbol from the Grace Notes <a href="http://musescore.org/en/handbook/palette" title="palette">palette</a> to a regular note on the score. It's also possible to create a grace note by selecting a notehead and double-clicking a grace note symbol from the Grace Notes <a href="http://musescore.org/en/handbook/palette" title="palette">palette</a>. </p>
<p>To add more than one grace note, drag successive grace notes on the notehead. </p>
<p>To add a chord of grace notes, enter the first one and select it, then use <kbd><kbd>Shift&uArr;</kbd></kbd>+ note names (C, D, E etc...) </p>
<p>If you want to change the duration of a previously created grace note, select it and choose a duration from the toolbar or enter with one of the keys <kbd><kbd>1</kbd></kbd> ... <kbd><kbd>9</kbd></kbd> (see <a href="http://musescore.org/en/handbook/note-entry" title="Note Entry">Note Entry</a>).</p>
<p><img src="/sites/musescore.org/files/grace-palette.png" alt="Grace Notes palette" title="Grace Notes palette" width="168" height="64" class="inline" /></p>
<h3>External links</h3>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Grace_note">Grace note</a>, <a href="http://en.wikipedia.org/wiki/Appoggiatura">Appoggiatura</a>, and <a href="http://en.wikipedia.org/wiki/Acciaccatura">Acciaccatura</a> at en.wikipedia.org</li>
</ul>
  </div>
<div id="node-69" class="section-3">
  <h1 class="book-heading">Hairpin</h1>
  <p><strong>Hairpins</strong> are <a href="http://musescore.org/en/handbook/line" title="line">line</a> objects. To create a hairpin, select a note to mark the start point.</p>
<ul>
<li><kbd><kbd>H</kbd></kbd>: Creates a crescendo hairpin</li>
<li><kbd><kbd>Shift&uArr;</kbd>+<kbd>H</kbd></kbd>: Creates a diminuendo hairpin (decrescendo)</li>
</ul>
<p>You can also create hairpins by dragging a hairpin symbol from the line palette to a note head.</p>
<ol>
<li><kbd><kbd>H</kbd></kbd> creates a crescendo hairpin:<br />
<img src="/sites/musescore.org/files/hairpin1_0.png" alt="One-measure crescendo" title="One-measure crescendo" width="345" height="67" class="inline" /></li>
<li><kbd><kbd class="mousebutton">Double click</kbd></kbd> switches to <samp class="mode"><a href="http://musescore.org/en/handbook/edit-mode" title="edit mode">edit mode</a></samp>:<br />
<img src="/sites/musescore.org/files/hairpin2_0.png" alt="Crescendo shows handles and anchors in edit mode" title="Crescendo shows handles and anchors in edit mode" width="345" height="67" class="inline" /></li>
<li><kbd><kbd>Shift&uArr;</kbd>+<kbd>&rarr;</kbd></kbd> moves end anchor:<br />
<img src="/sites/musescore.org/files/hairpin3_0.png" alt="Crescendo anchor extends to the next note" title="Crescendo anchor extends to the next note" width="345" height="67" class="inline" /></li>
<li><kbd><kbd>&rarr;</kbd></kbd> moves end point:<br />
<img src="/sites/musescore.org/files/hairpin4_0.png" alt="Crescendo visually extends beyond anchor point" title="Crescendo visually extends beyond anchor point" width="345" height="67" class="inline" /></li>
</ol>
  </div>
<div id="node-78" class="section-3">
  <h1 class="book-heading">Key signature</h1>
  <p><strong>Key signatures</strong> are created, or changed by dragging a key symbol from the key palette to a measure, or existing key signature.<br />
<img src="/sites/musescore.org/files/key-palette.png" alt="Keys palette" title="Keys palette" width="172" height="248" class="inline" /></p>
<p><kbd><kbd>F9</kbd></kbd> (Mac: <kbd><kbd>⌥</kbd>+<kbd>⌘</kbd>+<kbd>K</kbd></kbd>) toggles the <a href="http://musescore.org/en/handbook/palette" title="palette">palette</a> window.</p>
<h3>Change</h3>
<p>Drag a key from the palette onto a key in the score.</p>
<h3>Add</h3>
<p>Drag a key from the palette onto an empty part of a measure. This creates a key at the beginning of the measure.</p>
<h3>Remove</h3>
<p>Select a key and press <kbd><kbd>Del</kbd></kbd>.</p>
  </div>
<div id="node-79" class="section-3">
  <h1 class="book-heading">Line</h1>
  <p>The <strong>lines palette</strong> like other <a href="http://musescore.org/en/handbook/palette" title="palette">palettes</a>, works via "drag-and-drop". Use the mouse to drag the item from the palette and drop it onto the score.</p>
<p><img src="/sites/musescore.org/files/line-palette.png" alt="Lines palette" title="Lines palette" width="169" height="207" class="inline" /></p>
<h3>Change length</h3>
<p>If you change the length of a line using the mouse, the anchor positions (the notes or measures they apply to) do not change. Therefore, the following method is recommended for adjusting the start or end points of a line.</p>
<ol>
<li>If you are in <samp class="mode">note entry mode</samp> then press <kbd><kbd>N</kbd></kbd> to leave note entry</li>
<li>Double click the line that you want to change</li>
<li>Move the handles using the following shortcuts
<ul>
<li><kbd><kbd>Shift&uArr;</kbd>+<kbd>&rarr;</kbd></kbd> to move the anchor right by one note (or measure)</li>
<li><kbd><kbd>Shift&uArr;</kbd>+<kbd>&larr;</kbd></kbd> to move the anchor left by one note (or measure)</li>
</ul>
</li>
<li>If you need to change the length visually without changing the notes, or measures that the line is anchored to, then use the following shortcuts:
<ul>
<li><kbd><kbd>&rarr;</kbd></kbd> to move the handle right by one unit</li>
<li><kbd><kbd>&larr;</kbd></kbd> to move the anchor left by one unit</li>
</ul>
</li>
</ol>
<p>See also: <a href="http://musescore.org/en/handbook/hairpin" title="Hairpin">Hairpin</a>, <a href="http://musescore.org/en/handbook/volta" title="Volta">Volta (1st and 2nd endings)</a></p>
  </div>
<div id="node-81" class="section-3">
  <h1 class="book-heading">Measure rests</h1>
  <h3>Full-measure rest</h3>
<p><img src="/sites/musescore.org/files/full-measure-rest_0.png" alt="A full-measure rest looks like a whole-note (semi-breve) rest except it is centered in the middle of a measure" title="A full-measure rest looks like a whole-note (semi-breve) rest except it is centered in the middle of a measure" width="52" height="22" class="inline" /></p>
<p>When an entire measure is devoid of notes, a full-measure (full-bar) rest is used.</p>
<p>To create a one-bar rest, select a measure and press <kbd><kbd>Del</kbd></kbd>. All notes and rests on this measure are then replaced by a one-bar rest.</p>
<h3>Multi-measure rest</h3>
<p><img src="/sites/musescore.org/files/multimeasure-rests_2.png" alt="Multi-measure rests have a number above the staff indicating the duration of the rest by the number of measures" title="Multi-measure rests have a number above the staff indicating the duration of the rest by the number of measures" width="386" height="37" class="inline" /></p>
<p>Multi-measure (multi-bar) rests indicate a long duration of silence for an instrument and are frequently used in ensemble sheet music.</p>
<h4>Instructions</h4>
<ol>
<li>From the menu, choose <kbd><samp class="menu">Style</samp> → <samp class="menuitem">Edit General Style</samp></kbd></li>
<li>Click on the "Score" tab, if it is not already selected</li>
<li>Add a check mark next to "Create Multi Measure Rests"</li>
</ol>
<h4>Limitations</h4>
<p>The style option automatically creates multi-measure rests throughout the score. Therefore, it is recommended that you enter all your notes first, and then turn on multi-measure rests afterwards.</p>
  </div>
<div id="node-84" class="section-3">
  <h1 class="book-heading">Repeat</h1>
  <p>The start and end of simple repeats can be defined by setting appropriate <a href="http://musescore.org/en/handbook/bar-line" title="bar line">bar lines</a>. For instructions on first and second ending measures, see <a href="http://musescore.org/en/handbook/volta" title="volta">volta</a>.</p>
<h3>Playback</h3>
<p>To hear repeats during playback, make sure the "Play Repeats" <img src="/sites/musescore.org/files/play-repeats.png" alt="play-repeats.png" title="play-repeats.png" width="34" height="33" class="inline" /> button on the toolbar is selected. Likewise, you can turn off repeats during playback by deselecting the button.</p>
<p>In the last measure of a repeat, you can set the <a href="http://musescore.org/en/handbook/measure-operations" title="measure operations">property</a> "Repeat Count" to define the number of played repeats.</p>
<h3>Repeat Symbols and Text</h3>
<p>Text and symbols related to repeats are located in the Repeats <a href="http://musescore.org/en/handbook/palette" title="palette">palette</a>:</p>
<p><img src="/sites/musescore.org/files/repeats-palette.png" alt="Repeats palette contains the symbols for measure repeat, segno and coda. It also contains &#039;D.S.&#039;, &#039;D.C.&#039;, and Fine text." title="Repeats palette contains the symbols for measure repeat, segno and coda. It also contains &#039;D.S.&#039;, &#039;D.C.&#039;, and Fine text." width="168" height="220" class="inline" /></p>
<p>To add an object from the Repeats palette, drag it <i>onto</i> (not above) the measure where you want it to occur. The object then appears <i>above</i> that measure in your score.</p>
<h3>Jumps</h3>
<p>Jumps generally consist of three parts:</p>
<ul>
<li>Jump to <i>tag</i></li>
<li>play up to <i>tag</i></li>
<li>continue at <i>tag</i></li>
</ul>
<p>Tags are names you give to certain measure position. Two tags ("start", "end") denote the start and end of the score and don't need to get added explicitly.</p>
<p>Examples:</p>
<p>At the jump instruction <i>Da Capo</i> the playback jumps to the start and plays the entire score again (up to the implict end tag).</p>
<p>At the jump instruction <i>Da Capo al Fine</i> the playback jumps to the start and plays the score up to the tag <i>Fine</i> .</p>
<p><i>Dal Segno al Fine</i> (or <i>D.S. al Fine</i>) jumps to the <i>Segno</i> tag and then plays up to the tag <i>Fine</i></p>
<p><i>Dal Segno al Coda</i> jumps to the <i>Segno</i> tag and then plays up the first <i>Coda</i> tag. Playback then continues at the second <i>Coda</i> tag. The properties of jumps can get set via a right-click at the <i>D.S. al Coda</i> tag.</p>
<p>See also: <a href="http://musescore.org/en/handbook/volta" title="Volta">Volta</a></p>
<h3 id="weblinks">Weblinks</h3>
<ul>
<li><a class="freelinking external" href="http://www.youtube.com/watch?v=04XTa6IrzGg">Video tutorial: Codas</a></li>
</ul>
  </div>
<div id="node-85" class="section-3">
  <h1 class="book-heading">Slur</h1>
  <p>A <strong>slur</strong> is a curved line between two or more notes that indicates they are to be played without separation. If you mean to join two notes of the same pitch, see <a href="http://musescore.org/en/handbook/tie" title="Tie">Tie</a></p>
<h3>First Method</h3>
<ol>
<li>Leave <samp class="mode"><a href="http://musescore.org/en/handbook/note-entry" title="note entry">Note Entry mode</a></samp> and select the first note:<br />
 <img src="/sites/musescore.org/files/slur1_0.png" alt="First note selected" title="First note selected" width="203" height="74" class="inline" /></li>
<li><kbd><kbd>S</kbd></kbd> creates a slur:<br />
 <img src="/sites/musescore.org/files/slur2_0.png" alt="Slur to adjacent note" title="Slur to adjacent note" width="202" height="108" class="inline" /></li>
<li><kbd><kbd>Shift&uArr;</kbd>+<kbd>&rarr;</kbd></kbd> moves the slur end to the next note:<br />
 <img src="/sites/musescore.org/files/slur3_0.png" alt="Three-note slur" title="Three-note slur" width="200" height="107" class="inline" /></li>
<li><kbd><kbd>X</kbd></kbd> flips the slur direction:<br />
 <img src="/sites/musescore.org/files/slur4_1.png" alt="Slur above note stems" title="Slur above note stems" width="201" height="101" class="inline" /></li>
<li><kbd><kbd>Esc</kbd></kbd> ends <samp class="mode">Slur Edit mode</samp>:<br />
 <img src="/sites/musescore.org/files/slur5_0.png" alt="Slur no longer in edit mode" title="Slur no longer in edit mode" width="203" height="85" class="inline" /></li>
</ol>
<h3>Second Method</h3>
<ol>
<li>Leave <samp class="mode"><a href="http://musescore.org/en/handbook/note-entry" title="note entry">Note Entry mode</a></samp> and select the first note</li>
<li><kbd><kbd>Ctrl</kbd></kbd>-select (resp. <kbd><kbd>⌘</kbd></kbd>-select on a Mac) or <kbd><kbd>Shift&uArr;</kbd></kbd>-select the last note</li>
<li>hit <kbd><kbd>S</kbd></kbd></li>
</ol>
<h3>Third Method</h3>
<ol>
<li>While in <samp class="mode"><a href="http://musescore.org/en/handbook/note-entry" title="note entry">Note Entry mode</a></samp> key in the first note in the slurred section.</li>
<li>Hit <kbd><kbd>S</kbd></kbd> to begin the slurred section. </li>
<li>Key in the remaining notes in the slurred section.</li>
<li>Hit <kbd><kbd>S</kbd></kbd> to end the slurred section.</li>
</ol>
<h3>Adjustments</h3>
<p>The boxes or handles (displayed in the images for steps 2-4 above) can be adjusted with the mouse. The two outer handles adjust the start and end of the slur. The two inner handles adjust the contour of the slur.</p>
<p>A slur can span several systems and pages. The start and end of a slur is anchored to a note/chord or rest.  If the notes are repositioned due to changes in the layout, stretch or style, the slur also moves and adjusts in size. </p>
<p>This example shows a slur that spans from the bass to the treble clef. Using the mouse, select the first note of the slur, hold down the <kbd><kbd>Ctrl</kbd></kbd> key (resp. <kbd><kbd>⌘</kbd></kbd> key on a Mac) and select the last note for the slur, and press <kbd><kbd>S</kbd></kbd> to add the slur.</p>
<p><img src="/sites/musescore.org/files/slur_b2t.png" alt="Slur across clefs" title="Slur across clefs" width="355" height="198" class="inline" /></p>
<p><b>Note:</b> It is not possible to change the start and end anchor notes using the mouse.  Use <kbd><kbd>Shift&uArr;</kbd></kbd> + <kbd><kbd>&larr;</kbd></kbd> or <kbd><kbd>&rarr;</kbd></kbd> to adjust the start and end points of a slur.</p>
<h3>Dotted line</h3>
<p>Dotted slurs are sometimes used in songs where the presence of a slur varies between stanzas. Dotted slurs are also used to indicate an editor's suggestion (as opposed to the composers original markings). To change an existing slur into a dotted slur, right-click on it and choose <kbd><samp class="menuitem">Slur Properties...</samp></kbd>. From the Slur Properties dialog, you can choose whether you want a solid or a dotted slur.</p>
<p><kbd><kbd>X</kbd></kbd> flips the direction of a selected slur.</p>
<p>See also: <a href="http://musescore.org/en/handbook/tie" title="Tie">Tie</a>, <a href="http://musescore.org/en/handbook/edit-mode" title="Edit mode">Edit mode</a>, <a href="http://musescore.org/en/handbook/note-entry" title="Note Entry">Note Entry</a></p>
  </div>
<div id="node-18747" class="section-3">
  <h1 class="book-heading">Transposition</h1>
  <p><strong>Transposition</strong> is the moving of selected notes higher or lower on the staff. MuseScore supports two kinds.</p>
<ol>
<li><strong>Chromatic transposition</strong> moves one or more notes up or down in increments of semitones. This can be done through the <kbd><samp class="menu">Notes</samp> → <samp class="menuitem">Transpose...</samp></kbd> dialog of the main menu. Another way is to select the notes to be moved and to then press <kbd><kbd>&uarr;</kbd></kbd> or <kbd><kbd>&darr;</kbd></kbd>.</li>
<li>In <strong>scalar (diatonic) transposition</strong> one or more notes are moved by scale steps as determined by the key signature. To move a single note, simply drag it up or down. A selection of more than one note is dragged using the left mouse button while pressing <kbd><kbd>Ctrl</kbd></kbd> with the pointer on one of the selected notes.</li>
</ol>
  </div>
<div id="node-89" class="section-3">
  <h1 class="book-heading">Tie</h1>
  <p>A <strong>tie</strong> is a curved line between two notes of the same pitch. If you want a curved line that spans multiple pitches, see <a href="http://musescore.org/en/handbook/slur" title="Slur">Slur</a>.</p>
<h3>First method</h3>
<p>Select first note:<br />
<img src="/sites/musescore.org/files/tie1_0.png" alt="First note selected" title="First note selected" width="136" height="78" class="inline" /></p>
<p><kbd><kbd>+</kbd></kbd> creates a tie:<br />
<img src="/sites/musescore.org/files/tie2_0.png" alt="Slur to adjacent note" title="Slur to adjacent note" width="136" height="78" class="inline" /></p>
<p>(<kbd><kbd>+</kbd></kbd> key or the tie button located on the top to the right of the notes)</p>
<h3>Second method</h3>
<p>To create ties during <samp class="mode"><a href="http://musescore.org/en/handbook/note-entry" title="note entry">note entry</a></samp>, press <kbd><kbd>+</kbd></kbd> after the first note of the tie.</p>
<h3>Tied chords</h3>
<p>To add ties between two chords, select the stem of the first chord, or <kbd><kbd>Shift&uArr;</kbd></kbd> + click on the first chord and press <kbd><kbd>+</kbd></kbd>. <samp class="mode"><a href="http://musescore.org/en/handbook/note-entry" title="note entry">note entry</a></samp> mode must not be enabled.</p>
<p><kbd><kbd>X</kbd></kbd> flips the direction of a selected tie.</p>
  </div>
<div id="node-90" class="section-3">
  <h1 class="book-heading">Time signature</h1>
  <p><strong>Time signatures</strong> are available in the main palette sidebar. You can drag and drop the time signatures onto the score (see <a href="http://musescore.org/en/handbook/palette" title="palette">palette</a> for general information on working with palettes in MuseScore).</p>
<p><img src="/sites/musescore.org/files/time-palette-1.png" alt="Time Signature sidebar palette" title="Time Signature sidebar palette" width="135" height="176" class="inline" /></p>
<p>If you need a time signature not found in the sidebar palette, go to <kbd><samp class="menu">Create</samp> → <samp class="menuitem">Time...</samp></kbd> to create your own. You can edit the upper and lower numbers in the <samp>Create Time Signature</samp> pane. Once added, just drag and drop the time signature to the score from the window where you manufactured it. Be aware that it will not appear in the pallet.</p>
<p>In most cases, you'll only need to edit the first of the upper numbers. The additional upper numbers are for <a class="freelinking external" href="http://en.wikipedia.org/wiki/Time_signature#Additive_meters">additive meters</a>, which contain multiple upper numbers separated by a plus sign.</p>
<p><img src="/sites/musescore.org/files/time-palette-2.png" alt="Create new time signatures" title="Create new time signatures" width="455" height="236" class="inline" /></p>
<p>Time signatures you don't need (any longer) could get removed in the above dialog box via right-click -&gt; "Delete Content".</p>
<h3>Pickup measures</h3>
<p>There are occasions when the actual duration of a measure is different from the duration specified by the time signature. Pickup measures are a common example. To change the actual duration of a measure without displaying a different time signature, see the Properties section of <a href="http://musescore.org/en/handbook/measure-operations" title="measure operations">measure operations</a>.</p>
  </div>
<div id="node-91" class="section-3">
  <h1 class="book-heading">Tremolo</h1>
  <p>Tremolo is the rapid repetition of one note, or a rapid alternation between two or more notes. It is indicated by strokes through the stems of the notes. If the tremolo is between two or more notes, the bars are drawn between them. Tremolo symbols are also used to notate drum rolls.</p>
<p>The tremolo palette contains separate symbols for one note tremolos (shown with stems below) and for two note tremolos (shown with no stem below).</p>
<p><img src="/sites/musescore.org/files/tremolopalette_0.png" alt="Tremolo palette" title="Tremolo palette" width="168" height="64" class="inline" /></p>
<p>Tremolo can be added to the stem of a single note by selecting the notehead and then double click on the desired symbol in the tremolo palette.</p>
<p>In a two note tremolo, every note has the value of the whole tremolo duration. To enter a tremolo with the duration of a half note (minim), first enter two normal quarter notes (crotchets). After dragging a tremolo symbol to the first note, the note values automatically double to half notes.</p>
  </div>
<div id="node-92" class="section-3">
  <h1 class="book-heading">Tuplet</h1>
  <p><strong>Tuplets</strong> are used to write rhythms beyond the beat divisions usually permitted by the time signature. For example, triplet eighth notes (quavers) in a 4-4 time signature divide the quarter note (crotchet) beat into three instead of two.</p>
<h3>Instructions</h3>
<p>To create a <strong>triplet</strong>, first select a note on the score that specifies the <em>full</em> duration of the triplet group. For example, a group of triplet eighth notes (quavers) has a "full duration" of one quarter note (crotchet).<br />
<img src="/sites/musescore.org/files/tuplet1_0.png" alt="Quarter note selected" title="Quarter note selected" width="227" height="58" class="inline" /></p>
<p>From the main menu, choose <kbd><samp class="menu">Notes</samp> → <samp class="submenu">Tuplets</samp> → <samp class="menuitem">Triplet</samp></kbd>. This creates a triplet by dividing the full duration into three equal parts.<br />
<img src="/sites/musescore.org/files/tuplet2_0.png" alt="Triplet eight note followed by rests" title="Triplet eight note followed by rests" width="248" height="63" class="inline" /></p>
<p>They can be further edited.<br />
<img src="/sites/musescore.org/files/tuplet3_0.png" alt="Three triplet eight notes" title="Three triplet eight notes" width="244" height="70" class="inline" /> </p>
<h3>Note entry mode</h3>
<p>Tuplet entry works slightly differently in <a href="http://musescore.org/en/handbook/note-entry" title="note entry">note entry</a> mode, than the method outlined above. You must select the duration first, and enter the pitches afterwards. Below are step-by-step instructions for making triplet eighth notes.</p>
<ol>
<li>Switch to note entry mode by pressing <kbd><kbd>N</kbd></kbd></li>
<li>Make sure the note entry marker is in the place that you want to start the tuplet (use the right and left arrow keys if necessary)</li>
<li>Choose the duration for the whole tuplet group from the note entry toolbar. For this example, click on the quarter note (or press <kbd><kbd>5</kbd></kbd> on the keyboard)</li>
<li>From the main menu, choose <kbd><samp class="menu">Notes</samp> → <samp class="submenu">Tuplets</samp> → <samp class="menuitem">Triplet</samp></kbd>, or press <kbd><kbd>Ctrl</kbd></kbd>+<kbd><kbd>3</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>3</kbd></kbd>)</li>
<li>Notice that an eighth note duration is automatically selected. Click on the staff to add pitches or enter them via the computer- or MIDI-keyboard</li>
</ol>
<h3>Properties</h3>
<p>To change the display properties of a tuplet, right-click on the tuplet number and choose <kbd><samp class="menuitem">Tuplet Properties...</samp></kbd>.<br />
<img src="/sites/musescore.org/files/tuplet-properties.png" alt="Tuplet Properties dialog" title="Tuplet Properties dialog" width="245" height="223" class="inline" /></p>
<p>The number section of the properties dialog allows you to show one integer, a ratio of two integers, or no number at all.</p>
<p>In the bracket section, the "bracket" and "nothing" allow you to explicitly show, or hide the bracket. The "auto bracket" option hides the bracket for beamed notes and shows the bracket - if the tuplet includes unbeamed notes or rests.</p>
<p><img src="/sites/musescore.org/files/5-6-tuplet.png" alt="Tuplet with a 5:6 ratio and auto beam" title="Tuplet with a 5:6 ratio and auto beam" width="134" height="57" class="inline" /></p>
<h3>External links</h3>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Tuplet">Tuplet</a> at Wikipedia</li>
<li><a href="http://www.musescoretips.com/2011/02/how-to-create-triplets-in-musescore-video/">How To Create Triplets in MuseScore</a> [video]</li>
<li><a href="http://youtu.be/oJquDsYMUq0">The User Guide to Tuplets in MuseScore</a> [video]</li>
</ul>
  </div>
<div id="node-94" class="section-3">
  <h1 class="book-heading">Voices</h1>
  <p><strong>Voices</strong> allow you to have notes on a single staff which start at the same time, yet have different durations. Voices are sometimes called 'layers' in other notation software.</p>
<p><img src="/sites/musescore.org/files/voices-diagram.png" alt="In a polyphonic measure, voice 1 takes the up-stem notes and voice 2 takes the down-stem notes" title="In a polyphonic measure, voice 1 takes the up-stem notes and voice 2 takes the down-stem notes" width="324" height="70" class="inline" /></p>
<h3>Instructions</h3>
<ol>
<li>Start by entering the top voice (all the up-stem notes). When you enter the notes, some may have down-stems. You do not need to worry about the stem direction at this point, because they will flip automatically when you add the second voice.<br />
<img src="/sites/musescore.org/files/voices0.png" alt="Voice 1 notes" title="Voice 1 notes" width="337" height="46" class="inline" /></li>
<li>If you are using a computer or MIDI keyboard to enter notes (instead of the mouse), use the <kbd><kbd>&larr;</kbd></kbd> key to move your cursor back to the beginning.</li>
<li>Click on "Voice 2" button <img src="/sites/musescore.org/files/voice-2-button.png" alt="Voice 2 button" title="Voice 2 button" width="18" height="12" class="inline" /></li>
<li>Enter all the bottom voice notes (all the down-stem notes). When you are finished, it should look like this:<br />
<img src="/sites/musescore.org/files/voices2.png" alt="Voices 1 and 2" title="Voices 1 and 2" width="405" height="61" class="inline" /></li>
</ol>
<h3>When to use voices</h3>
<ul>
<li>If you need stems pointing in opposite directions within a chord on a single staff</li>
<li>If you need notes of different durations within a single staff, played simultaneously</li>
</ul>
<h3>Hidden spacer rests</h3>
<p>To hide a rest, right-click on the rest and select <kbd><samp class="menuitem">Set Invisible</samp></kbd>. If you have <kbd><samp class="menu">Display</samp> → <samp class="menuitem">Show Invisible</samp></kbd> marked, the rest still shows in gray on your screen. The hidden rest will not appear if you print.</p>
<h3>External links</h3>
<ul>
<li><a class="freelinking external" href="http://www.youtube.com/watch?v=R_BA-hjjJ0g">Video tutorial: How To Write Two Parts On One Staff: Voices</a></li>
</ul>
  </div>
<div id="node-95" class="section-3">
  <h1 class="book-heading">Volta</h1>
  <p><strong>Volta</strong> brackets, or <strong>first and second ending</strong> brackets are used to mark different endings for a repeat.</p>
<p><img src="/sites/musescore.org/files/volta_0.png" alt="Sample first and second endings" title="Sample first and second endings" width="370" height="73" class="inline" /></p>
<p>To place a volta bracket on the score, drag-and-drop the item from the <a href="http://musescore.org/en/handbook/line" title="line">lines palette</a>.</p>
<p>The brackets can span more than one measure. Double-click the volta to enter <samp class="mode">edit mode</samp>, and move the handles with:</p>
<ul>
<li>one measure right <kbd><kbd>Shift&uArr;</kbd>+<kbd>&rarr;</kbd></kbd></li>
<li>one measure left <kbd><kbd>Shift&uArr;</kbd>+<kbd>&larr;</kbd></kbd></li>
</ul>
<p>These commands move the "logical" start or end of the volta bracket, which determines playback in MuseScore and layout over multiple systems. Moving the handles using the left or right arrows keys only, or using the mouse allows finer adjustments, but does not change how the repeat is played.</p>
<p>If you move the handles, a dashed line from the logical position to the actual position is shown<br />
<img src="/sites/musescore.org/files/volta2_0.png" alt="Second-ending volta in edit mode" title="Second-ending volta in edit mode" width="483" height="77" class="inline" /></p>
<h3>Text</h3>
<p>You can change the text and many other properties of a volta bracket using the Line Properties dialog. Right-click on a volta bracket and choose <kbd><samp class="menuitem">Line Properties...</samp></kbd>. The figure below shows the volta text as "1.-5."</p>
<p><img src="/sites/musescore.org/files/volta-line-properties.png" alt="Line Properties dialog" title="Line Properties dialog" width="607" height="219" class="inline" /></p>
<p><img src="/sites/musescore.org/files/volta4_0.png" alt="Sample first-through-fifth ending followed by sixth ending" title="Sample first-through-fifth ending followed by sixth ending" width="401" height="73" class="inline" /></p>
<p>You can also right-click on the Volta and bring up the Volta Properties dialog. From here, you can change both the displayed Volta text (the same from the Line Properties above) and the Repeat List. If you want one volta to be played only on certain repeats and another volta on other repeats, enter the repeat times in a comma separated list. In the example below, this volta will be played during repeat 1, 2, 4, 5 and 7. Another volta will have the other ending, like 3, 6 and possibly other higher numbers like 8, 9, etc.</p>
<p><img src="/sites/musescore.org/files/volta-properties.png" alt="Volta Properties dialog" title="Volta Properties dialog" width="529" height="297" class="inline" /></p>
<h3>Playback</h3>
<p>Sometimes a repeat plays for more than two times. In the figure above, the volta text indicates that it should play five times before it continues. If you want to change the number of times MuseScore plays a repeat, go to the measure containing the end repeat bar line and change its Repeat Count (see <a href="http://musescore.org/en/handbook/measure-operations" title="Measure operations">Measure operations</a> for details).</p>
<h3>External links</h3>
<ul>
<li><a class="freelinking external" href="http://www.youtube.com/watch?v=IVmXhlpOpa4">Video tutorial: Repeats, 1st and 2nd time endings</a></li>
<li><a class="freelinking external" href="http://www.youtube.com/watch?v=jwiZIbuf_j8">Screencast: Add alternative repeats with MuseScore</a></li>
</ul>
  </div>
</div>
<div id="node-305" class="section-2">
  <h1 class="book-heading">Sound and playback</h1>
  <p>MuseScore has  "Sound and playback" capabilities built in. This chapter covers the playback controls and ways to extend the instrument sounds beyond the built-in piano sound.</p>
  <div id="node-83" class="section-3">
  <h1 class="book-heading">Play mode</h1>
  <p>MuseScore has an integrated sequencer and synthesizer to play your score.</p>
<p>By pressing the Play <img src="/sites/musescore.org/files/play.png" alt="play.png" title="play.png" width="34" height="33" class="inline" /> button, you enter <samp class="mode">Play mode</samp>. In <samp class="mode">Play mode</samp>, the following commands are available:</p>
<ul>
<li>Seek to previous chord <kbd><kbd>&larr;</kbd></kbd></li>
<li>Seek to next chord <kbd><kbd>&amp;rarr:</kbd></kbd></li>
<li>Seek to previous measure <kbd><kbd>Ctrl</kbd>+<kbd>&larr;</kbd></kbd> (Mac: <kbd><kbd>&larr;</kbd></kbd>)
</li>
<li>Seek to next measure <kbd><kbd>Ctrl</kbd>+<kbd>&rarr;</kbd></kbd> (Mac: <kbd><kbd>&rarr;</kbd></kbd>)</li>
<li>Rewind to start of score <kbd><kbd>Home</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>Home</kbd></kbd>)</li>
<li>Toggle show play panel <kbd><kbd>F11</kbd></kbd> (Mac: <kbd><kbd>⌥</kbd>+<kbd>⌘</kbd>+<kbd>P</kbd></kbd>)
</li>
</ul>
<p>Press the play button again to stop and exit <samp class="mode">Play mode</samp>.</p>
<p>MuseScore starts playback from the place it last left off. If you select a note, MuseScore plays from there instead. The toolbar also has a rewind button to quickly return to the beginning of the score for playback. </p>
<p>To also play repeats, activate the <img src="/sites/musescore.org/files/play-repeats_1.png" alt="play-repeats.png" title="play-repeats.png" width="34" height="33" class="inline" /> <i>Enable/Disable Repeats</i>-Button.</p>
<h3>Play Panel</h3>
<p>The Play Panel offers more controls over playback, including tempo, starting position, and general volume. From the main menu, choose <kbd><samp class="menu">Display</samp> → <samp class="menuitem">Play Panel</samp></kbd> to open the Play Panel.</p>
<p><img src="/sites/musescore.org/files/playpanel_0.png" alt="The play panel allows you to adjust tempo and volume" title="The play panel allows you to adjust tempo and volume" width="298" height="211" class="inline" /></p>
  </div>
<div id="node-101" class="section-3">
  <h1 class="book-heading">SoundFont</h1>
  <p>MuseScore comes with a special type of file called a SoundFont that tells MuseScore how to play each instrument sound. Some SoundFonts are custom designed for classical music others for jazz or pop, others are large and take up a lot of memory, still others are very small and light-weight. MuseScore features a relatively light-weight, general-purpose SoundFont called, "TimGM6mb.sf2".</p>
<h3>Overview</h3>
<p>A SoundFont file can store any number of instrument sounds. Many SoundFonts are available on the web. Look for one that covers the 128 sounds of <a href="http://en.wikipedia.org/wiki/General_MIDI">General MIDI</a> (GM). If you use a SoundFont that does not conform to the General MIDI standard, then others may not hear the correct instruments when you share the score, or save as MIDI. </p>
<p>The file size and sound quality of SoundFonts available on the web varies. Larger SoundFonts often sound better, but may be too large to run on your computer. If you find MuseScore runs slowly after installing a large SoundFont, or your computer can't keep up during playback, then look for a smaller SoundFont. Below are some popular GM SoundFonts of different sizes.</p>
<ul>
<li><code>FluidR3_GM.sf2</code> (141 MB uncompressed)<br />
Download <a class="freelinking external" href="http://www.musescore.org/download/fluid-soundfont.tar.gz">Fluid-soundfont.tar.gz</a></li>
<li><code>GeneralUser_GS_1.44-MuseScore.sf2</code> (29.8 MB uncompressed)<br />
Download <a class="freelinking external" href="http://www.schristiancollins.com/soundfonts/GeneralUser_GS_1.44-MuseScore.zip">GeneralUser_GS_1.44-MuseScore.zip</a> (Courtesy of <a href="http://www.schristiancollins.com/generaluser.php">S. Christian Collins)</a></li>
<li><code>MagicSF_ver2.sf2</code>  (67.8 MB uncompressed), see also <a href="http://www.personalcopy.com/sfarkfonts1.htm">Big SoundFonts</a></li>
<li><code>TimGM6mb.sf2</code> (5.7 MB uncompressed)<br />
Download <a class="freelinking external" href="http://mscore.svn.sourceforge.net/viewvc/mscore/trunk/mscore/share/sound/TimGM6mb.sf2">modified TimGM6mb.sf2</a> (Courtesy of <a href="http://ocmnet.com/saxguru/Timidity.htm#sf2">Tim Brechbill</a>)</li>
<li><code>HandBells.sf2</code> (5.0 MB uncompressed)<br />
Download <a class="freelinking external" href="http://www.fmjsoft.com/sf/HandBells.zip">HandBells.zip</a> (Courtesy of <a href="http://www.fmjsoft.com/siframe.html">FMJ-Software</a>)</li>
<li><code>acoustic_grand_piano_ydp_20080910.sf2</code> (132 MB)<br />
Download <a class="freelinking external" href="http://freepats.zenvoid.org/sf2/acoustic_grand_piano_ydp_20080910.sf2">acoustic_grand_piano_ydp_20080910.sf2</a> (Courtesy of <a href="http://freepats.zenvoid.org/sf2/acoustic_grand_piano_ydp_20080910.txt">Roberto Gordo Saez</a>)</li>
</ul>
<h3>Compression</h3>
<p>Since SoundFont files are large, they often are compressed into a variety of formats, including .zip, .sfArk, and .tar.gz. You need to decompress these files before they can be used. </p>
<ul>
<li>ZIP is standard compression format supported by most operating systems.</li>
<li>sfArk is a compression format designed especially for compressing SoundFont files. Use the special <a href="http://www.melodymachine.com/sfark.htm">sfArk software</a> to decompress it.</li>
<li>.tar.gz is a popular compression format for Linux. Windows users can use <a href="http://www.7-zip.org/">7-zip</a> which supports a wide variety of compression formats. Note that you need apply decompression twice: once for GZip and once for TAR.</li>
</ul>
<h3 id="musescore-soundfont-settings">MuseScore settings</h3>
<p>After finding and decompressing a SoundFont, do not double-click to open it, since this does not set up MuseScore. Instead, move the file to a folder of your choosing, start MuseScore, and follow the instructions below.</p>
<p>Go to <kbd><samp class="menu">Display</samp> → <samp class="menuitem">Synthesizer</samp></kbd>. The initial SoundFont setting depends on which operating system you are using.</p>
<ul>
<li>Windows: <samp>C:\Program Files\MuseScore\sound\TimGM6mb.sf2<br />
   (actually %ProgramFiles%\MuseScore\sound\TimGM6mb.sf2)</samp></li>
<li>Windows (64-bit): <samp>C:\Program Files (x86)\MuseScore\sound\TimGM6mb.sf2<br />
   (actually %ProgramFiles(x86)%\MuseScore\sound\TimGM6mb.sf2)</samp></li>
<li>Mac OS X:  <samp>/Applications/MuseScore.app/Contents/Resources/sound/TimGM6mb.sf2</samp>
</li>
<li>Linux (Ubuntu): <samp>/usr/share/sounds/sf2/TimGM6mb.sf2</samp></li>
</ul>
<p>Click on the Open icon next to the SoundFont location and browse for your new SoundFont (.sf2) file. In the open dialog, browse and select your file; then press Open. </p>
<p>The initial SoundFont setting is <samp>:/data/piano1.sf2</samp>. Replace this with the location of your new SoundFont (.sf2) file. Click on the Open icon to browse for the file and open it .</p>
<p>Click OK to apply changes and exit the preferences panel. Quit and reopen MuseScore for the changes to take affect.</p>
<h3>Troubleshooting</h3>
<p>If the toolbar play panel is greyed out, or not visible, follow the instructions below to get your sound working again:</p>
<ol>
<li>Make sure there is a check mark next to the <kbd><samp class="menu">Display</samp> → <samp class="menuitem">Transport</samp></kbd> menu item. You can add or remove the check mark by clicking on the corresponding menu item. If this step does not solve your problem, continue with the next step below</li>
<li>If the play panel disappears after changing the SoundFont, go to <kbd><samp class="menu">Edit</samp> → <samp class="menuitem">Preferences...</samp> → <samp class="tab">I/O</samp> tab</kbd> and click OK without making any changes, After restarting MuseScore, the play panel should reappear.</li>
</ol>
<p>If you are setting up a SoundFont for the first time, please use one of the recommended SoundFonts listed above.</p>
<p>If playback stutters, then your computer is not able to handle the SoundFont you are using. Two solutions:</p>
<ol>
<li>Reduce the amount of RAM (memory) used by MuseScore by using a smaller SoundFont. See list above for suggestions</li>
<li>Increase the amount of RAM available for MuseScore by quitting all applications, except MuseScore. If you still have problems and a large SoundFont is important to you, consider more RAM for your computer</li>
</ol>
  </div>
<div id="node-86" class="section-3">
  <h1 class="book-heading">Tempo</h1>
  <p>Playback tempo can be changed via the play panel, or via tempo text in the score.</p>
<h3>Play panel</h3>
<ul>
<li>Display the play panel: <kbd><samp class="menu">Display</samp> → <samp class="menuitem">Play Panel</samp></kbd></li>
<li>Change the Beats per Minute (bpm) using the Tempo (Tmp) slider</li>
</ul>
<h3>Tempo text</h3>
<ul>
<li>Select a note to indicate where the tempo text should be created</li>
<li>From the main menu: <kbd><samp class="menu">Create</samp> → <samp class="submenu">Text...</samp> → <samp class="menuitem">Tempo...</samp></kbd></li>
<li>Press <kbd><samp class="button">OK</samp></kbd> to finish</li>
</ul>
<p>Existing tempo text can be changed by double-clicking the text to enter <samp class="mode">edit mode</samp>. You can use <a href="http://musescore.org/en/handbook/text-editing" title="text editing">Text Symbols</a> to add a quarter note or another duration for a metronome mark in the tempo text.<br />
<img src="/sites/musescore.org/files/met_mark.jpg" alt="Metronome mark: Andante quarter note = 75" title="Metronome mark: Andante quarter note = 75" width="123" height="29" class="inline" /></p>
<p>Beats per minute (BPM) on existing tempo text can be adjusted by right-clicking on the text and selecting <kbd><samp class="menuitem">Tempo Properties...</samp></kbd></p>
<p>Note: Playback of tempo text may be faster or slower than the specified BPM if the tempo setting in the play panel is not set to 100 percent.</p>
  </div>
<div id="node-1779" class="section-3">
  <h1 class="book-heading">Change and adjust sounds</h1>
  <h3>Mixer</h3>
<p>The mixer allows you to change instrument sounds and adjust the volume, panning, reverberation, and chorus for each staff. From the main menu, choose <kbd><samp class="menu">Display</samp> → <samp class="menuitem">Mixer</samp></kbd> to show the mixer.</p>
<p><img src="/sites/musescore.org/files/mixer_0.png" alt="The mixer shows dials for each part" title="The mixer shows dials for each part" width="261" height="115" class="inline" /></p>
<h4>Mute and Solo</h4>
<p>Use the <kbd><samp>Mute</samp></kbd> check box to quickly silence certain staves. Alternatively, use the <kbd><samp>Solo</samp></kbd> check box to silence all staves, except the staff you mark as "solo".</p>
<h4>Dials</h4>
<p>To turn a dial clockwise, click and drag upwards. To turn a dial counter-clockwise, click and drag downwards. </p>
<h4>Sound</h4>
<p>The sound drop-down menu lists every instrument supported by your current <a href="http://musescore.org/en/handbook/soundfont" title="SoundFont">SoundFont</a>.</p>
<h3>Change instrument</h3>
<p>You can change a staff to be a different instrument. The following method updates instrument sound, staff name, and staff transposition all at once. </p>
<ol>
<li>Right-click on an empty part of the measure and choose <kbd><samp class="menuitem">Staff Properties...</samp></kbd></li>
<li>Click on Change Instrument</li>
<li>Choose your new instrument and click OK to return to the Staff Properties dialog</li>
<li>Click OK again to return to the score</li>
</ol>
<h3>Mid-staff change</h3>
<p>Some instruments can change sounds midway in a score. For example, strings can switch to pizzicato or tremolo and trumpet can switch to muted trumpet. The following instructions use muted trumpet as an example, but the same principles apply to pizzicato or tremolo strings.</p>
<ol>
<li>Select the first note of the muted section</li>
<li>From the main menu, choose <kbd><samp class="menu">Create</samp> → <samp class="submenu">Text</samp> → <samp class="menuitem">Staff Text</samp></kbd></li>
<li>Type <kbd>Mute</kbd> (or an equivalent indication such as <kbd>Con Sordino</kbd>). At this point, the staff text is a visual reference and not applied during playback</li>
<li>Right-click on the staff text and select <kbd><samp class="menuitem">Staff Text Properties...</samp></kbd></li>
<li>In the Staff Text Properties dialog, mark the <kbd><samp>Channel</samp></kbd> checkbox</li>
<li>In the Staff Text Properties dialog, select <kbd><samp>mute</samp></kbd></li>
<li>Click <kbd><samp>OK</samp></kbd> to return to the score</li>
</ol>
<p>Every note after the staff text you added now sounds muted. To return to an unmuted sound later in the piece, follow the same guidelines as above except type <kbd>Open</kbd> in step 3 and select <kbd><samp>normal</samp></kbd> in step 6.</p>
  </div>
<div id="node-10643" class="section-3">
  <h1 class="book-heading">Dynamics</h1>
  <p>Playback volume can be changed for the entire piece by the play panel, or locally by Dynamics text in the score.</p>
<h3>Play panel</h3>
<ul>
<li>Display the play panel: <kbd><samp class="menu">Display</samp> → <samp class="menuitem">Play Panel</samp></kbd></li>
<li>Change the Volume using the slider</li>
</ul>
<h3>Dynamics text</h3>
<ul>
<li>From the Dynamics palette, click and drag a Dynamics text to a measure in the score.</li>
<li>To mark crescendo and decrescendo, see <a href="http://musescore.org/en/handbook/hairpin" title="hairpin">hairpin</a></li>
</ul>
<h4>Adjusting playback volume for a Dynamics text</h4>
<ul>
<li> Right-click on the Dynamics text to open the menu.</li>
<li> Select "MIDI Properties".</li>
<li> Adjust the "Velocity" number, higher for louder, lower for softer.</li>
</ul>
<h3 id="weblinks">Weblinks</h3>
<ul>
<li><a class="freelinking external" href="http://www.youtube.com/watch?v=e55-YnhSk-s">Video tutorial: Lyrics, Copying &amp; Dynamics</a></li>
</ul>
  </div>
</div>
<div id="node-306" class="section-2">
  <h1 class="book-heading">Text</h1>
  <p>The previous chapter covers <a href="http://musescore.org/en/handbook/tempo" title="tempo">text that affects playback tempo</a>, but there are many other types of text available in MuseScore: <a href="http://musescore.org/en/handbook/lyrics" title="lyrics">lyrics</a>, <a href="http://musescore.org/en/handbook/chord-name" title="chord name">chord names</a>, <a href="http://musescore.org/en/handbook/dynamics" title="dynamics">dynamic markings</a>, <a href="http://musescore.org/en/handbook/fingering" title="fingering">fingering</a>, headings, plus many more. These are all accessible from the main menu via <kbd><samp class="menu">Create</samp> → <samp class="submenu">Text</samp></kbd>. </p>
<p>For short generic text use staff or system text. The difference between these two texts is whether you want it to apply to a single staff or apply to the whole system. This makes a difference when <a href="http://musescore.org/en/handbook/part-extraction" title="part extraction">extracting parts</a>.</p>
  <div id="node-88" class="section-3">
  <h1 class="book-heading">Text editing</h1>
  <p>Double-click on text to enter <samp class="mode">edit mode</samp>:<br />
<img src="/sites/musescore.org/files/textedit_0.png" alt="Sample text in edit mode" title="Sample text in edit mode" width="83" height="101" class="inline" /></p>
<p>In text <samp class="mode">edit mode</samp>, the following commands are available:</p>
<ul>
<li><kbd><kbd>Ctrl</kbd>+<kbd>B</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>B</kbd></kbd>) toggles <b>bold</b> face</li>
<li><kbd><kbd>Ctrl</kbd>+<kbd>I</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>I</kbd></kbd>) toggles <i>italic</i></li>
<li><kbd><kbd>Ctrl</kbd>+<kbd>U</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>U</kbd></kbd>) toggles <u>underline</u></li>
<li>move cursor: <kbd><kbd>Home</kbd></kbd> <kbd><kbd>End</kbd></kbd> <kbd><kbd>Left</kbd></kbd> <kbd><kbd>Right</kbd></kbd></li>
<li><kbd><kbd>Backspace</kbd></kbd> remove character to the left of the cursor</li>
<li><kbd><kbd>Delete</kbd></kbd> remove character to the right of the cursor</li>
<li><kbd><kbd>Return</kbd></kbd> start new line</li>
<li><kbd><kbd>F2</kbd></kbd> Insert text symbol (see below)</li>
</ul>
<h3>Symbols and special characters</h3>
<p>You can use Text Symbols to insert quarter notes, fractions, and other special symbols or characters into your text. In the text toolbar, click on the keyboard icon <img src="/sites/musescore.org/files/special-text-symbols-button.png" alt="special-text-symbols-button.png" title="special-text-symbols-button.png" width="31" height="28" class="inline" />, or hit <kbd><kbd>F2</kbd></kbd> to open the Text Symbols palette</p>
<p><img src="/sites/musescore.org/files/special-text-symbols_1.png" alt="The Text Symbols palette contains buttons for inserting symbols into the text (e.g. quarter note), or special characters (e.g. copyright symbol)." title="The Text Symbols palette contains buttons for inserting symbols into the text (e.g. quarter note), or special characters (e.g. copyright symbol)." width="562" height="263" class="inline" /></p>
<p>See also: <a href="http://musescore.org/en/handbook/chord-name" title="Chord name">Chord name</a>, <a href="http://musescore.org/en/handbook/lyrics" title="Lyrics">Lyrics</a>, <a href="http://musescore.org/en/handbook/frame" title="Frame">Frame</a>, <a href="http://musescore.org/en/handbook/edit-mode" title="Edit mode">Edit mode</a></p>
  </div>
<div id="node-87" class="section-3">
  <h1 class="book-heading">Text style</h1>
  <p>Each text type has a basic style. For example, title text is centered and uses a large font size, Composer text is smaller and aligned to the right. To edit text styles, go to <kbd><samp class="menu">Style</samp> → <samp class="menuitem">Edit Text Style...</samp></kbd>. </p>
<p>During <a href="http://musescore.org/en/handbook/text-editing" title="text editing">text editing</a>, you can make changes that depart from basic style.</p>
<h3>Text properties:</h3>
<ul>
<li><strong>Font</strong>: name of the font such as "Times New Roman" or "Arial"</li>
<li><strong>Size</strong>: the size of the font in points</li>
<li><strong>Italic, Bold, Underline</strong>: font properties</li>
<li><strong>Anchor</strong>: page, time, notehead, system, staff</li>
<li><strong>Alignment</strong>: horizontal: left, right, center; vertical: top, bottom, center</li>
<li><strong>Offset</strong>: an offset to the normal anchor position</li>
<li><strong>Offset Type</strong>: mm, space, or percent of page size</li>
</ul>
<h3 id="text-types">Text types:</h3>
<ul>
<li><strong>Title, Subtitle, Composer, Poet</strong>: anchored to page</li>
<li><strong><a href="http://musescore.org/en/handbook/fingering" title="Fingering">Fingering</a></strong>: Fingerings are anchored to note heads.</li>
<li><strong><a href="http://musescore.org/en/handbook/lyrics" title="Lyrics">Lyrics</a></strong>: Lyrics are anchored to a time position.</li>
<li><strong><a href="http://musescore.org/en/handbook/chord-name" title="Chord name">Chord name</a></strong>: Chord names are also anchored to a time position.</li>
<li><strong>System text</strong>: Applies to all staves in a system.* Anchored to a time position.</li>
<li><strong>Staff text</strong>: Applies to a single staff in a system.* Anchored to a time position.</li>
</ul>
<p>* The distinction between System and Staff text matters for ensemble scores. System text will extract to all parts. Staff text will only extract to the part to which it is anchored.</p>
  </div>
<div id="node-65" class="section-3">
  <h1 class="book-heading">Chord name</h1>
  <p><strong>Chord names</strong> can be entered by first selecting a note and then pressing  <kbd><kbd>Ctrl</kbd>+<kbd>K</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>K</kbd></kbd>). This creates a chord name text object for the selected chord.</p>
<ul>
<li>Type <kbd><kbd>Space</kbd></kbd> to move to the next beat.</li>
<li><kbd><kbd>Shift&uArr;</kbd>+<kbd>Space</kbd></kbd> moves to the previous beat.</li>
<li><kbd><kbd>Ctrl</kbd>+<kbd>Space</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>Space</kbd></kbd>) Adds a space to the chord name.</li>
<li>Type <kbd><kbd>Tab</kbd></kbd> to move to the next measure.</li>
<li><kbd><kbd>Shift&uArr;</kbd>+<kbd>Tab</kbd></kbd> moves to the previous measure.</li>
</ul>
<p>Chord names can be <a href="http://musescore.org/en/handbook/text-editing" title="text editing">edited</a> as normal text. To add a sharp, type <kbd>#</kbd>. To add a flat, type <kbd>b</kbd>. These characters will automatically turn into proper sharp or flat signs when you move to the next chord.</p>
<h3>MuseJazz font</h3>
<p>If you prefer a more handwritten appearance to the chord names in your score, there is a font option called "MuseJazz".</p>
<p><img src="/sites/musescore.org/files/jazz-chord-names_0.png" alt="Chord names have a handwritten appearance" title="Chord names have a handwritten appearance" width="182" height="49" class="inline" /></p>
<p>To use this font:</p>
<ol>
<li>From the main menu, choose <kbd><samp class="menu">Style</samp> → <samp class="menuitem">Load Style...</samp></kbd></li>
<li>Navigate to the <kbd>styles</kbd> folder if necessary</li>
<li>Select <kbd>MuseJazz.mss</kbd></li>
</ol>
<p>This will set up your score to use "MuseJazz" for most text, including chord names. If you prefer to use "MuseJazz" for chord names only, use the following procedure:</p>
<ol>
<li>From the main menu, choose <kbd><samp class="menu">Style</samp> → <samp class="menuitem">Edit General Style...</samp></kbd></li>
<li>From the left pane, select <kbd><samp>Chordnames</samp></kbd></li>
<li>In the right pane, replace the text <kbd>stdchords.xml</kbd> with <kbd>jazzchords.xml</kbd> or one of the following files.</li>
</ol>
<p>MuseScore provides several new alternatives for chord name style in addition to <kbd>jazzchords.xml</kbd> that can be selected using the above procedure. Here are the available styles:</p>
<ul>
<li><kbd>cchords_muse.xml</kbd> (the default when using <kbd>MuseJazz.mss</kbd>):<br />
<img src="/sites/musescore.org/files/cchords_muse_1.png" alt="cchords_muse.xml sample" title="cchords_muse.xml sample" width="585" height="71" class="inline" /></li>
<li><kbd>cchords_nrb.xml</kbd>:<br />
<img src="/sites/musescore.org/files/cchords_nrb_1.png" alt="cchords_nrb.xml sample" title="cchords_nrb.xml sample" width="585" height="71" class="inline" /></li>
<li><kbd>cchords_rb.xml</kbd>:<br />
<img src="/sites/musescore.org/files/cchords_rb_1.png" alt="cchords_rb.xml sample" title="cchords_rb.xml sample" width="585" height="72" class="inline" /></li>
<li><kbd>cchords_sym.xml</kbd>:<br />
<img src="/sites/musescore.org/files/cchords_sym_1.png" alt="cchords_sym.xml sample" title="cchords_sym.xml sample" width="585" height="72" class="inline" /></li>
</ul>
  </div>
<div id="node-74" class="section-3">
  <h1 class="book-heading">Fingering</h1>
  <p><strong>Fingering</strong> can be added to notes by dragging a fingering character from the fingering palette to a note head in the score. When a note head is selected first, the fingering character can be added using a double-click. Fingerings are normal text, which can be <a href="http://musescore.org/en/handbook/text-editing" title="text editing">edited</a> like any other text.</p>
<p><img src="/sites/musescore.org/files/fingering-palette.png" alt="Fingering palette" title="Fingering palette" width="168" height="114" class="inline" /></p>
  </div>
<div id="node-80" class="section-3">
  <h1 class="book-heading">Lyrics</h1>
  <ol>
<li>First enter notes</li>
<li>Select first note</li>
<li>From the main menu choose <kbd><samp class="menu">Create</samp> → <samp class="submenu">Text</samp> → <samp class="menuitem">Lyrics</samp></kbd> and type the syllable for the first note</li>
<li>Type <kbd><kbd>Space</kbd></kbd> at end of a word to go to the next note</li>
<li>Type an hyphen <kbd><kbd>-</kbd></kbd> at end of syllable to go to next note. The syllables are connected with a dash</li>
<li><kbd><kbd>Shift&uArr;</kbd>+<kbd>Space</kbd></kbd> moves to the previous syllable</li>
<li><kbd><kbd>Enter</kbd></kbd> (Mac: <kbd><kbd>Return</kbd></kbd>) moves down to the next lyric line</li>
</ol>
<p><img src="/sites/musescore.org/files/adeste.png" alt="Sample lyrics:A-des-te fi-del-es" title="Sample lyrics:A-des-te fi-del-es" width="475" height="220" class="inline" /></p>
<p>Syllables can be extended by an underline to notate a melisma<br />
<img src="/sites/musescore.org/files/lyrics1_0.png" alt="Syllable extension line" title="Syllable extension line" width="351" height="214" class="inline" /></p>
<p>Entered with: <kbd>soul, <kbd>_</kbd> <kbd>_</kbd> <kbd>_</kbd> To <kbd>Esc</kbd></kbd>.</p>
<p>Two syllables under a note can be joined with a synalepha, it looks like a lyric slur.<br />
<img src="/sites/musescore.org/files/lyric slur.jpg" alt="Sample syllable under a note" title="Sample syllable under a note" width="156" height="121" class="inline" /></p>
<p>In the text toolbar, click on the keyboard icon <img src="/sites/musescore.org/files/Keyboardico.png" alt="Keyboardico.png" title="Keyboardico.png" width="31" height="28" class="inline" />, or hit <kbd><kbd>F2</kbd></kbd> to open the Text Symbols palette. The synalepha is the 4th starting at the end. (Note that on Windows XP, synalepha is not available)</p>
<h3>Special characters</h3>
<p>Lyrics can be <a href="http://musescore.org/en/handbook/text-editing" title="text editing">edited</a> as normal text with the exception of a few characters. If you want to add a space, hyphen, or underscore to a single syllable, use the following shortcuts:</p>
<ul>
<li><kbd><kbd>Ctrl</kbd>+<kbd>Space</kbd></kbd> (Mac: <kbd><kbd>⌥</kbd>+<kbd>Space</kbd></kbd>) enters a <samp>space</samp> into the lyrics text</li>
<li><kbd><kbd>Ctrl</kbd>+<kbd>-</kbd></kbd> (Mac: <kbd><kbd>⌥</kbd>+<kbd>-</kbd></kbd>) enters a hyphen (<samp>-</samp>) into the lyrics text</li>
<li>Mac only: <kbd><kbd>⌥</kbd>+<kbd>_</kbd></kbd> enters an underscore (<samp>_</samp>) into the lyrics text</li>
</ul>
<p>See also: <a href="http://musescore.org/en/handbook/text" title="Text">Text</a>, <a href="http://musescore.org/en/handbook/chord-name" title="Chord name">Chord name</a>.</p>
<h3 id="weblinks">Weblinks</h3>
<ul>
<li><a class="freelinking external" href="http://www.youtube.com/watch?v=e55-YnhSk-s">Video tutorial: Lyrics, Copying &amp; Dynamics</a></li>
</ul>
  </div>
</div>
<div id="node-307" class="section-2">
  <h1 class="book-heading">Formatting</h1>
    <div id="node-63" class="section-3">
  <h1 class="book-heading">Break or spacer</h1>
  <p><strong>Page breaks</strong> or <strong>line breaks</strong> (system breaks) are applied by dragging the corresponding symbol from the breaks palette to an empty space of a measure in the score. The break happens after the marked measure. The green break symbols are visible on the screen, but do not appear on printouts.</p>
<p><img src="/sites/musescore.org/files/breaks-spacer-palette.png" alt="Breaks Palette" title="Breaks Palette" width="135" height="60" class="inline" /></p>
<p><strong>Mid-measure system breaks</strong> are sometimes needed (especially for strophic hymns or lieder). For example, if you want three beats on one system and a one beat pickup on the next system, then you need to create two measures with a shortened duration. For details, see <a href="http://musescore.org/en/handbook/measure-operations" title="Measure operations">Measure operations</a>, "Duration" and "Irregular" sections.</p>
<p><strong>Spacers</strong> are used to increase the space between two adjacent staves. Drag and drop a spacer to a measure above the area that needs more vertical space. Double-click on the spacer and drag the handle using the mouse to adjust the height of the spacer. </p>
<p>If you want to adjust the space between staves score-wide, use the style settings. Spacers are designed for local adjustments.</p>
  </div>
<div id="node-75" class="section-3">
  <h1 class="book-heading">Frame</h1>
  <p><strong>Frames</strong> provide empty space outside of normal measures. They can also contain text or pictures. MuseScore has two kinds of frames:</p>
<dl>
<dt>Horizontal</dt>
<dd><img src="/sites/musescore.org/files/hframe.png" alt="Horizontal Frame" title="Horizontal Frame" width="300" height="160" class="inline" /><br />
Horizontal frames break a system. The width is adjustable and the height equals the system height. Horizontal frames can be used to separate a coda.</dd>
<dt>Vertical</dt>
<dd><img src="/sites/musescore.org/files/vframe.png" alt="Vertical Frame" title="Vertical Frame" width="300" height="160" class="inline" /><br />
Vertical frames provide empty space between or before systems. The height is adjustable and the width equals the system width. Vertical frames are used to place title, subtitle, lyricist or composer. If you create a title, a vertical frame is placed before the first measure automatically, if it is not there already.</dd>
</dl>
<h3>Create a frame</h3>
<p>Select a measure. The command to insert a frame is found in the menu <kbd><samp class="menu">Create</samp> → <samp class="menuitem">Measures</samp></kbd> . The frame is inserted before the selected measure.</p>
<h3>Delete a frame</h3>
<p>Select the frame and press <kbd><kbd>Del</kbd></kbd>.</p>
<h3>Edit frame</h3>
<p>Double click the frame to enter <samp class="mode"><a href="http://musescore.org/en/handbook/edit-mode" title="edit mode">edit mode</a></samp>. A handle appears which can be used to drag the size of the frame.</p>
<p>Title frame in <samp class="mode">edit mode</samp>:</p>
<p><img src="/sites/musescore.org/files/frame_2.png" alt="Horizontal frame" title="Horizontal frame" width="655" height="428" class="inline" /></p>
  </div>
<div id="node-5425" class="section-3">
  <h1 class="book-heading">Image</h1>
  <p>You can use <strong>images</strong> to illustrate scores, or add symbols that are not included in the standard palettes.</p>
<p>To add an image, drag-and-drop an image file onto the score. MuseScore supports PNG and JPEG files and simple SVG files. MuseScore does not support SVG shading, blurring, clipping or masking.</p>
  </div>
<div id="node-15053" class="section-3">
  <h1 class="book-heading">Layout and formatting</h1>
  <p>You've finished your score and you want to print it out. However, you want improve how it looks. This handbook page describes many different ways, and how they work together.</p>
<h3>Ways to affect layout</h3>
<ul>
<li><kbd><samp class="menu">Layout</samp> → <samp class="menuitem">Page Settings</samp></kbd>. Change global settings such as page size, how big a "space" is (under "Scaling"), and how big page margins are. <b><i>Space</i></b> is used in other settings (example: "5.0sp"), so changing "space" will change most other settings.</li>
<li><kbd><samp class="menu">Layout</samp> → <samp class="menuitem"> Add More Stretch, Add Less Stretch</samp></kbd>. Stretch or squash measures you select specifically.</li>
<li><kbd><samp class="menu">Style</samp> → <samp class="menuitem">Edit General Style</samp> → <samp class="menuitem">Page</samp></kbd>. Change global settings that affect how close staves are, how close systems are, how much margin lyrics get, and so on.</li>
<li><kbd><samp class="menu">Style</samp> → <samp class="menuitem">Edit General Style</samp> → <samp class="menuitem"> System</samp></kbd>. Fix the number of measures per system, or the measure width.</li>
<li><kbd><samp class="menu">Style</samp> → <samp class="menuitem">Edit General Style</samp> → <samp class="menuitem">Score</samp></kbd>. Affect score details like whether there are multimeasure rests or empty staves are hidden.</li>
<li><kbd><samp class="menu">Style</samp> → <samp class="menuitem">Edit General Style</samp> → <samp class="menuitem">Measure</samp></kbd>. Set measure spacing, key to controlling number of measures per line.</li>
<li><b>Palette / Breaks &amp; Spacer</b>. Break a line at a particular measure, a page at a particular line, or add space between measures.</li>
<li><kbd><samp class="menu">Style</samp> → <samp class="menuitem">Edit General Style</samp> → <samp class="menuitem">Sizes</samp></kbd>. Set the proportional size of "small" and grace notes. Changing this would be unusual.</li>
</ul>
<h3>Layout / Page Settings</h3>
<p><img src="/sites/musescore.org/files/MuseScore1.1_Layout_PageSettings_cropped.png" alt="MuseScore1.1_Layout_PageSettings_cropped.png" title="MuseScore1.1_Layout_PageSettings_cropped.png" width="373" height="394" class="inline" /></p>
<p><b>Scaling / Space</b> - This is the size of the space between 2 lines of a staff. Since notes fit in that space, it also controls the size of note heads. Since music is proportional to notes, this also affects note stems, accidentals, clefs, all kinds of things. It also shows up as <b>sp</b> in <i>many</i> other settings (example: system distance "9.2sp"). So, as you change the "Space" parameter, many other settings change proportionally. For this reason, it is also sometimes called "scaling."</p>
<p>Changing the scaling may not change the number of systems per page because of the "page fill threshold" (see below). To see the effects of changes to scaling without interference, set the "page fill threshold" to 100%.</p>
<p>Note: there is also a scaling parameter in <kbd><samp class="menu">Edit</samp> → <samp class="menuitem">Preferences</samp> → <samp class="menuitem">Score</samp> → <samp class="menuitem">Scaling</samp></kbd>. That sets the global preference for new documents, but does not change the current score.</p>
<h3>Layout: Add More Stretch, Add Less Stretch</h3>
<p><img src="/sites/musescore.org/files/MuseScore1.1_Layout.png" alt="MuseScore1.1_Layout.png" title="MuseScore1.1_Layout.png" width="213" height="196" class="inline" /></p>
<p>You can select measures, then widen them so fewer are on a line ("Add More Stretch"), or squash them to fit more on a line ("Add Less Stretch").</p>
<h3>Style / Edit General Style / Page</h3>
<p><img src="/sites/musescore.org/files/MuseScore1.1_EditStyle_Page_cropped.png" alt="MuseScore1.1_EditStyle_Page_cropped.png" title="MuseScore1.1_EditStyle_Page_cropped.png" width="456" height="279" class="inline" /></p>
<ul>
<li>Music upper and lower margin - Space before and after the first and last staves on a page.</li>
<li>Staff distance - Space between staves within a system.</li>
<li>Accolade distance - Space between the staves of a multi-staff instrument like piano.</li>
<li>System distance - Space between systems.</li>
<li>Lyrics upper and lower margin - Space before and after the first and last lines of lyrics.</li>
<li>V-frame upper and lower margin - Margins for a vertical frame (for example, the box containing the title and composer info).</li>
<li>Page fill threshold - If the page is fuller than this, system space is ignored, and everything is stretched to fill the page. So 100% prevents any stretching.</li>
<li>Last system fill threshold - If the last system is larger than this percentage of the page width, the last system is stretched to fill the page width.</li>
</ul>
<p>Percentages in a threshold are percentages of the full page height or width. So a page fill threshold of 70% means stretch of things to fill the page, if it is more than 70% full.</p>
<h3>Style / Edit General Style / System</h3>
<p><img src="/sites/musescore.org/files/MuseScore1.1_EditStyle_System_cropped.png" alt="MuseScore1.1_EditStyle_System_cropped.png" title="MuseScore1.1_EditStyle_System_cropped.png" width="317" height="120" class="inline" /></p>
<h3>Style / Edit General Style / Score</h3>
<p><img src="/sites/musescore.org/files/MuseScore1.1_EditStyle_Score_cropped.png" alt="MuseScore1.1_EditStyle_Score_cropped.png" title="MuseScore1.1_EditStyle_Score_cropped.png" width="454" height="170" class="inline" /><br />
Here, you can cause the creation of multi-measure rests and hide empty staves. This can affect score size greatly.</p>
<h3>Style / Edit General Style / Measure</h3>
<p><img src="/sites/musescore.org/files/MuseScore1.1_EditStyle_Measure_cropped.png" alt="MuseScore1.1_EditStyle_Measure_cropped.png" title="MuseScore1.1_EditStyle_Measure_cropped.png" width="453" height="347" class="inline" /><br />
Set measure spacing as well as margins. The measure spacing is key to controlling number of measures per line. Changing the other settings would be unusual.</p>
<h3>Palette / Breaks &amp; Spacer</h3>
<p><img src="/sites/musescore.org/files/breaks-spacer-palette_2.png" alt="breaks-spacer-palette.png" title="breaks-spacer-palette.png" width="135" height="60" class="inline" /></p>
<p>Using this palette, you can choose where you want page breaks or line breaks. Some people do this first, and some save it until the end, after modifying the global settings.</p>
<p>To put a page break, drag and drop the page break symbol to a measure. To put a line break, drag and drop the line break symbol to the last measure you want on a line. If you want the same number of measures for several systems, select them and use <kbd><samp class="menu">Plugins</samp> → <samp class="menuitem">Break every X measures</samp></kbd>. If some measures end up alone on the line, reduce the scaling, or use <kbd><samp class="menu">Layout</samp> → <samp class="menuitem">Add More Stretch, Add Less Stretch</samp></kbd>.</p>
<p>See also <a href="http://musescore.org/en/handbook/break-or-spacer" title="Break or spacer">Break or spacer</a>.</p>
<h3>Style / Edit General Style / Sizes</h3>
<p><img src="/sites/musescore.org/files/MuseScore1.1_EditStyle_Sizes_cropped.png" alt="MuseScore1.1_EditStyle_Sizes_cropped.png" title="MuseScore1.1_EditStyle_Sizes_cropped.png" width="456" height="126" class="inline" /><br />
Set the proportional size of "small" and grace notes. Changing this would be unusual.</p>
<h3>See also</h3>
<ul>
<li>a video tutorial, part 1: <a href="http://musescore.org/en/node/10394" title="http://musescore.org/en/node/10394">http://musescore.org/en/node/10394</a></li>
<li>a video tutorial, part 2: <a href="http://www.youtube.com/watch?v=yqTgcBZI_T4" title="http://www.youtube.com/watch?v=yqTgcBZI_T4">http://www.youtube.com/watch?v=yqTgcBZI_T4</a></li>
<li>A post by Marc Sabatella: <a href="http://musescore.org/en/node/13138#comment-44678" title="http://musescore.org/en/node/13138#comment-44678">http://musescore.org/en/node/13138#comment-44678</a></li>
</ul>
  </div>
</div>
<div id="node-8508" class="section-2">
  <h1 class="book-heading">Advanced topics</h1>
    <div id="node-70" class="section-3">
  <h1 class="book-heading">Cross staff beaming</h1>
  <p>In piano scores, it is common to use both staves (bass and treble clef) to write a musical phrase.</p>
<p>This can be entered in MuseScore as follows:</p>
<p>Enter all notes in one staff:<br />
<img src="/sites/musescore.org/files/crossbeams1_0.png" alt="Beamed notes in upper staff" title="Beamed notes in upper staff" width="112" height="198" class="inline" /></p>
<p><kbd><kbd>Ctrl</kbd>+<kbd>Shift&uArr;</kbd>+<kbd>&darr;</kbd></kbd> moves the selected note or chord to the next staff (Mac: <kbd><kbd>⌘</kbd>+<kbd>Shift&uArr;</kbd>+<kbd>&darr;</kbd></kbd>.)<br />
<img src="/sites/musescore.org/files/crossbeams2_0.png" alt="Selected note moved to lower staff" title="Selected note moved to lower staff" width="106" height="159" class="inline" /></p>
<p>If you want to move the beam, double click the beam to show the handles. Drag the handles to adjust the layout.</p>
<p>See also: <a href="http://musescore.org/en/handbook/bar-line" title="Bar line">Bar line</a> for cross-staff bar lines (i.e. grand staff).</p>
  </div>
<div id="node-8512" class="section-3">
  <h1 class="book-heading">Part extraction</h1>
  <p>If you have written a full ensemble score, MuseScore can create sheet music that shows only the individual part for each musician in the ensemble.</p>
<p>In the current version of MuseScore, the process of extracting parts from a full score involves two main steps:</p>
<ol>
<li>Specifying which instruments are included in each part ("Defining the parts")</li>
<li>Actually creating the part</li>
</ol>
<h3 id="defining-parts">Defining the parts</h3>
<p>You can define the parts at any point after creating a new score. You only need to define the parts once for each score, but you can make changes if needed. The following instructions use a string quartet as an example, but the same principles apply for any other ensemble.</p>
<ol>
<li>From the main menu, choose <kbd><samp class="menu">File</samp> → <samp class="menuitem">Parts...</samp></kbd>
<p><img src="/sites/musescore.org/files/part_creation_1_0.png" alt="When you first open the Parts window, the only active button reads &quot;New&quot;" title="When you first open the Parts window, the only active button reads &quot;New&quot;" width="468" height="267" class="inline" /></li>
<li>In the Parts window click <kbd><samp>New</samp></kbd> to create a "part definition"
<p><img src="/sites/musescore.org/files/part_creation_2_0.png" alt="The Parts window now lists the new part in the left pane and shows the properties of the selected part in the right pane" title="The Parts window now lists the new part in the left pane and shows the properties of the selected part in the right pane" width="468" height="267" class="inline" /></li>
<li>In the right pane, type the words you want to use for the "File Name" and "Part Title"<br />
<dl>
<dt>File Name</dt>
<dd>The initial name used when you save the part on your computer (required)</dd>
<dt>Part Title</dt>
<dd>The text printed on the first page of your part, top left corner (optional)</dd>
</dl>
</li>
<li>Pick the instrument that you want to appear in your part by marking the relevant box in the right-hand pane. Usually, you only want one instrument per part, but sometimes you might need a part that includes more than one instrument (such as multiple percussion staves). MuseScore allows you to mark as many instruments per part as you need.
<p><img src="/sites/musescore.org/files/part_creation_3_0.png" alt="In the right pane of the Parts window, the properties for the first part are now complete" title="In the right pane of the Parts window, the properties for the first part are now complete" width="468" height="267" class="inline" /></li>
<li>Repeat steps two through four (above) for each part as needed
<p><img src="/sites/musescore.org/files/part_creation_4_0.png" alt="For our example, all four string parts are now listed in the left pane of the Parts window" title="For our example, all four string parts are now listed in the left pane of the Parts window" width="468" height="267" class="inline" /></li>
<li>Once you done, press <kbd><samp>Close</samp></kbd> to dismiss the Parts window</li>
</ol>
<p>You have now finished defining the parts. You do not need to do this again, unless you add or remove an instrument from your full score. In the current version of MuseScore, it is not possible to split a single staff (that contains two or more voices) into separate parts. So, any instrument that you want to print out a separate part for also needs to have its own staff in the full score.</p>
<h3 id="creating-parts">Creating the parts</h3>
<p>You can create your parts at any time to see how they look, but it is only necessary to do it after you have finished the full score and want to print out the individual parts: </p>
<ol>
<li>From the main menu, choose <kbd><samp class="menu">File</samp> → <samp class="menuitem">Parts...</samp></kbd> to return to the Parts window.</li>
<li>In the left pane, click to select a part that you want to create and view</li>
<li>Press <kbd><samp>Create Part</samp></kbd> and a new tab is added to the main MuseScore window containing your newly created part</li>
</ol>
<p>Repeat steps two and three for each part that you want to view or print. If you make any changes to the full score, you can re-create a part at any time in order to show the new changes in the part. </p>
<h3 id="saving">Saving</h3>
<p>In the current version of MuseScore, changes on a score are not linked to parts that have already been created, so any change you make on the score will also need to be made on the individual part either manually, or by recreating the part from the steps above. Also, parts are created as not-yet-saved files, so each part you just created needs to be saved as an individual file (via <kbd><samp class="menu">File</samp> → <samp class="menuitem">Save...</samp></kbd>) or it will be lost when closing the tab. You may wish to review it before saving to check for proper formatting.</p>
  </div>
<div id="node-10129" class="section-3">
  <h1 class="book-heading">Plugins</h1>
  <p>Plugins are small piece of code that add a particular feature to MuseScore. By adding a plugin, a new menu will be appended to the Plugins menu in MuseScore to accomplish a given action on the score or a part of it. Plugins are a way to let users with minimal programming skills add features to the software. To develop plugins, checkout the <a class="freelinking external" href="http://musescore.org/en/plugin-development">documentation</a>.</p>
<p>Some plugins are already delivered with MuseScore. You can find more plugins in the <a class="freelinking external" href="http://musescore.org/en/plugins">plugin repository</a>.</p>
<h3>Installation</h3>
<p>Note that some plugins may require the installation of other components (e.g. fonts...) to work. Check the plugin's documentation for more information.</p>
<p>Most plugins are provided as zip files, so download the plugin .zip file and uncompress it to one of the directories mentioned below.<br />
Some are provided as a .js file, download and place into one of these directories.<br />
Some are provided as a .txt file, download, place in one of these directories and rename it, so it ends with .js</p>
<h4>Windows</h4>
<p>MuseScore looks for plugins in <code>%ProgramFiles%\MuseScore\Plugins</code> (resp.  <code>%ProgramFiles(x86)%\MuseScore\Plugins</code> for the 64-bit versions) and in <code>%LOCALAPPDATA%\MusE\MuseScore\plugins</code> on Vista and Seven or <code>C:\Documents and Settings\USERNAME\Local Settings\Application Data\MusE\MuseScore\plugins</code> (adjusted to your language version) on XP.</p>
<h4>MacOS X</h4>
<p>On MacOS X, MuseScore looks for plugins in the MuseScore bundle in <code>/Applications/MuseScore.app/Contents/Resources/plugins</code> and in <code>~/Library/Application Support/MusE/MuseScore/plugins</code>. To be able to move files in the app bundle, right click (Control-click) on MuseScore.app and choose "Show package contents" to reveal the <code>Contents</code> directory. Be careful to use  <b><code>Contents/Resources/plugins</code></b> and not <code>Contents/plugins</code>.</p>
<h4>Linux</h4>
<p>In Linux, MuseScore looks for plugins in <code>/usr/share/mscore-1.2/plugins</code> and in <code>~/.local/share/data/MusE/MuseScore/plugins.</code></p>
<p>In any of the above cases, restart MuseScore to allow the new plugin(s) to load.<br />
In MuseScore 2.0+ the plugin then needs to get enabled in Menu -&gt; Edit -&gt; Preferences -&gt; Plugins, followed by another restart.</p>
<p>Prior to MuseScore 2.0 a score needs to be open for the Plugins menu to become available.</p>
<h3>Plugins installed by default</h3>
<h4 id="abcimport">ABC import</h4>
<p>This plugin used a web service (<a href="http://abc2xml.appspot.com/" title="http://abc2xml.appspot.com/">http://abc2xml.appspot.com/</a>) to open an <a class="freelinking external" href="http://en.wikipedia.org/wiki/ABC_notation">ABC file</a> in MuseScore. It supports ABC 1.6. The ABC file is sent to the web service, and a MusicXML file is returned. The plugin then displays it as a new score.<br />
An improved version is available from the <a class="freelinking external" href="http://musescore.org/project/abc">plugin repository</a>.</p>
<h4 id="breakeveryxmeasures">Break Every X Measures</h4>
<p>This plugin enters line breaks in the interval selected by you on the selected measures or, if no measures are selected, the entire score.</p>
<h4 id="break4">Break 4</h4>
<p>This is an older version of the <a href="print/book/export/html/51#breakeveryxmeasures">Break Every X Measures plugin</a> and was part of MuseScore 0.9.5. It may still be available in your installation.<br />
It inserts line breaks every 4 measures on the entire score.</p>
<h4 id="chordchart">Chord Chart</h4>
<p>This plugin creates a new score with all the chord names supported by MuseScore in Jazz style<br />
Since version 1.2 it is called "Create Chord Chart", found under "Plugins -&gt; Lead Sheet" and lets you select the chord style file to use.<br />
An improved version is available from the <a class="freelinking external" href="http://musescore.org/project/chordchart">plugin repository</a>.</p>
<h4 id="colornotes">Color Notes</h4>
<p>This plugin colors the note head of all notes in all staves and voices, according to the BoomWhackers convention. Each pitch has a different color. C and C# have a different color. C# and Db have the same color.<br />
To color all the notes in black, right click on a note head -&gt; Select  -&gt; All similar elements. Right-click again on the note head -&gt; Color -&gt; Pick black. You could also use the <a class="freelinking external" href="http://musescore.org/en/project/blacknotes">"Remove Notes Color" plugin</a> or the improved version from the <a class="freelinking external" href="http://musescore.org/project/colornotes">Plug-In Repository</a> for this.</p>
<h4 id="createscore">Create Score</h4>
<p>This plugin creates a new piano score with 4 quarters C D E F. It's a good start to learn how to make a new score and add notes from a plugin.</p>
<h4 id="fonttest">Font Test</h4>
<p>This plugin is identical to the <a href="print/book/export/html/51#notenames">Note Names plugin</a>, but uses a different font. It is not part of MuseScore anymore, but was part of 1.0 and as such might still be available in your installation.</p>
<h4 id="notenames">Note Names</h4>
<p>This plugin displays the English name of the top note of a chord in voice 1 in the top staff above the note head (as a <a class="freelinking external" href="http://musescore.org/en/handbook/text-style#text-types"">Staff Text</a>)<br />
An improved and extended version is available from the <a class="freelinking external" href="http://musescore.org/project/notenames">plugin repository</a></p>
<h4 id="removenotes">Remove Notes</h4>
<p>This plugin removes the given (bottom, middle, or top) note of all 3-note chords in voice 1 of the top staff.</p>
<h4 id="musescore.com">Save Online ...</h4>
<p>This Plugin is not in the Plugins menu, but in the File Menu (<kbd><samp class="menu">File</samp> → <samp class="menuitem">Save Online...</samp></kbd>). It is a plugin nonetheless and is used to send your Score to MuseScore.com, see <a href="http://musescore.org/en/handbook/share-scores-online" title="Share scores online">Share scores online</a> for documentation.</p>
<h4 id="temperament">Temperament Tuning</h4>
<p>This plugin was part of MuseScore 0.9.6 and is the newer version of the Tuning plugin (<a href="print/book/export/html/51#tuning">see below</a>). It later got moved to the <a class="freelinking external" href="http://musescore.org/project/scales">plugin repository</a>, so check its documentation there.</p>
<h4 id="test">Test</h4>
<p>This plugin is just a test and display a dialog box "Hello MuseScore". It's a good base to start learning plugin development. It is not part of MuseScore anymore, but was part of 1.0 and earlier and as such may still be available in your installation.<br />
As a remnant from having installed version 0.9.6.3 and earlier, you may also find one of the same name in the Create menu (<kbd><samp class="menu">Create</samp> → <samp class="menuitem">Test</samp></kbd>).</p>
<h4 id="tuning">Tuning</h4>
<p>This plugin was part of MuseScore 0.9.5 and is the older version of the Temperament Tuning plugin (<a href="print/book/export/html/51#temperament">see above</a>). It may still be available in your installation.<br />
It applies a user defined tuning to all notes of all chords of voices 1-3 (but not voice 4!) of all staves.</p>
  </div>
</div>
<div id="node-308" class="section-2">
  <h1 class="book-heading">Support</h1>
  <p>This chapter describes how to find help using MuseScore: the best places to look, the best way to ask a question on the forums, and tips for reporting a bug.</p>
  <div id="node-77" class="section-3">
  <h1 class="book-heading">How to report bug or ask for support</h1>
  <p>Before posting your support request <a href="http://musescore.org/en/forum">in the forum</a>:</p>
<ul>
<li>PLEASE, look for a solution in the <a href="http://musescore.org/en/handbook">user handbook</a>.</li>
<li>Use the <a href="http://musescore.org/en/search">search</a> function of the website to see if someone has already encountered the same problem on the <a href="http://musescore.org/en/forum/6">forums</a>. </li>
<li>If you are posting an error report, first try to reproduce the problem with <a href="http://musescore.org/en/download">the latest prerelease</a>. You may also view the <a href="http://mscore.svn.sourceforge.net/viewvc/mscore/trunk/mscore/ChangeLog">version history</a> to check whether it has been fixed already.</li>
</ul>
<p>When posting your request for support or bug report, please include as much of the following information as you know:</p>
<ul>
<li>Version of MuseScore you are using (e.g. version 1.0) or the revision number if you are using a prerelease (e.g. revision 3996)</li>
<li>Operating system you are running it on (e.g. Windows Vista, Windows 7, Mac OS 10.6 or Ubuntu 10.10)</li>
<li>If you are reporting a bug, please describe the precise steps that lead to the problem (where do you click, what keys do you press, what do you see, etc.).  If you are not able to reproduce the problem with the steps, it is probably not worth reporting it as the developers will not be able to reproduce it (and solve) either.</li>
<li>Limit your reports in the issue tracker to one bug per report</li>
<li>Remember that the goal of a bug report is not only to show the bug but to allow others to reproduce the bug easily</li>
</ul>
  </div>
<div id="node-7021" class="section-3">
  <h1 class="book-heading">Known incompatibilities</h1>
  <h3>Hardware incompatibilities</h3>
<p>The following software is known to crash MuseScore on startup : </p>
<ul>
<li>Samson USB Microphone, driver name "Samson ASIO Driver", samsonasiodriver.dll.  <a href="http://musescore.org/en/node/6849">More info</a></li>
<li>Digidesign MME Refresh Service. <a href="http://musescore.org/en/node/6529">More info</a></li>
<li>Windows XP SP3 + Realtek Azalia Audio Driver. <a href="http://musescore.org/en/node/9132#comment-48696">More info</a></li>
<li>Wacom tablet. <a href="http://musescore.org/en/node/7600#comment-54064">More info</a></li>
</ul>
<h3>Software incompatibilities</h3>
<ul>
<li>Maple virtual cable is <a href="http://musescore.org/node/1335">known to prevent MuseScore</a> from closing properly.</li>
<li>KDE (Linux) window settings can cause the whole window to move when dragging a note. <a class="freelinking external" href="http://musescore.org/en/node/8318#comment-27683">Changing the window settings of the operating system</a> avoids the problem.</li>
</ul>
<h4>AVG Internet Security hangs MuseScore</h4>
<p>MuseScore requires access to your internet connection with AVG. MuseScore doesn't need an internet connection to function, but if AVG blocks it, MuseScore hangs.</p>
<p>If AVG prompts you, <b>Allow</b> MuseScore and check "Save my answer as a permanent rule and do not ask me next time."</p>
<p>If it doesn't prompt you anymore,</p>
<ol>
<li>Open the AVG user interface (right click on the AVG icon, close to your clock -&gt; Open AVG User Interface</li>
<li>Click on <i>Firewall</i></li>
<li>Click <i>Advanced Settings</i></li>
<li>Click <i>Applications</i></li>
<li>Find MSCORE.EXE in the list and double click it</li>
<li>Change <i>Application Action</i> to <i><b>Allow for All</b></i></li>
</ol>
<h4>Font problem on Mac OS X</h4>
<p>MuseScore is known to display notes as square when some fonts are damaged on MacOS X.<br />
To troubleshoot this issue :</p>
<ol>
<li>On your Mac, go to Applications -&gt; Font Book</li>
<li>Select a font and press <kbd><kbd>⌘</kbd>+<kbd>A</kbd></kbd> to select them all</li>
<li>Go to File -&gt; Validate Fonts</li>
<li>If any font is reported as damaged or with minor problems, select it and delete it</li>
<li>Restart MuseScore if necessary</li>
</ol>
<p>In <a class="freelinking external" href="http://musescore.org/en/node/13772#comment-53876">this forum article</a>, a user believes to have found the font "Adobe Jenson Pro (ajenson)" to be the culprit, regardless of not being reported as broken or problematic as per the above validation, and solved the problem by deleting that font, so this is worth checking too.</p>
<h4>Font problem on Linux</h4>
<p>If the default desktop environment application font is set to bold, MuseScore will not display the notes properly.<br />
To troubleshoot this issue (gnome 2.*/MATE users):</p>
<ol>
<li> Right-click on your desktop and select Change Desktop background</li>
<li> Click on Fonts tab</li>
<li> Set Regular style for Application font </li>
<li> Restart MuseScore if necessary</li>
</ol>
<p>For GNOME 3/SHELL users</p>
<ol>
<li> Open the shell and open "Advanced Settings"</li>
<li> Click on the Fonts option in the list</li>
<li> Set the default font to something non-bold </li>
<li> Restart MuseScore if necessary</li>
</ol>
<h4 id="save-as-blank-linux">Save As dialog empty on Linux</h4>
<p>Some users reported that the Save As dialog is empty on Debian 6.0 and Lubuntu 10.10.<br />
To troubleshoot this issue :</p>
<ol>
<li>Type the following in a terminal<br />
<code>which mscore</code></li>
<li>The command will answer with the path of mscore. Edit it with your prefered text editor and add the following line at the beginning<br />
<code>export QT_NO_GLIB=1</code></li>
<ol>
<p>Launch MuseScore and the problem should be solved.</ol>
</ol>
  </div>
<div id="node-2575" class="section-3">
  <h1 class="book-heading">Revert to factory settings</h1>
  <p>Recent versions of MuseScore have the option to revert back to the standard built-in presets or "factory-settings". This can be helpful if your settings are corrupted. This is not a normal occurrence, so it is best to consult the forums first, as there maybe a way to solve your problem without resetting everything.</p>
<p><strong>Warning:</strong> reverting to "factory settings" removes any changes you have made to the preferences, palettes, or window settings. </p>
<h3>Instructions for Windows</h3>
<ol>
<li>If you have MuseScore open, you need to close it first (<kbd><samp class="menu">File</samp> → <samp class="menuitem">Quit</samp></kbd>)</li>
<li>Type <kbd><kbd>Windows key</kbd>+<kbd>R</kbd></kbd> to open the Run dialog. (The <a class="freelinking external" href="http://en.wikipedia.org/wiki/Windows_key">Windows key</a> is the one with the logo for Microsoft Windows.)</li>
<li>Click <kbd><samp>Browse...</samp></kbd></li>
<li>Look for mscore.exe on your computer. The location may vary depending on your installation, but it is probably something similar to My Computer &gt; Local Disk &gt; Program Files &gt; MuseScore &gt; bin &gt; mscore.exe</li>
<li>Click <kbd><samp>Open</samp></kbd> to leave the Browse dialog and return to the Run dialog. The following text (or something similar) should display in the Run dialog: <code>"C:\Program Files\MuseScore\bin\mscore.exe"</code>. (For 64-bit Windows, the location is <code>"C:\Program Files (x86)\MuseScore\bin\mscore.exe"</code> ).</li>
<li>Click after the quote and add a space followed by a hyphen and a capital F: <kbd> -F</kbd></li>
<li>Press <kbd><samp>OK</samp></kbd>
</li>
</ol>
<p>After a few seconds, MuseScore should start and all the settings reverted to "factory settings".</p>
<p>For advanced users, the main preference file is located at:</p>
<ul>
<li>Windows Vista or later: <code>C:\Users\&lt;USERNAME&gt;\AppData\Roaming\MusE\MuseScore.ini</code></li>
<li>Windows XP or earlier: <code>C:\Documents and Settings\USERNAME\Application Data\MusE\MuseScore.ini</code></li>
</ul>
<p>The other preferences (palette, session...) are in:</p>
<ul>
<li>Windows Vista or later: <code>C:\Users\&lt;USERNAME&gt;\AppData\Local\MusE\MuseScore\</code></li>
<li>Windows XP or earlier: <code>C:\Documents and Settings\USERNAME\Local Settings\Application Data\MusE\</code></li>
</ul>
<h3>Instructions for Mac OS X</h3>
<ol>
<li>If you have MuseScore open, you need to quit the application first (<kbd><samp class="menu">File</samp> → <samp class="menuitem">Quit</samp></kbd>)</li>
<li>From the Open Applications/Utilities/Terminal and a Terminal session window should appear</li>
<li>Type, (or copy/paste) the following command into your terminal line (include the '/' at the front):
<p><code>/Applications/MuseScore.app/Contents/MacOS/mscore -F</code></li>
</ol>
<p>This resets all MuseScore preferences to factory settings and immediately launches the MuseScore application. You can now quit Terminal, and continue using MuseScore.</p>
<p>For advanced users, the main preference file is located in <code>~/.config/muse.org/MuseScore.ini</code>.<br />
The other preferences (palette, session...) are in <code>~/Library/Application Support/MusE/MuseScore/</code></p>
<h3>Instructions for Linux (please adapt for flavors other than Ubuntu)</h3>
<ol>
<li>If you have MuseScore open, you need to quit the application first (<kbd><samp class="menu">File</samp> → <samp class="menuitem">Quit</samp></kbd>)</li>
<li>From the Ubuntu main menu, choose <kbd><samp class="menu">Applications</samp> → <samp class="submenu">Accessories</samp> → <samp class="menuitem">Terminal</samp></kbd>. A Terminal session window should appear</li>
<li>Type, (or just copy/paste) the following command into your terminal line:
<p><code>mscore -F</code></li>
</ol>
<p>This resets all MuseScore preferences to factory settings and immediately launches the MuseScore application. You can now quit Terminal, and continue using MuseScore.</p>
<p>For advanced users, the main MuseScore preference file is located at <code>~/.config/MusE/MuseScore.ini</code><br />
The other preferences (palette, session...) are in <code>~/.local/share/data/MusE/MuseScore/</code></p>
  </div>
</div>
<div id="node-6940" class="section-2">
  <h1 class="book-heading">Appendix</h1>
    <div id="node-18570" class="section-3">
  <h1 class="book-heading">Glossary</h1>
  <p><b><i>The glossary is a work in progress, please help if you can. You can discuss about this page on the <a href="http://musescore.org/en/forum/8">documentation forum</a></i></b><br />
The list below is a glossary of frequently used terms in MuseScore as well as their meaning. Translators of this page, should be adding the translation for each term.</p>
<dl>
<dt id="acciaccatura">Acciaccatura</dt>
<dd>A short grace note. See &rarr;<a class="freelinking external" href="http://musescore.org/en/handbook/glossary#grace_note">grace note</a></dd>
<dt id="accidental"><a class="freelinking external" href="http://musescore.org/en/handbook/accidental">Accidental</a></dt>
<dd>Accidentals appear in front of notes and shift their pitch.<br />
Accidentals are used to alter the pitch of a note within a piece. The same symbols as in the &rarr;<a class="freelinking external" href="http://musescore.org/en/handbook/glossary#key_signature">key signature</a> are used, but they are placed before a particular note. Accidentals are for example sharps, flats and naturals. Accidentals affect all notes on the same staff position for the remainder of the measure in which they occur, but they can be canceled by another accidental.</dd>
<dt id="anacrusis">Anacrusis (Pickup Measure)</dt>
<dd>Incomplete first measure  of a piece or a section of a piece of music.<br />
See &rarr;<a class="freelinking external" href="http://musescore.org/en/handbook/create-new-score">Create new score, Time Signature...</a></dd>
<dt id="appoggiatura">Appoggiatura</dt>
<dd>A long grace note. See &rarr;<a class="freelinking external" href="http://musescore.org/en/handbook/glossary#grace_note">grace note</a></dd>
<dt id="barlines"><a class="freelinking external" href="http://musescore.org/en/handbook/bar-line">Bar Lines</a></dt>
<dd>Vertical line through a staff or the system that separates measures .</dd>
<dt id="beam"><a class="freelinking external" href="http://musescore.org/en/handbook/beam">Beam</a></dt>
<dd>Notes with a duration of an eighth or smaller either carry a flag or a beam. Beams are used for grouping notes.</dd>
<dt id="bpm">BPM</dt>
<dd>See  &rarr;<a class="freelinking external" href="http://musescore.org/en/handbook/glossary#metronome_mark">metronome mark</a></dd>
<dt id="breve">Breve</dt>
<dd>A <strong>double whole note</strong> or <strong>breve</strong> is a note that has the duration of two whole notes.</dd>
<dt id="chord">Chord</dt>
<dd>The minimal definition of a chord is a minimum of two different notes played together. Chords are based on the choices made by a composer between harmonics of one, two or three (and more) fundamental sounds. Ex. In the chord of C, G is the second harmonic, E the fourth of the fundamental C. Now in C7, the B flat is the 6th harmonic of C and in C Maj7 B is the second harmonic of E and the fourth harmonic of G...</dd>
<dt id="clef"><a class="freelinking external" href="http://musescore.org/en/handbook/clef">Clef</a></dt>
<dd>Sign at the beginning of the Staff, used to tell which are the musical notes <strong>on</strong> the lines and <strong>between</strong> the lines.<br />
There are 2 F Clefs, 4 C Clefs and 2 G Clefs: F third, <strong>F</strong> fourth, C first, C second, C third, C fourth,  G first, <strong>G</strong> second (known as<i> treble key</i> too).<br />
G first and F fourth are equivalent.<br />
Clefs are very useful for <i>transposition</i>.</dd>
<dt id="crotchet">Crotchet</dt>
<dd>A <strong>crotchet</strong> is the British English term for what is called a <strong>quarter note</strong> in American English. It's a quarter of the duration of a whole note (semibreve).</dd>
<dt id="demisemiquaver">Demisemiquaver</dt>
<dd>Thirty-second note</dd>
<dt id="duplet">Duplet (engl.)</dt>
<dd>See &rarr;<a class="freelinking external" href="http://musescore.org/en/handbook/glossary#tuplet">tuplet</a></dd>
<dt id="eighth_note">Eighth note</dt>
<dd>A note whose duration is an eighth of a whole note (semibreve).  Same as British <strong>quaver</strong>.</dd>
<dt id="flag">Flag</dt>
<dd>See &rarr;<a class="freelinking external" href="http://musescore.org/en/handbook/glossary#beam">beam</a>.</dd>
<dt id="flat"><a href="http://musescore.org/en/handbook/accidental" title="accidental">Flat</a></dt>
<dd>Sign that indicates that the pitch of a note has to be lowered one semitone.</dd>
<dt id="grace_note"><a class="freelinking external" href="http://musescore.org/en/handbook/grace-note">Grace note</a></dt>
<dd>Grace notes appear as small notes in front of a normal-sized main note. A short grace note (acciaccatura) has a stroke through the stem; a long grace note (appoggiatura) does not.</dd>
<dt id="half_note">Half Note</dt>
<dd>A note whose duration is half of a whole note (semibreve).  Same as British <strong>minim</strong>.</p>
<dt id="hemidemisemiquaver">Hemidemisemiquaver</dt>
<dd>Sixty-fourth note</dd>
<dt id="key_signature"><a class="freelinking external" href="http://musescore.org/en/handbook/key-signature">Key Signature</a></dt>
<dd>Set of sharps or flats at the beginning of the staves. It gives an idea about the tonality and avoids repeating those signs all along the staff.<br />
A key signature with B flat means F major or  D minor tonality.</dd>
<dt id="koron">Koron</dt>
<dd>An Iranian <a class="freelinking external" href="http://musescore.org/en/handbook/glossary#accidental">accidental</a> which means lower in pitch and it lowers a note by a quarter tone (In comparison to the  <a class="freelinking external" href="http://musescore.org/en/handbook/glossary#flat">flat</a> which lowers a note by a semitone). It is possible to use this accidental in a <a class="freelinking external" href="http://musescore.org/en/handbook/glossary#key_signature">key signature</a>.<br />
See also &rarr;<a class="freelinking external" href="http://musescore.org/en/handbook/glossary#sori">sori</a>.</dd>
<dt id="longa">Longa</dt>
<dd>A <strong>longa</strong> is a <strong>quadruple whole note</strong>.</dd>
<dt id="metronome_mark">Metronome mark</dt>
<dd>Metronome marks are usually given by a note length equaling a certain playback speed in bpm. Beats per minute (BPM) is the unit for measuring tempo. In MuseScore, metronome marks are used in <a href="http://musescore.org/en/handbook/tempo" title="tempo">tempo texts</a>.</dd>
<dt id="minim">Minim</dt>
<dd>A <strong>minim</strong> is the British term for a <strong>half note</strong>. It has half the duration of a whole note (semibreve).</dd>
<dt id="becarre"><a href="http://musescore.org/en/handbook/accidental" title="accidental">Natural</a></dt>
<dd>A natural is a sign that cancels a previous alteration on notes of the same pitch.<br />
</dd>
<dt id="part">Part</dt>
<dd>Music to be played or sang by one or a group of musicians. In a string quartet, 1st part = Violin 1, 2nd part = Violin 2, 3rd part = Alto, 4th part = Cello.</dd>
<dt id="quaver">Quaver</dt>
<dd>The British <strong>quaver</strong> is what is called in American <strong>eighth note</strong>. It has an eighth the duration of a whole note.</dd>
<dt id="quadruplet">Quadruplet</dt>
<dd>See &rarr;<a class="freelinking external" href="http://musescore.org/en/handbook/glossary#tuplet">tuplet</a></dd>
<dt id="quintuplet">Quintuplet</dt>
<dd>See &rarr;<a class="freelinking external" href="http://musescore.org/en/handbook/glossary#tuplet">tuplet</a></dd>
<dt id="rests">Rests</dt>
<dd>Interval of silence of a specified duration. </dd>
<dt id="semibreve">Semibreve</dt>
<dd>A <strong>semibreve</strong> is the British term for a <strong>whole note</strong>. It lasts a whole measure in 4/4 time.</dd>
<dt id="semiquaver">Semiquaver</dt>
<dd>Sixteenth note</dd>
<dt id="semihemidemisemiquaver">Semihemidemisemiquaver (Quasihemidemisemiquaver)</dt>
<dd>Hundred twenty-eighth note.</dd>
<dt id="sextuplet">Sextuplet</dt>
<dd>See &rarr;<a class="freelinking external" href="http://musescore.org/en/handbook/glossary#tuplet">tuplet</a></dd>
<dt id="sharp">Sharp</dt>
<dd>Sign that indicates that the pitch of a note has to be raised one semitone.</dd>
<dt id="slur"><a class="freelinking external" href="http://musescore.org/en/handbook/slur">Slur</a></dt>
<dd>Tie and Slur are two words used to describe a curved line between two or more notes. <strong>Slur</strong> means that the notes will be played without attack ( <i>legato</i> ). <strong>Tie</strong>  is used  between two or three ( rare ) of the same notes to indicate its duration:<br />
Quarter note + Tie + Quarter note = Half note,<br />
Quarter note + Tie + Eighth note = Dotted Quarter note<br />
Quarter note + Tie + Eighth note + Tie + 16th note = Double Dotted Quarter note</dd>
<dt id="sori">Sori</dt>
<dd>An Iranian <a class="freelinking external" href="http://musescore.org/en/handbook/glossary#accidental">accidental</a> which means higher in pitch and it raises a note by a quarter tone (In comparison to the  <a class="freelinking external" href="http://musescore.org/en/handbook/glossary#sharp">sharp</a> which raises a note by a semitone). It is possible to use this accidental in a <a class="freelinking external" href="http://musescore.org/en/handbook/glossary#key_signature">key signature</a>.<br />
See &rarr;<a class="freelinking external" href="http://musescore.org/en/handbook/glossary#koron">koron</a>.</dd>
<dt id="staff">Staff (Staves)</dt>
<dd>Group of one to five horizontal lines used to lay on musical signs. In ancient music notation (before 11th century) the staff may have any number of lines.</dd>
<dt id="system">System</dt>
<dd>System: Set of staves to be read simultaneously in a score.<br />
Operating System (OS): Set of programs written in the aim to set up a computer from a lot of electronic components. Popular OS are Microsoft Windows, Mac OS X, <strong>and</strong> GNU/Linux.</dd>
<dt id="tie"><a class="freelinking external" href="http://musescore.org/en/handbook/tie">Tie</a></dt>
<dd>See &rarr;<a class="freelinking external" href="http://musescore.org/en/handbook/glossary#slur">slur</a>.</dd>
<dt id="triplet">Triplet (engl.)</dt>
<dd>See &rarr;<a class="freelinking external" href="http://musescore.org/en/handbook/glossary#tuplet">tuplet</a>.</dd>
<dt id="transposition">Transposition</dt>
<dd>A tune can be played in any tonality.  There are many reasons to change the tonality of a score:</p>
<ul>
<li>The tune is too low or too high for a singer.</li>
<li>The score is written for a C instrument and has to be played by a B Flat one.</li>
<li>The score is written for an orchestra and you want to imagine what the horn, the flute and the clarinet are playing.</li>
<li>A darker or a more brilliant sound is desired.</li>
</ul>
<ul>- In the first case all the orchestra will have to transpose, which is very difficult without professional musicians.  Musescore can do it very easily for you.<br />
- In the second case the musician must play D when a C is written. If the score is written with a G 2nd Clef, he'll have to think that the staff begins with a C 3rd Clef.<br />
- In the third case the conductor has to transpose all the staves which are not written for C instruments...<br />
- In all cases the key signature must be mentally changed.</p>
<ul>On some instruments (Horns and Tubas for instance) the musicians transpose using alternative fingerings.</ul>
</ul>
</dd>
<dt id="tuplet"><a class="freelinking external" href="http://musescore.org/en/handbook/tuplet">Tuplet</a></dt>
<dd>A tuplet divides it's next higher note value by a number of notes other than given by the time signature. For example a triplet divides the next higher note value into three parts, rather than two. Tuplets may be: triplets, duplets, quintuplet, and other.</dd>
<dt id="velocity">Velocity</dt>
<dd>The velocity property of a note controls how loudly the note is played. This usage of the term comes from MIDI syntheiszers.  On a keyboard instrument, it is the speed with which a key is pressed that controls its volume. The usual scale for velocity is 0 (silent) to 127 (maximum).</dd>
<dt id="voice"><a class="freelinking external" href="http://musescore.org/en/handbook/voices">Voice</a></dt>
<dd>Polyphonic instruments like Keyboards, Violins, or Drums need to write notes of different duration at the same time on the same Staff. To write such things each horizontal succession of notes has to be written on the staff independently.</dd>
<dt id="volta"><a class="freelinking external" href="http://musescore.org/en/handbook/volta">Volta</a></dt>
<dd>In a repeated section of music, it is common for the last few measures of the section to differ. Markings called voltas are used to indicate how the section is to be ended each time. These markings are often referred to simply as <strong>endings</strong>.</dd>
</dd>
</dl>
  </div>
<div id="node-6941" class="section-3">
  <h1 class="book-heading">Keyboard shortcuts</h1>
  <p>Most keyboard shortcuts can be customized via <kbd><samp class="menu">Edit</samp> → <samp class="menuitem">Preferences...</samp> → <samp class="tab">Shortcuts</samp></kbd> tab (Mac: <kbd><samp class="menu">MuseScore</samp> → <samp class="menuitem">Preferences...</samp> → <samp class="tab">Shortcuts</samp></kbd> tab). Below is a list of some of the initial shortcut settings.</p>
<h3>Navigation</h3>
<p>Beginning of score: <kbd><kbd>Home</kbd></kbd><br />
Last page of score: <kbd><kbd>End</kbd></kbd></p>
<p>Next score: <kbd><kbd>Ctrl</kbd>+<kbd>Tab</kbd></kbd><br />
Previous score: <kbd><kbd>Shift&uArr;</kbd>+<kbd>Ctrl</kbd>+<kbd>Tab</kbd></kbd></p>
<p>Next page: <kbd><kbd>Pg Dn</kbd></kbd><br />
Previous page: <kbd><kbd>Pg Up</kbd></kbd></p>
<p>Next measure: <kbd><kbd>Ctrl</kbd>+<kbd>&rarr;</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>&rarr;</kbd></kbd>)<br />
Previous measure: <kbd><kbd>Ctrl</kbd>+<kbd>&larr;</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>&larr;</kbd></kbd>)</p>
<p>Next note: <kbd><kbd>&rarr;</kbd></kbd><br />
Previous note: <kbd><kbd>&larr;</kbd></kbd></p>
<p>Note below (within a chord or on lower staff): <kbd><kbd>Alt</kbd>+<kbd>&darr;</kbd></kbd><br />
Note above (within a chord or on higher staff): <kbd><kbd>Alt</kbd>+<kbd>&uarr;</kbd></kbd></p>
<p>Top note in chord: <kbd><kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>&uarr;</kbd></kbd> (Ubuntu uses this shortcut for Workspaces instead)<br />
Bottom note in chord: <kbd><kbd>Ctrl</kbd>+<kbd>Alt</kbd>+<kbd>&darr;</kbd></kbd> (Ubuntu uses this shortcut for Workspaces instead)</p>
<h3>Note entry</h3>
<p>Begin note entry mode: <kbd><kbd>N</kbd></kbd><br />
Leave note entry mode: <kbd><kbd>N</kbd></kbd> or <kbd><kbd>Esc</kbd></kbd></p>
<h4>Duration</h4>
<p><kbd><kbd>1</kbd></kbd> ... <kbd><kbd>9</kbd></kbd> selects a duration. <i>see also <a href="http://musescore.org/en/handbook/note-entry" title="note entry">note entry</a>.</i></p>
<p>Half duration of previous note: <kbd><kbd>Q</kbd></kbd><br />
Double duration of previous note: <kbd><kbd>W</kbd></kbd></p>
<h4>Voices</h4>
<p><a href="http://musescore.org/en/handbook/voices" title="Voices">Voice</a> 1: <kbd><kbd>Ctrl</kbd>+<kbd>I</kbd> <kbd>Ctrl</kbd>+<kbd>1</kbd></kbd> (Mac <kbd><kbd>⌘</kbd>+<kbd>I</kbd></kbd> <kbd><kbd>⌘</kbd>+<kbd>1</kbd></kbd>)<br />
Voice 2: <kbd><kbd>Ctrl</kbd>+<kbd>I</kbd> <kbd>Ctrl</kbd>+<kbd>2</kbd></kbd> (Mac <kbd><kbd>⌘</kbd>+<kbd>I</kbd></kbd> <kbd><kbd>⌘</kbd>+<kbd>2</kbd></kbd>)<br />
Voice 3: <kbd><kbd>Ctrl</kbd>+<kbd>I</kbd> <kbd>Ctrl</kbd>+<kbd>3</kbd></kbd> (Mac <kbd><kbd>⌘</kbd>+<kbd>I</kbd></kbd> <kbd><kbd>⌘</kbd>+<kbd>3</kbd></kbd>)<br />
Voice 4: <kbd><kbd>Ctrl</kbd>+<kbd>I</kbd> <kbd>Ctrl</kbd>+<kbd>4</kbd></kbd> (Mac <kbd><kbd>⌘</kbd>+<kbd>I</kbd></kbd> <kbd><kbd>⌘</kbd>+<kbd>4</kbd></kbd>)</p>
<h4>Pitch</h4>
<p><i>Pitches can be entered by letter name, or MIDI keyboard. See <a href="http://musescore.org/en/handbook/note-entry" title="note entry">note entry</a> for full details.</i></p>
<p>Repeat previous note: <kbd><kbd>R</kbd></kbd></p>
<p>Raise pitch by octave: <kbd><kbd>Ctrl</kbd>+<kbd>&uarr;</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>&uarr;</kbd></kbd>)<br />
Lower pitch by octave: <kbd><kbd>Ctrl</kbd>+<kbd>&darr;</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>&darr;</kbd></kbd>)</p>
<p>Raise pitch by semi-tone: <kbd><kbd>&uarr;</kbd></kbd><br />
Lower pitch by semi-tone: <kbd><kbd>&darr;</kbd></kbd></p>
<p>Add sharp to note: (undefined due to conflicts with zooming)<br />
Add flat to note: <kbd><kbd>-</kbd></kbd></p>
<p>Rest: <kbd><kbd>0</kbd></kbd> (zero)</p>
<h4>Interval</h4>
<p>Add interval above current note: <kbd><kbd>Alt</kbd>+[Number]</kbd><br />
Add interval below current note: <kbd><kbd>Shift&uArr;</kbd>+[Number]</kbd></p>
<h3>Direction</h3>
<p>Flip direction (stem, slur, tie, tuplet bracket, etc): <kbd><kbd>X</kbd></kbd><br />
Mirror note head: <kbd><kbd>Shift&uArr;</kbd>+<kbd>X</kbd></kbd></p>
<h3>Articulations</h3>
<p><a href="http://musescore.org/en/handbook/tie" title="Tie">Tie</a>: <kbd><kbd>+</kbd></kbd><br />
<a href="http://musescore.org/en/handbook/slur" title="Slur">Slur</a>: <kbd><kbd>S</kbd></kbd><br />
Staccato: <kbd><kbd>Shift&uArr;</kbd>+<kbd>.</kbd></kbd><br />
Crescendo: <kbd><kbd>H</kbd></kbd><br />
Decrescendo: <kbd><kbd>Shift&uArr;</kbd>+<kbd>H</kbd></kbd></p>
<h3>Lyric entry</h3>
<p>Previous lyric syllable: <kbd><kbd>Shift&uArr;</kbd>+<kbd>Space</kbd></kbd> (In MuseScore 1.1 and earlier: <kbd><kbd>Ctrl</kbd>+<kbd>&larr;</kbd></kbd>)<br />
Next lyric syllable: if the current and the next sylables are separated by a '-': <kbd><kbd>-</kbd></kbd>, else <kbd><kbd>Space</kbd></kbd> (In MuseScore 1.1 and earlier in either case: <kbd><kbd>Ctrl</kbd>+<kbd>&rarr;</kbd></kbd>)</p>
<p>Move lyric syllable left by 1sp: <kbd><kbd>&larr;</kbd></kbd><br />
Move lyric syllable right by 1sp: <kbd><kbd>&rarr;</kbd></kbd><br />
Move lyric syllable left by 0.1sp: <kbd><kbd>Ctrl</kbd>+<kbd>&larr;</kbd></kbd><br />
Move lyric syllable right by 0.1sp: <kbd><kbd>Ctrl</kbd>+<kbd>&rarr;</kbd></kbd><br />
Move lyric syllable left by 0.01sp: <kbd><kbd>Alt</kbd>+<kbd>&larr;</kbd></kbd><br />
Move lyric syllable right by 0.01sp: <kbd><kbd>Alt</kbd>+<kbd>&rarr;</kbd></kbd></p>
<p>Up to previous stanza: <kbd><kbd>Ctrl</kbd>+<kbd>&uarr;</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>&uarr;</kbd></kbd>)<br />
Down to next stanza: <kbd><kbd>Ctrl</kbd>+<kbd>&darr;</kbd></kbd> (Mac: <kbd><kbd>⌘</kbd>+<kbd>&darr;</kbd></kbd>)</p>
<p><i>For more lyric shortcuts, see <a href="http://musescore.org/en/handbook/lyrics" title="lyrics">lyrics</a></i></p>
<h3>Display</h3>
<p>Navigator: <kbd><kbd>F12</kbd></kbd> (Mac: <kbd><kbd>⌥</kbd>+<kbd>⌘</kbd>+<kbd>N</kbd></kbd>)<br />
Play Panel: <kbd><kbd>F11</kbd></kbd> (Mac: <kbd><kbd>⌥</kbd>+<kbd>⌘</kbd>+<kbd>P</kbd></kbd>)<br />
Palette: <kbd><kbd>F9</kbd></kbd> (Mac: <kbd><kbd>⌥</kbd>+<kbd>⌘</kbd>+<kbd>K</kbd></kbd>)<br />
Mixer: <kbd><kbd>F10</kbd></kbd> (Mac: <kbd><kbd>M</kbd></kbd>)</p>
  </div>
</div>
<div id="node-15617" class="section-2">
  <h1 class="book-heading">New features for MuseScore 2.0</h1>
  <p>The following pages documents features in an upcoming version of MuseScore. These features are only available for testing in the latest <a class="freelinking external" href="http://musescore.org/en/handbook/comparison-stable-prerelease-and-nightly-builds">nightly builds</a>. These pages should not be translated yet.</p>
  <div id="node-14936" class="section-3">
  <h1 class="book-heading">Custom Palettes</h1>
  <p><em>The following page documents features in an upcoming version of MuseScore. These features are only available for testing in the latest <a class="freelinking external" href="http://musescore.org/en/handbook/comparison-stable-prerelease-and-nightly-builds">nightly builds</a>. This page should not be translated yet.</em></p>
<p>Palettes are highly customizable. You can create/delete single palettes and populate them with arbitrary elements from the master palette (todo: link) or from elements of a score. A set of palettes are called a "profile". You can maintain several profiles (todo: link) and easily switch between them.</p>
<h3>Palette Menu</h3>
<p>Pressing and holding a palette title with the left mouse button shows the palette menu.<br />
The menu offers the following operations:</p>
<ul>
<li> <b>Palette Properties</b><br />
              Clicking on this entry opens the palette property dialog.<img src="/sites/musescore.org/files/paletteCreate.png" alt="paletteCreate.png" title="paletteCreate.png" width="382" height="281" class="inline" />
</li>
<li> <b>Insert New Palette</b><br />
              Creates a new empty palette with can next filled with elements from the master palette, other palettes or<br />
               with elements from the score.
</li>
<li> <b>Move Palette Up</b><br />
              Moves the palette up in the list of palettes.
</li>
<li> <b>Move Palette Down</b><br />
              Moves the palette down in the list of palettes.
</li>
<li> <b>Enable Editing</b><br />
              Tag this to change the content of a palette. To avoid accidental changes editing is off by default.
</li>
<li> <b>Save Palette</b><br />
              Opens a file dialog and saves the palette into a file.
</li>
<li> <b>Load Palette</b><br />
               Opens a file dialog and reads a palette from file.
</li>
<li> <b>Delete Palette</b>
</li>
</ul>
<p>Clicking below the list of palettes with the mouse right button opens the palette context menu. The menu allows you to change the palette behaviour and to reset all palettes to default.</p>
<ul>
<li> <b>Single Palette Mode:</b> If tagged allows only one palette to be open.
</li>
<li> <b>Reset to factory defaults:</b> Replaces all palettes with the default version. <b>Warning:</b> this may destroy<br />
all changes you make to the current set of palettes.
</li>
</ul>
  </div>
<div id="node-15183" class="section-3">
  <h1 class="book-heading">Figured Bass</h1>
  <p><em>The following page documents features in an upcoming version of MuseScore. These features are only available for testing in the latest <a class="freelinking external" href="http://musescore.org/en/handbook/comparison-stable-prerelease-and-nightly-builds">nightly builds</a>. This page should not be translated yet.</em></p>
<h3>Adding a new figured bass indication</h3>
<ol>
<li>Select the note to which the figured bass applies.</li>
<li>Press the <i>Figured Bass</i> shortcut (default <kbd><kbd>Ctrl</kbd>+<kbd>G</kbd></kbd>; can be changed in Preferences).</li>
<li>Enter the text in the editor 'blue box' as required (see below).</li>
<li>Press <kbd><kbd>Space</kbd></kbd> to move to the next note ready for another figured bass indication OR click outside the editor box to exit it.</li>
</ol>
<p><img src="/sites/musescore.org/files/trunk_fb_sample_1_0.png" alt="Example 1" title="Example 1" width="500" height="230" class="inline" /></p>
<p>With <kbd><kbd>Space</kbd></kbd>, the editor advances to the next note of the staff to which figured bass is being added. To move to a point in between or to extend a figured bass group for a longer duration, see below <i>Group Duration</i>.</p>
<p><kbd><kbd>Tab</kbd></kbd> advances the editing box to the beginning of the next measure.</p>
<p><kbd><kbd>Shift</kbd>+<kbd>Space</kbd></kbd> moves the editing box to the previous staff note.</p>
<h3>Text format</h3>
<h4>Digits</h4>
<p>Digits are entered directly. Groups of several digits stacked one above the other are also entered directly in a single text, stacking them with <kbd><kbd>Enter</kbd></kbd>:</p>
<p><img src="/sites/musescore.org/files/trunk_fb_sample_2_0.png" alt="Example 2" title="Example 2" width="264" height="180" class="inline" /></p>
<h4>Accidentals</h4>
<p>Accidentals can be entered using regular keys:</p>
<table>
<tr>
<td><i>To enter:</i></td>
<td><i>type:</i></td>
</tr>
<tr>
<td>double flat</td>
<td>bb</td>
</tr>
<tr>
<td>flat</td>
<td>b</td>
</tr>
<tr>
<td>natural</td>
<td>h</td>
</tr>
<tr>
<td>sharp</td>
<td>#</td>
</tr>
<tr>
<td>double sharp</td>
<td>##</td>
</tr>
</table>
<p>These characters will automatically turn into the proper signs when you leave the editor. Accidentals can be entered before or after a digit (and of course, in place of a digit, for altered thirds), according to the required style; both styles are properly aligned, with the accidental 'hanging' at the left or at the right.</p>
<h4>Combined shapes</h4>
<p>Slashed digits or digits with a cross can be entered by adding <kbd><kbd>\</kbd></kbd>, <kbd><kbd>/</kbd></kbd> or <kbd><kbd>+</kbd></kbd> <b>after</b> the digit (combining suffixes); the proper combined shape will be substituted when leaving the editor:</p>
<p><img src="/sites/musescore.org/files/trunk_fb_sample_3_0.png" alt="Example 3" title="Example 3" width="450" height="270" class="inline" /></p>
<p>The built-in font can manage combination equivalence, favoring the more common substitution:</p>
<p>1\, 2\, 3\, 4\ result in <img src="/sites/musescore.org/files/trunk_fb_digits_modern_1.png" alt="Modern digits 1" title="Modern digits 1" width="118" height="23" class="inline" /> (or <img src="/sites/musescore.org/files/trunk_fb_digits_historic_1.png" alt="Historic digits 1" title="Historic digits 1" width="118" height="23" class="inline" />)</p>
<p>and 5+, 6+, 7+, 8+, 9+ result in <img src="/sites/musescore.org/files/trunk_fb_digits_modern_2.png" alt="Modern digits 1" title="Modern digits 1" width="150" height="23" class="inline" /> (or <img src="/sites/musescore.org/files/trunk_fb_digits_historic_2.png" alt="Historic digits 2" title="Historic digits 2" width="150" height="23" class="inline" />)</p>
<p>Please remember that <kbd><kbd>/</kbd></kbd> can only by combined with <kbd><kbd>5</kbd></kbd>; any other 'slashed' figure is renderd with a question mark.</p>
<h4>Parentheses</h4>
<p>Open and closed parentheses, both round: '(, ')' and square: '[', ']', can be inserted before and after accidentals, before and after a digit, before and after a continuation line; added parentheses will not disturb the proper alignment of the main character.</p>
<p>There are a few limitations:</p>
<ul>
<li>The editor does not check that parentheses, open and closed, round or square, are properly balanced.</li>
<li>Several parentheses in a row are non-syntactical and prevent proper recognition of the entered text.</li>
<li>A parenthesis between a digit and a combining suffix ('+', '\', '/') is accepted, but prevents shape combination.</li>
</ul>
<h4>Continuation lines</h4>
<p>Continuation lines are input by adding an '_' (underscore) at the end of the line. Each digit of a group can have its own continuation line:</p>
<p><img src="/sites/musescore.org/files/trunk_fb_sample_4_0.png" alt="Example 4" title="Example 4" width="400" height="125" class="inline" /></p>
<p>Continuation lines are drawn for the whole duration of the figured bass group (but currently are not continued on following systems, the same as for lyric continuation lines).</p>
<h4>Duration</h4>
<p>Each figured bass group has a duration, which is indicated by light gray line above it (of course, this line is for information only and it is not printed or exported to PDF).</p>
<p>By default, a group has the same duration of the note to which it is attached. A different duration may be required to fit several groups under a single note or to extend a group to span several notes.</p>
<p>To achieve this, the key combinations listed below can be used; each of them advances the editing box of the indicated duration and set the duration of the previous group up to the new editing box position. Pressing several of them in sequence without entering any figured bass text repeatedly extends the previous group:</p>
<table>
<tr>
<td> <kbd><kbd>Ctrl</kbd>+<kbd>1</kbd></kbd></td>
<td>1/64</td>
</tr>
<tr>
<td> <kbd><kbd>Ctrl</kbd>+<kbd>2</kbd></kbd></td>
<td>1/32</td>
</tr>
<tr>
<td> <kbd><kbd>Ctrl</kbd>+<kbd>3</kbd></kbd></td>
<td>1/16</td>
</tr>
<tr>
<td> <kbd><kbd>Ctrl</kbd>+<kbd>4</kbd></kbd></td>
<td>1/8 (quaver)</td>
</tr>
<tr>
<td> <kbd><kbd>Ctrl</kbd>+<kbd>5</kbd></kbd></td>
<td>1/4 (crochet)</td>
</tr>
<tr>
<td> <kbd><kbd>Ctrl</kbd>+<kbd>6</kbd></kbd></td>
<td>half note (minim)</td>
</tr>
<tr>
<td> <kbd><kbd>Ctrl</kbd>+<kbd>7</kbd></kbd></td>
<td>whole note (<i>semibrevis</i>)</td>
</tr>
<tr>
<td> <kbd><kbd>Ctrl</kbd>+<kbd>8</kbd></kbd></td>
<td>2 whole notes (<i>brevis</i>)</td>
</tr>
</table>
<p>(The digits are the same used to set the note durations)</p>
<p>Setting the exact figured bass group duration is only mandatory in two cases:</p>
<p>1) when several groups are fit under a single staff note (there is no other way!)</p>
<p>2) when continuation lines are used, as line length depends on the group duration.</p>
<p>However, it is a good practice to always set the duration to the intended value, as this info might be used by plugins and is also exported to XML.</p>
<h3>Editing existing figured basses</h3>
<p>To edit a figured bass indication already entered:</p>
<ul>
<li>Select it, or the note it belongs to and press the same <i>Figured Bass</i> shortcut used to create a new one</li>
</ul>
<p>or</p>
<ul>
<li>Double-click it</li>
</ul>
<p>The usual text editor box will open with the text converted back to plain characters ('b', '#' and 'h' for accidentals, separate combining suffixes, underscores, etc.) for simpler editing.</p>
<p>Once done, press <kbd><kbd>Space</kbd></kbd> to move to a next note, or click outside the editor box to exit it, as for newly created figured basses.</p>
<h3>Style</h3>
<p>The "Style | General..." menu command allows to configure how figured bass is rendered. Select "Figured Bass" in the list on the left side to display the following dialogue box:</p>
<p><img src="/sites/musescore.org/files/trunk_fb_dlg.png" alt="Configuration dialogue box" title="Configuration dialogue box" width="561" height="386" class="inline" /></p>
<p>The <b>Font</b> drop list contains all the fonts which have been configured for figured bass. A standard installation contains only one font, "MuseScore Figured Bass", which is also the default font.</p>
<p>The <b>Size</b> is the size of the font (in points). It is linked to the <i>spatium</i> value: for the default <i>spatium</i>, the entered value is used; for smaller or larger <i>spatium</i> values, a size value proportionally smaller or larger is used.</p>
<p><b>Vertical Position</b> is the distance (in <i>spatia</i>) from the top of the staff to the top margin of the figured bass text. Negative values go up (figured bass above the staff) and positive values go down (figured bass below the staff: a value greater than 4 is needed to step over the staff itself).</p>
<p><b>Line Height</b> is the distance between the base line of each figured bass line; it is expressed in percent of the font size.</p>
<p>The following picture visualizes each numeric parameter:</p>
<p><img src="/sites/musescore.org/files/trunk_fb_param_0.png" alt="Parameters" title="Parameters" width="265" height="140" class="inline" /></p>
<p>The <b>Modern / Historic</b> radio buttons select the typographic style of the combined shapes. The difference between the two styles is shown below:</p>
<p><img src="/sites/musescore.org/files/trunk_fb_sample_5.png" alt="Styles" title="Styles" width="225" height="112" class="inline" /></p>
<h3>Proper syntax</h3>
<p>For the relevant substitutions and shape combinations to take effect and for proper alignment, the figured bass mechanism expects input texts to follow some rules (which are in any case, the rules for a syntactical figured bass indication):</p>
<ul>
<li>There can be only one accidental (before or after), or only one combining suffix per figure;</li>
<li>There cannot be both an accidental AND a combining suffix;</li>
<li>There can be an accidental without a digit (altered third), but not a combining suffix without a digit.</li>
<li>Any other character not listed above is not expected.</li>
</ul>
<p>If a text entered does not follow these rules, it will not be processed: it will be stored and displayed as it is, without any layout.</p>
<h3>Summary of keys</h3>
<table>
<tr>
<td> <kbd><kbd>Ctrl</kbd>+<kbd>G</kbd></kbd></td>
<td>Adds a new figured bass group to the selected note.</td>
</tr>
<tr>
<td> <kbd><kbd>Space</kbd></kbd></td>
<td>Advances the editing box the next note.</td>
</tr>
<tr>
<td> <kbd><kbd>Shift</kbd>+<kbd>Space</kbd></kbd></td>
<td>Moves the editing box the previous note.</td>
</tr>
<tr>
<td> <kbd><kbd>Tab</kbd></kbd></td>
<td>Advances the editing box the next measure.</td>
</tr>
<tr>
<td> <kbd><kbd>Ctrl</kbd>+<kbd>1</kbd></kbd></td>
<td>Advances the editing box  of 1/64, setting the duration of the previous group.</td>
</tr>
<tr>
<td> <kbd><kbd>Ctrl</kbd>+<kbd>2</kbd></kbd></td>
<td>Advances the editing box  of 1/32, setting the duration of the previous group.</td>
</tr>
<tr>
<td> <kbd><kbd>Ctrl</kbd>+<kbd>3</kbd></kbd></td>
<td>Advances the editing box  of 1/16, setting the duration of the previous group.</td>
</tr>
<tr>
<td> <kbd><kbd>Ctrl</kbd>+<kbd>4</kbd></kbd></td>
<td>Advances the editing box  of 1/8 (quaver), setting the duration of the previous group.</td>
</tr>
<tr>
<td> <kbd><kbd>Ctrl</kbd>+<kbd>5</kbd></kbd></td>
<td>Advances the editing box  of 1/4 (crochet), setting the duration of the previous group.</td>
</tr>
<tr>
<td> <kbd><kbd>Ctrl</kbd>+<kbd>6</kbd></kbd></td>
<td>Advances the editing box  of half note (minim), setting the duration of the previous group.</td>
</tr>
<tr>
<td> <kbd><kbd>Ctrl</kbd>+<kbd>7</kbd></kbd></td>
<td>Advances the editing box  of whole note (<i>semibrevis</i>), setting the duration of the previous group.</td>
</tr>
<tr>
<td> <kbd><kbd>Ctrl</kbd>+<kbd>8</kbd></kbd></td>
<td>2 whole notes (<i>brevis</i>), setting the duration ofthe previous group.</td>
</tr>
<tr>
<td> <kbd><kbd>B</kbd> <kbd>B</kbd></kbd></td>
<td>Enters a double flat.</td>
</tr>
<tr>
<td> <kbd><kbd>B</kbd></kbd></td>
<td>Enters a flat.</td>
</tr>
<tr>
<td> <kbd><kbd>H</kbd></kbd></td>
<td>Enters a natural.</td>
</tr>
<tr>
<td> <kbd><kbd>#</kbd></kbd></td>
<td>Enters a sharp.</td>
</tr>
<tr>
<td> <kbd><kbd>#</kbd> <kbd>#</kbd></kbd></td>
<td>Enters a double sharp.</td>
</tr>
<tr>
<td> <kbd><kbd>_</kbd></kbd></td>
<td>Enters a continuation line.</td>
</tr>
</table>
  </div>
<div id="node-8672" class="section-3">
  <h1 class="book-heading">Foto-Mode</h1>
  <p><em>The following page documents features in an upcoming version of MuseScore. These features are only available for testing in the latest <a class="freelinking external" href="http://musescore.org/en/handbook/comparison-stable-prerelease-and-nightly-builds">nightly builds</a>. This page should not be translated yet.</em></p>
<p>The Foto-Mode allows to create image snippets out of MuseScore scores. It can be toggled on/off with the Foto-Mode button. </p>
<p><img src="/sites/musescore.org/files/photomode1_1.png" alt="F-Button" title="F-Button" width="182" height="173" class="inline" /></p>
<p>In Foto-Mode, a selection rectangle can be spawned with <kbd><kbd>Shift</kbd></kbd> + mouse drag.</p>
<p><img src="/sites/musescore.org/files/photomode2.png" alt="Lasso Selection" title="Lasso Selection" width="295" height="288" class="inline" /></p>
<p>The selection rectangle can be moved with the mouse, or resized by moving on of the eight handles.</p>
<p>Once you specify the bounding box of the image snippet you want to create, right-click into the rectangle to popup the context menu:</p>
<p><img src="/sites/musescore.org/files/photomode3.png" alt="Foto Context Menu" title="Foto Context Menu" width="281" height="162" class="inline" /></p>
<p>Saving as a PNG file results in this file:</p>
<p><img src="/sites/musescore.org/files/photomode4.png" alt="Score Snippet" title="Score Snippet" width="365" height="252" class="inline" /></p>
<p>If you save your snippet in "print mode", it will appear as a cut out of the score as it would be printed. In "screenshot mode", the image will look like the score on your screen (including line break markers, etc), which are not printed (100dpi example):</p>
<p><img src="/sites/musescore.org/files/photomode5.png" alt="Screenshot Snippet" title="Screenshot Snippet" width="247" height="186" class="inline" /></p>
  </div>
<div id="node-9273" class="section-3">
  <h1 class="book-heading">Staff type properties</h1>
  <p><em>The following page documents features in an upcoming version of MuseScore. These features are only available for testing in the latest <a class="freelinking external" href="http://musescore.org/en/handbook/comparison-stable-prerelease-and-nightly-builds">nightly builds</a>. This page should not be translated yet.</em></p>
<h3>Background</h3>
<p>In MuseScore, each instrument’s staff belongs to one of 3 groups:</p>
<ul>
<li>Pitched (the classic, ‘regular’, kind of staff)</li>
<li>Tablature</li>
<li>Percussion</li>
</ul>
<p>Each group may contain several types of similar, but more or less customized, staff types to accommodate specific needs.<br />
Each score is initially created with 3 standard staff types - one for each group.<br />
This dialogue box allows to modify the properties of each type and/or to create new types. Each instrument staff of a score can then be assigned any of the staff types, either built-in or user-created (as documented <a class="freelinking external" href="http://musescore.org/en/node/7845">here</a>).</p>
<h3>How to get there</h3>
<p>This dialogue box is accessed with the <kbd><samp class="menuitem">Edit</samp> → <samp class="submenu">Staff types...</samp></kbd> menu command (an open score is needed).</p>
<h3>Common items</h3>
<p>The dialogue box shows different items depending on the group of the selected staff type: pitched, tablature or percussion.<br />
Some dialogue items, however, are common to all types:<br />
<b>Type list</b> at the left side: Lists all the staff types defined in the score; at least the 3 default types are shown, but more can appear if custom types have been added. Select one of the staff types to edit its properties.<br />
<b>Name</b>: A human-readable name<br />
<b>Lines:</b>: The number of lines making up the staff<br />
<b>Line Distance</b>: The distance between two staff lines, expressed in <i>spaces</i> (abbr.: <i>sp</i>), i.e. the default distance between two staff lines; 1.0 is (rather obviously) the default, a higher value will generate lines spaced more widely apart, a lower value lines more tightly spaced. It is <b>not</b> recommended to change this value for the default type of the ‘pitched’ group (although it is possible); other groups may have different default values, for instance tablatures usually have a line distance of 1.5 sp.<br />
<b>Save</b>: Saves the selected staff type in a separate file for archiving, sharing or adding to other scores (not yet implemented).<br />
<b>Load</b>: Loads a saved staff type adding to the type list for this score (not yet implemented).<br />
<b>Create new  ... type</b>: Creates a new staff type initially identical to the current staff type; the new staff type can then be customized, but its group cannot be changed (however, each staff can be assigned to another type of any group).<br />
<b>OK</b>: Closes the dialogue box, accepting the changes.<br />
<b>Cancel</b>: Closes the dialogue box, rejecting the changes.</p>
<h3>Pitched staff specific items</h3>
<p><b>Clef</b>: Whether the staff clef will be shown or not.<br />
<b>Stemless</b>: If not checked, staff notes will have no stem, hook or beam.<br />
<b>Barlines</b>: Whether the staff bar lines will be shown, or not.<br />
<b>Key Signature</b>: Whether the staff key signature will be shown, or not.<br />
<b>Ledger Lines</b>: ??</p>
<h3>Tablature staff specific items</h3>
<h4>Presets</h4>
<p>To quickly set all the tablature properties to one of the preset types, select the type in the <b>Select</b> drop list. All properties remain accessible: if the exact type needed is not among the presets, choose the nearest one and fix the properties as needed.</p>
<h4>Full Configur.</h4>
<p>Displays all the configurable parameters, listed below. Press <kbd><samp class="menuitem">Quick Presets</samp></kbd> to hide them.</p>
<h3>&nbsp;</h3>
<p><b>Show clef</b>: Whether the staff clef will be shown or not.<br />
<b>Show time signature</b>: Whether the staff time signature will be shown or not.<br />
<b>Show barlines</b>: Whether the staff bar lines will be shown or not.<br />
<b>Upside down</b>: If not checked, the top tablature line will refer to the highest string and the bottom tablature line will refer to the lowest string (most common case). If checked, the top tablature line will refer to the lowest string and the bottom tablature line will refer to the highest line (used in Italian style lute tablatures).</p>
<h4>Fret marks</h4>
<p>This group of properties defines the appearance of fret marks.<br />
<b>Font</b>: The font used to draw the marks. Currently 3 fonts are provided supporting all the necessary symbols in 3 different styles (modern, Renaissance, Late Renaissance). More fonts (or the possibility to use custom fonts) may be available in the future.<br />
<b>Size</b>: The font size to use, in typographic points. Built-in fonts look usually good at a size of 10pt.<br />
<b>Vertical offset</b>: MuseScore tries to place symbols in a sensible way and this value is usually not needed (set to 0) for built-in fonts. If the font has symbols not aligned on the base line (or in some other way MuseScore does not expect), this value allows to move mark symbols up (negative offsets) or down (positive offsets) for better vertical positioning.<br />
<b>Numbers / Letters</b>: Whether to use numbers (‘1’, ‘2’, ...) or letters (‘a’, ‘b’, ...) as fret marks. When letters are used, ‘j’ is skipped and ‘k’ is used for the 9th fret.<br />
<b>On lines / Above lines</b>: Whether marks should be placed <b>on</b> the string lines or <b>above</b> them.<br />
<b>Continuous / Broken</b>: Whether string lines should pass ‘through’ fret marks or should stop at them.</p>
<table>
<tr>
<td><img src="/sites/musescore.org/files/TabExample_numbers_broken_1.png" alt="Example: numbers" title="Example: numbers" width="250" height="110" class="inline" /></td>
<td><img src="/sites/musescore.org/files/TabExample_lettersabovecontin_1.png" alt="Example: letters" title="Example: letters" width="250" height="110" class="inline" /></td>
</tr>
<tr>
<td>Example of numbers on broken lines</td>
<td>Example of letters above continuous lines</td>
</tr>
<tr>
<td><img src="/sites/musescore.org/files/TabExample_numbers_upsdn_1.png" alt="Example: &#039;upside-down&#039; tablature" title="Example: &#039;upside-down&#039; tablature" width="250" height="110" class="inline" /></td>
</tr>
<tr>
<td>Example of 'upside down' tablature (same contents as number example above)</td>
</tr>
</table>
<h4>Note values</h4>
<p>This group of properties defines the appearance of the symbols indicating note values.<br />
<b>None</b>: No note value will be drawn (as in the examples above)<br />
<b>Note symbols</b>: Symbols in the shape of notes will be drawn above the staff. When this option is selected, symbols are drawn <b>only</b> when the note value changes, without being repeated for a sequence of notes all of the same value.<br />
<img src="/sites/musescore.org/files/TabExample_durations_1.png" alt="Example: note symbols" title="Example: note symbols" width="250" height="110" class="inline" /> Example of values indicated by note symbols<br />
<b>Stems and beams</b>: Note stems and beams (or hooks) will be drawn. Values are indicated for each note, using the same typographic devices as for a regular staff; all commands of the standard Beam Palette can be applied to these beams too.<br />
<b>Above / Below</b> staff: Whether stems and beams are drawn above or below the staff (only available with the <i>Stems and Beams</i> option).<br />
<b>Beside staff / Through staff</b>: Whether stems are drawn as as fixed height lines above/below the staff or run through the staff to reach the fret marks each refers to (only available with the <i>Stems and Beams</i> option).<br />
<b>None / As short stems / As slashed stems</b>: To select three different styles to draw stems for half notes (only available with the <i>Stems and Beams</i> and the <i>Beside staff</i> options).<br />
<img src="/sites/musescore.org/files/TabExample_stems_1.png" alt="Example: stems" title="Example: stems" width="250" height="110" class="inline" /> Example of values indicated by note stems<br />
<b>Font</b>: The font used to draw the value symbols. Currently 3 fonts are provided supporting all the necessary symbols in 3 different styles (modern, Italian tabulature, French tabulature). More fonts (or the possibility to use custom fonts) may be available in the future. Used only with the <i>Note symbols</i> option.<br />
<b>Size</b>: The font size to use, in typographic points. Built-in fonts look usually good at a size of 15pt. Used only with the <i>Note symbols</i> option.<br />
<b>Vertical offset</b>: as for Fret Marks above, but referring to value symbols instead. Used only with the <i>Note symbols</i> option.</p>
<h4>Preview</h4>
<p>Displays a short score in tablature format with all the current parameters applied.</p>
<h3>Percussion staff specific items</h3>
<p>[To be done]</p>
  </div>
<div id="node-7845" class="section-3">
  <h1 class="book-heading">Tablature Creation</h1>
  <p><em>The following page documents features in an upcoming version of MuseScore. These features are only available for testing in the latest <a class="freelinking external" href="http://musescore.org/en/handbook/comparison-stable-prerelease-and-nightly-builds">nightly builds</a>. This page should not be translated yet.</em></p>
<h3>Creation</h3>
<h4>With the 'New Score' wizard</h4>
<p>In many cases, it is possible to have a tablature staff simply by choosing the 'right' instrument while creating a new score with the 'New Score' wizard. Any instrument which is internally configured to use tablature will generate a tablature staff by default; examples are <i>Guitar (Tablature)</i>, <i>Electric Bass (Tablature 4 strings)</i>, and <i>Lute</i> (most variants).</p>
<h4>By changing staff type</h4>
<p>It is also possible to convert any 'regular' (<i>pitched</i>)  type staff to a tablature-type and viceversa:</p>
<ol>
<li>Right-click on an empty spot of a measure of the staff you want to change to see the staff contextual menu</li>
<li>Select <kbd><samp class="menuitem">Staff Properties...</samp></kbd> (if this item is not present in the menu, the clicked spot was not empty and the contextual menu for some other object is shown)</li>
<li>In the <b>"Type:"</b> drop list, select <b>"Tab"</b></li>
<li>Press <b>OK</b></li>
</ol>
<p>The selected staff will be converted to a tablature staff. Select <b>"Pitched"</b> in step 3) to convert a tablature to a pitched staff.</p>
<p>It is then possible to enter a part in a pitched staff and convert it to a tablature, and vice versa.</p>
<h3>Changing instrument string data (tuning)</h3>
<p>Tablatures 'notes' do not refer to pitches but to strings and fret positions. It is mandatory that your tablature 'knows' which string tuning you refer to, or the note pitches generated from fret marks (for instance, in linked staves, in playback or in generated audio files) will be wrong. It is <b>important</b> to do this <b>before</b> starting entering any note, or the music will sound wrong.</p>
<p>Most built-in string instruments already contain 'standard' string tuning data. Occasionally, it is necessary to adjust this data - such examples include when working with a non-standard tuning (<i>scordatura</i>), if the specific instrument does not exist and a similar one was been selected when the score was initially created, or when using an instrument without 'standard' tuning. It is also good practice to always review the actual tuning, even for 'standard' situations.</p>
<p>To view / edit the string tuning:</p>
<ol>
<li>Right-click on an empty spot of a measure of the staff you want to change to get the staff contextual menu</li>
<li>Select <kbd><samp class="menuitem">Staff Properties...</samp></kbd></li>
<li>Press the <b>"Edit String Data..."</b> button to the right of the <b>"Number of strings:"</b> box</li>
<li>The <b>"String Data"</b> dialogue box opens: review the current string data and make any needed change via the <b>"New String..."</b>, <b>"Edit String..."</b>, <b>"Delete String"</b> buttons.</li>
<li>Check the <b>Number of frets"</b> is correct or adjust it (if not)
</li>
<li>Press <b>OK</b> to close the <b>"Edit String Data"</b> dialogue box</li>
<li>Press <b>OK</b> to close the <b>"Staff/Part Edit Properties"</b> dialogue box</li>
</ol>
<p>If tuning is changed when the tablature for that instrument already contains some notes, fret marks will be adjusted to produce the same notes with the new tuning (if possible).</p>
<p>The number of frets (either physical frets or 'virtual' positions) determines the maximum fret number a string can receive.</p>
<p>Any change you make to the string tuning will only affect that particular instrument for that particular score, and will not alter any programme default or built-in definition.</p>
<h3>Configuring a tablature</h3>
<p>The default properties of a tablature are suitable in a modern guitar tablature score. For other instruments and/or other genres, it can be useful to change these properties.</p>
<p>Properties of a tablature, a well as of other types of staves, can be changed with the Edit Staff Type editor. The editor can be accessed with the <kbd><samp class="menuitem">Edit</samp> → <samp class="submenu">Staff types...</samp></kbd> menu command and is documented <a class="freelinking external" href="http://musescore.org/en/staff-type-properties">here</a>.</p>
<h4>Multiple staves</h4>
<p>Sometimes it is useful to show a pitched staff along with a tablature staff. MuseScore allows to "link" staves so that changes in one staff are also applied to the linked one. If a pitched staff is linked to a tablature you may use either staff for note entry indifferently.</p>
<p>To create a linked staff:</p>
<ol>
<li>Open the instrument editor (menu <kbd><samp class="menu">Create</samp> → <samp class="submenu">Instruments...</samp></kbd> or <kbd><kbd>I</kbd></kbd> key)</li>
<li>Select the staff you want to link to</li>
<li>Press the <b>"Add linked Staff"</b> button to create a new staff linked to the selected one</li>
<li>Press <b>OK</b></li>
</ol>
<p>Once the new linked staff is created, you will usually want to change its type (e.g. to tablature) and/or change its type properties, as described above.</p>
<p>If chords are entered in the pitched staff (or copied from another staff with <kbd><kbd>Ctrl</kbd></kbd>+<kbd><kbd>C</kbd></kbd> / <kbd><kbd>Ctrl</kbd></kbd>+<kbd><kbd>V</kbd></kbd>), in the tablature MuseScore tries to distribute the note across the strings to avoid fretting conflicts (multiple notes on the same string); if this is not possible, conflicting notes are drawn in the tablature with a red background and have to be adjusted by hand (see below <b>Editing Notes</b>).</p>
<h3>Inputting new notes</h3>
<p><b>Keyboard</b>:</p>
<ul>
<li>Switch to note entry mode (<kbd><kbd>N</kbd></kbd>): a short 'blue rectangle' appears around one tablature string: this is the <i>current string</i></li>
<li>Select note/rest duration in the usual way (via the palette or the keyboard shortcuts)</li>
<li>Press <kbd><kbd>Alt</kbd></kbd>+<kbd><kbd>&uarr;</kbd></kbd> or <kbd><kbd>Alt</kbd></kbd>+<kbd><kbd>&darr;</kbd></kbd> to select the needed string</li>
<li>Press <kbd><kbd>Alt</kbd></kbd>+<kbd><kbd>0</kbd></kbd> to <kbd><kbd>Alt</kbd></kbd>+<kbd><kbd>9</kbd></kbd> to enter a fret mark from 0 to 9 on the current string (more key combinations to enter higher fret marks directly will be added)
</li>
<li>If a higher number is needed, press <kbd><kbd>Shift</kbd></kbd>+<kbd><kbd>&uarr;</kbd></kbd> (see below) several times until the right fret is reached
</li>
</ul>
<p><b>Mouse</b>:</p>
<ul>
<li>Entered note entry mode and select the note duration as above
</li>
<li>Click on a string to create a note there</li>
<li>Notes are initially created on fret 0 (or <i>a</i> for French tabulatures): press <kbd><kbd>&uarr;</kbd></kbd> or <kbd><kbd>Shift</kbd></kbd>+<kbd><kbd>&uarr;</kbd></kbd> (see below) several times until the right fret is reached</li>
</ul>
<p>MuseScore refuses to place a second note on a string which already contains one; for this reason, it is usually better to fill chords from the highest string to the lowest.</p>
<h3>Editing existing notes</h3>
<p>Three key combinations can be used:</p>
<ul>
<li><kbd><kbd>&uarr;</kbd></kbd> / <kbd><kbd>&darr;</kbd></kbd> changes the note pitch. MuseScore selects the string and the fret: always the highest possible string is selected.
</li>
<li><kbd><kbd>Shift</kbd></kbd>+<kbd><kbd>&uarr;</kbd></kbd> / <kbd><kbd>&darr;</kbd></kbd> changes the fret up/down without changing the string (ranging from 0 to the number of frets defined in the <b>"Edit String Data"</b> dialogue box).
</li>
<li><kbd><kbd>Ctrl</kbd></kbd>+<kbd><kbd>&uarr;</kbd></kbd> / <kbd><kbd>&darr;</kbd></kbd> moves the selected note to upper/lower string (if the string is free and can produce that note).
</li>
</ul>
<h3>Multiple tablatures</h3>
<p>TO BE DOCUMENTED</p>
  </div>
<div id="node-17915" class="section-3">
  <h1 class="book-heading">Upgrading from MuseScore 1.x</h1>
  <h3>How to upgrade MuseScore</h3>
<p>ToDo</p>
<h3>Opening 1.x scores in MuseScore 2.0</h3>
<p>The score rendering in MuseScore 2.0 underwent a major overhaul. This resulted overall in a much improved automatic typesetting quality. This also means that sheet music made with MuseScore 1.x will look different from sheet music made with 2.x. Overall scores made with 2.x will look better and will be easier to read.</p>
<p>The rule of thumb is that if you did not manually adjust the layout of a 1.x score, then MuseScore will use the 2.x rendering engine to layout the score. If you did touch the layout of the 1.x score, it should stay that way after opening it in MuseScore 2.x. If you do wish to use the 2.x rendering engine, select the complete score (<kbd><kbd>Ctrl</kbd>+<kbd>a</kbd></kbd>) and reset the layout (<kbd><kbd>Ctrl</kbd>+<kbd>r</kbd></kbd>).</p>
  </div>
</div>
</div>
</div>
    <div class="print-taxonomy"></div>
    <div class="print-footer">Licensed under the <a href="http://creativecommons.org/licenses/by/3.0">Creative Commons Attribution 3.0</a> license, 2002-2012 <a href="mailto:werner@musescore.org">Werner Schweer</a> and others.</div>
    <hr class="print-hr" />
    <div class="print-source_url"></div>
    <div class="print-links"></div>
  </body>
</html>