2012-05-26 14:26:10 +02:00
|
|
|
//=============================================================================
|
|
|
|
// MuseScore
|
|
|
|
// Music Composition & Notation
|
|
|
|
//
|
|
|
|
// Copyright (C) 2002-2011 Werner Schweer
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License version 2
|
|
|
|
// as published by the Free Software Foundation and appearing in
|
|
|
|
// the file LICENCE.GPL
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
#include "style.h"
|
|
|
|
#include "sym.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "score.h"
|
|
|
|
#include "xml.h"
|
|
|
|
#include "mscore.h"
|
|
|
|
|
2013-05-13 18:49:17 +02:00
|
|
|
namespace Ms {
|
|
|
|
|
2012-05-26 14:26:10 +02:00
|
|
|
//---------------------------------------------------------
|
2013-11-06 15:58:05 +01:00
|
|
|
// scoreFonts
|
|
|
|
// this is the list of available score fonts
|
2012-05-26 14:26:10 +02:00
|
|
|
//---------------------------------------------------------
|
|
|
|
|
2014-01-23 18:49:07 +01:00
|
|
|
static const int FALLBACK_FONT = 2; // Bravura
|
|
|
|
|
2013-11-06 15:58:05 +01:00
|
|
|
QVector<ScoreFont> ScoreFont::_scoreFonts = {
|
2013-11-14 16:12:57 +01:00
|
|
|
ScoreFont("Emmentaler", "MScore", ":/fonts/mscore/", "mscore.ttf"),
|
2014-01-31 09:27:52 +01:00
|
|
|
ScoreFont("Gonville", "Gonville", ":/fonts/gonville/", "Gonville.otf"),
|
2013-11-06 15:58:05 +01:00
|
|
|
ScoreFont("Bravura", "Bravura", ":/fonts/bravura/", "Bravura.otf")
|
2012-05-26 14:26:10 +02:00
|
|
|
};
|
|
|
|
|
2012-09-13 17:04:42 +02:00
|
|
|
//---------------------------------------------------------
|
2013-11-06 15:58:05 +01:00
|
|
|
// table of symbol names
|
|
|
|
// symNames must be in sync with enum class SymId
|
2012-05-26 14:26:10 +02:00
|
|
|
//---------------------------------------------------------
|
|
|
|
|
2013-11-06 15:58:05 +01:00
|
|
|
QHash<QString, SymId> Sym::lnhash;
|
|
|
|
QVector<const char*> Sym::symNames = {
|
2013-11-11 15:11:28 +01:00
|
|
|
"noSym",
|
2013-11-06 15:58:05 +01:00
|
|
|
"4stringTabClef",
|
|
|
|
"6stringTabClef",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accSagittal11LargeDiesisDown",
|
|
|
|
"accSagittal11LargeDiesisUp",
|
|
|
|
"accSagittal11MediumDiesisDown",
|
|
|
|
"accSagittal11MediumDiesisUp",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accSagittal11v19LargeDiesisDown",
|
|
|
|
"accSagittal11v19LargeDiesisUp",
|
|
|
|
"accSagittal11v19MediumDiesisDown",
|
|
|
|
"accSagittal11v19MediumDiesisUp",
|
|
|
|
"accSagittal11v49CommaDown",
|
|
|
|
"accSagittal11v49CommaUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accSagittal143CommaDown",
|
|
|
|
"accSagittal143CommaUp",
|
|
|
|
"accSagittal17CommaDown",
|
|
|
|
"accSagittal17CommaUp",
|
|
|
|
"accSagittal17KleismaDown",
|
|
|
|
"accSagittal17KleismaUp",
|
|
|
|
"accSagittal19CommaDown",
|
|
|
|
"accSagittal19CommaUp",
|
|
|
|
"accSagittal19SchismaDown",
|
|
|
|
"accSagittal19SchismaUp",
|
|
|
|
"accSagittal23CommaDown",
|
|
|
|
"accSagittal23CommaUp",
|
|
|
|
"accSagittal23SmallDiesisDown",
|
|
|
|
"accSagittal23SmallDiesisUp",
|
|
|
|
"accSagittal25SmallDiesisDown",
|
|
|
|
"accSagittal25SmallDiesisUp",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accSagittal35LargeDiesisDown",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accSagittal35LargeDiesisUp",
|
|
|
|
"accSagittal35MediumDiesisDown",
|
|
|
|
"accSagittal35MediumDiesisUp",
|
|
|
|
"accSagittal49LargeDiesisDown",
|
|
|
|
"accSagittal49LargeDiesisUp",
|
|
|
|
"accSagittal49MediumDiesisDown",
|
|
|
|
"accSagittal49MediumDiesisUp",
|
|
|
|
"accSagittal49SmallDiesisDown",
|
|
|
|
"accSagittal49SmallDiesisUp",
|
|
|
|
"accSagittal55CommaDown",
|
|
|
|
"accSagittal55CommaUp",
|
|
|
|
"accSagittal5CommaDown",
|
|
|
|
"accSagittal5CommaUp",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accSagittal5v11SmallDiesisDown",
|
|
|
|
"accSagittal5v11SmallDiesisUp",
|
|
|
|
"accSagittal5v13LargeDiesisDown",
|
|
|
|
"accSagittal5v13LargeDiesisUp",
|
|
|
|
"accSagittal5v13MediumDiesisDown",
|
|
|
|
"accSagittal5v13MediumDiesisUp",
|
|
|
|
"accSagittal5v19CommaDown",
|
|
|
|
"accSagittal5v19CommaUp",
|
|
|
|
"accSagittal5v23SmallDiesisDown",
|
|
|
|
"accSagittal5v23SmallDiesisUp",
|
|
|
|
"accSagittal5v49MediumDiesisDown",
|
|
|
|
"accSagittal5v49MediumDiesisUp",
|
|
|
|
"accSagittal5v7KleismaDown",
|
|
|
|
"accSagittal5v7KleismaUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accSagittal7CommaDown",
|
|
|
|
"accSagittal7CommaUp",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accSagittal7v11CommaDown",
|
|
|
|
"accSagittal7v11CommaUp",
|
|
|
|
"accSagittal7v11KleismaDown",
|
|
|
|
"accSagittal7v11KleismaUp",
|
|
|
|
"accSagittal7v19CommaDown",
|
|
|
|
"accSagittal7v19CommaUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accSagittalAcute",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accSagittalDoubleFlat",
|
|
|
|
"accSagittalDoubleFlat11v49CUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accSagittalDoubleFlat143CUp",
|
|
|
|
"accSagittalDoubleFlat17CUp",
|
|
|
|
"accSagittalDoubleFlat17kUp",
|
|
|
|
"accSagittalDoubleFlat19CUp",
|
|
|
|
"accSagittalDoubleFlat19sUp",
|
|
|
|
"accSagittalDoubleFlat23CUp",
|
|
|
|
"accSagittalDoubleFlat23SUp",
|
|
|
|
"accSagittalDoubleFlat25SUp",
|
|
|
|
"accSagittalDoubleFlat49SUp",
|
|
|
|
"accSagittalDoubleFlat55CUp",
|
|
|
|
"accSagittalDoubleFlat5CUp",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accSagittalDoubleFlat5v11SUp",
|
|
|
|
"accSagittalDoubleFlat5v19CUp",
|
|
|
|
"accSagittalDoubleFlat5v23SUp",
|
|
|
|
"accSagittalDoubleFlat5v7kUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accSagittalDoubleFlat7CUp",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accSagittalDoubleFlat7v11CUp",
|
|
|
|
"accSagittalDoubleFlat7v11kUp",
|
|
|
|
"accSagittalDoubleFlat7v19CUp",
|
|
|
|
"accSagittalDoubleSharp",
|
|
|
|
"accSagittalDoubleSharp11v49CDown",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accSagittalDoubleSharp143CDown",
|
|
|
|
"accSagittalDoubleSharp17CDown",
|
|
|
|
"accSagittalDoubleSharp17kDown",
|
|
|
|
"accSagittalDoubleSharp19CDown",
|
|
|
|
"accSagittalDoubleSharp19sDown",
|
|
|
|
"accSagittalDoubleSharp23CDown",
|
|
|
|
"accSagittalDoubleSharp23SDown",
|
|
|
|
"accSagittalDoubleSharp25SDown",
|
|
|
|
"accSagittalDoubleSharp49SDown",
|
|
|
|
"accSagittalDoubleSharp55CDown",
|
|
|
|
"accSagittalDoubleSharp5CDown",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accSagittalDoubleSharp5v11SDown",
|
|
|
|
"accSagittalDoubleSharp5v19CDown",
|
|
|
|
"accSagittalDoubleSharp5v23SDown",
|
|
|
|
"accSagittalDoubleSharp5v7kDown",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accSagittalDoubleSharp7CDown",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accSagittalDoubleSharp7v11CDown",
|
|
|
|
"accSagittalDoubleSharp7v11kDown",
|
|
|
|
"accSagittalDoubleSharp7v19CDown",
|
|
|
|
"accSagittalFlat",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accSagittalFlat11LDown",
|
|
|
|
"accSagittalFlat11MDown",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accSagittalFlat11v19LDown",
|
|
|
|
"accSagittalFlat11v19MDown",
|
|
|
|
"accSagittalFlat11v49CDown",
|
|
|
|
"accSagittalFlat11v49CUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accSagittalFlat143CDown",
|
|
|
|
"accSagittalFlat143CUp",
|
|
|
|
"accSagittalFlat17CDown",
|
|
|
|
"accSagittalFlat17CUp",
|
|
|
|
"accSagittalFlat17kDown",
|
|
|
|
"accSagittalFlat17kUp",
|
|
|
|
"accSagittalFlat19CDown",
|
|
|
|
"accSagittalFlat19CUp",
|
|
|
|
"accSagittalFlat19sDown",
|
|
|
|
"accSagittalFlat19sUp",
|
|
|
|
"accSagittalFlat23CDown",
|
|
|
|
"accSagittalFlat23CUp",
|
|
|
|
"accSagittalFlat23SDown",
|
|
|
|
"accSagittalFlat23SUp",
|
|
|
|
"accSagittalFlat25SDown",
|
|
|
|
"accSagittalFlat25SUp",
|
|
|
|
"accSagittalFlat35LDown",
|
|
|
|
"accSagittalFlat35MDown",
|
|
|
|
"accSagittalFlat49LDown",
|
|
|
|
"accSagittalFlat49MDown",
|
|
|
|
"accSagittalFlat49SDown",
|
|
|
|
"accSagittalFlat49SUp",
|
|
|
|
"accSagittalFlat55CDown",
|
|
|
|
"accSagittalFlat55CUp",
|
|
|
|
"accSagittalFlat5CDown",
|
|
|
|
"accSagittalFlat5CUp",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accSagittalFlat5v11SDown",
|
|
|
|
"accSagittalFlat5v11SUp",
|
|
|
|
"accSagittalFlat5v13LDown",
|
|
|
|
"accSagittalFlat5v13MDown",
|
|
|
|
"accSagittalFlat5v19CDown",
|
|
|
|
"accSagittalFlat5v19CUp",
|
|
|
|
"accSagittalFlat5v23SDown",
|
|
|
|
"accSagittalFlat5v23SUp",
|
|
|
|
"accSagittalFlat5v49MDown",
|
|
|
|
"accSagittalFlat5v7kDown",
|
|
|
|
"accSagittalFlat5v7kUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accSagittalFlat7CDown",
|
|
|
|
"accSagittalFlat7CUp",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accSagittalFlat7v11CDown",
|
|
|
|
"accSagittalFlat7v11CUp",
|
|
|
|
"accSagittalFlat7v11kDown",
|
|
|
|
"accSagittalFlat7v11kUp",
|
|
|
|
"accSagittalFlat7v19CDown",
|
|
|
|
"accSagittalFlat7v19CUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accSagittalGrave",
|
|
|
|
"accSagittalShaftDown",
|
|
|
|
"accSagittalShaftUp",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accSagittalSharp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accSagittalSharp11LUp",
|
|
|
|
"accSagittalSharp11MUp",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accSagittalSharp11v19LUp",
|
|
|
|
"accSagittalSharp11v19MUp",
|
|
|
|
"accSagittalSharp11v49CDown",
|
|
|
|
"accSagittalSharp11v49CUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accSagittalSharp143CDown",
|
|
|
|
"accSagittalSharp143CUp",
|
|
|
|
"accSagittalSharp17CDown",
|
|
|
|
"accSagittalSharp17CUp",
|
|
|
|
"accSagittalSharp17kDown",
|
|
|
|
"accSagittalSharp17kUp",
|
|
|
|
"accSagittalSharp19CDown",
|
|
|
|
"accSagittalSharp19CUp",
|
|
|
|
"accSagittalSharp19sDown",
|
|
|
|
"accSagittalSharp19sUp",
|
|
|
|
"accSagittalSharp23CDown",
|
|
|
|
"accSagittalSharp23CUp",
|
|
|
|
"accSagittalSharp23SDown",
|
|
|
|
"accSagittalSharp23SUp",
|
|
|
|
"accSagittalSharp25SDown",
|
|
|
|
"accSagittalSharp25SUp",
|
|
|
|
"accSagittalSharp35LUp",
|
|
|
|
"accSagittalSharp35MUp",
|
|
|
|
"accSagittalSharp49LUp",
|
|
|
|
"accSagittalSharp49MUp",
|
|
|
|
"accSagittalSharp49SDown",
|
|
|
|
"accSagittalSharp49SUp",
|
|
|
|
"accSagittalSharp55CDown",
|
|
|
|
"accSagittalSharp55CUp",
|
|
|
|
"accSagittalSharp5CDown",
|
|
|
|
"accSagittalSharp5CUp",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accSagittalSharp5v11SDown",
|
|
|
|
"accSagittalSharp5v11SUp",
|
|
|
|
"accSagittalSharp5v13LUp",
|
|
|
|
"accSagittalSharp5v13MUp",
|
|
|
|
"accSagittalSharp5v19CDown",
|
|
|
|
"accSagittalSharp5v19CUp",
|
|
|
|
"accSagittalSharp5v23SDown",
|
|
|
|
"accSagittalSharp5v23SUp",
|
|
|
|
"accSagittalSharp5v49MUp",
|
|
|
|
"accSagittalSharp5v7kDown",
|
|
|
|
"accSagittalSharp5v7kUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accSagittalSharp7CDown",
|
|
|
|
"accSagittalSharp7CUp",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accSagittalSharp7v11CDown",
|
|
|
|
"accSagittalSharp7v11CUp",
|
|
|
|
"accSagittalSharp7v11kDown",
|
|
|
|
"accSagittalSharp7v11kUp",
|
|
|
|
"accSagittalSharp7v19CDown",
|
|
|
|
"accSagittalSharp7v19CUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accSagittalUnused1",
|
|
|
|
"accSagittalUnused2",
|
|
|
|
"accSagittalUnused3",
|
|
|
|
"accSagittalUnused4",
|
|
|
|
"accdnCombDot",
|
|
|
|
"accdnCombLH2RanksEmpty",
|
|
|
|
"accdnCombLH3RanksEmptySquare",
|
|
|
|
"accdnCombRH3RanksEmpty",
|
|
|
|
"accdnCombRH4RanksEmpty",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accdnDiatonicClef",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accdnLH2Ranks16Round",
|
|
|
|
"accdnLH2Ranks8Plus16Round",
|
|
|
|
"accdnLH2Ranks8Round",
|
|
|
|
"accdnLH2RanksFullMasterRound",
|
|
|
|
"accdnLH2RanksMasterPlus16Round",
|
|
|
|
"accdnLH2RanksMasterRound",
|
|
|
|
"accdnLH3Ranks2Plus8Square",
|
|
|
|
"accdnLH3Ranks2Square",
|
|
|
|
"accdnLH3Ranks8Square",
|
|
|
|
"accdnLH3RanksDouble8Square",
|
|
|
|
"accdnLH3RanksTuttiSquare",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accdnPull",
|
|
|
|
"accdnPush",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accdnRH3RanksAccordion",
|
|
|
|
"accdnRH3RanksAuthenticMusette",
|
|
|
|
"accdnRH3RanksBandoneon",
|
|
|
|
"accdnRH3RanksBassoon",
|
|
|
|
"accdnRH3RanksClarinet",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accdnRH3RanksDoubleTremoloLower8ve",
|
|
|
|
"accdnRH3RanksDoubleTremoloUpper8ve",
|
|
|
|
"accdnRH3RanksFullFactory",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accdnRH3RanksHarmonium",
|
|
|
|
"accdnRH3RanksImitationMusette",
|
|
|
|
"accdnRH3RanksLowerTremolo8",
|
|
|
|
"accdnRH3RanksMaster",
|
|
|
|
"accdnRH3RanksOboe",
|
|
|
|
"accdnRH3RanksOrgan",
|
|
|
|
"accdnRH3RanksPiccolo",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accdnRH3RanksTremoloLower8ve",
|
|
|
|
"accdnRH3RanksTremoloUpper8ve",
|
|
|
|
"accdnRH3RanksTwoChoirs",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accdnRH3RanksUpperTremolo8",
|
|
|
|
"accdnRH3RanksViolin",
|
|
|
|
"accdnRH4RanksAlto",
|
|
|
|
"accdnRH4RanksBassAlto",
|
|
|
|
"accdnRH4RanksMaster",
|
|
|
|
"accdnRH4RanksSoftBass",
|
|
|
|
"accdnRH4RanksSoftTenor",
|
|
|
|
"accdnRH4RanksSoprano",
|
|
|
|
"accdnRH4RanksTenor",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accdnRicochet2",
|
|
|
|
"accdnRicochet3",
|
|
|
|
"accdnRicochet4",
|
|
|
|
"accdnRicochet5",
|
|
|
|
"accdnRicochet6",
|
|
|
|
"accdnRicochetStem2",
|
|
|
|
"accdnRicochetStem3",
|
|
|
|
"accdnRicochetStem4",
|
|
|
|
"accdnRicochetStem5",
|
|
|
|
"accdnRicochetStem6",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accidental1CommaFlat",
|
|
|
|
"accidental1CommaSharp",
|
|
|
|
"accidental2CommaFlat",
|
|
|
|
"accidental2CommaSharp",
|
|
|
|
"accidental3CommaFlat",
|
|
|
|
"accidental3CommaSharp",
|
|
|
|
"accidental4CommaFlat",
|
|
|
|
"accidental5CommaSharp",
|
|
|
|
"accidentalArrowDown",
|
|
|
|
"accidentalArrowUp",
|
|
|
|
"accidentalBakiyeFlat",
|
|
|
|
"accidentalBakiyeSharp",
|
|
|
|
"accidentalBuyukMucennebFlat",
|
|
|
|
"accidentalBuyukMucennebSharp",
|
|
|
|
"accidentalCombiningCloseCurlyBrace",
|
|
|
|
"accidentalCombiningLower17Schisma",
|
|
|
|
"accidentalCombiningLower19Schisma",
|
|
|
|
"accidentalCombiningLower23Limit29LimitComma",
|
|
|
|
"accidentalCombiningLower31Schisma",
|
|
|
|
"accidentalCombiningOpenCurlyBrace",
|
|
|
|
"accidentalCombiningRaise17Schisma",
|
|
|
|
"accidentalCombiningRaise19Schisma",
|
|
|
|
"accidentalCombiningRaise23Limit29LimitComma",
|
|
|
|
"accidentalCombiningRaise31Schisma",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accidentalCommaSlashDown",
|
|
|
|
"accidentalCommaSlashUp",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accidentalDoubleFlat",
|
|
|
|
"accidentalDoubleFlatEqualTempered",
|
|
|
|
"accidentalDoubleFlatOneArrowDown",
|
|
|
|
"accidentalDoubleFlatOneArrowUp",
|
|
|
|
"accidentalDoubleFlatReversed",
|
|
|
|
"accidentalDoubleFlatThreeArrowsDown",
|
|
|
|
"accidentalDoubleFlatThreeArrowsUp",
|
2014-04-18 18:55:33 +02:00
|
|
|
"accidentalDoubleFlatTurned",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accidentalDoubleFlatTwoArrowsDown",
|
|
|
|
"accidentalDoubleFlatTwoArrowsUp",
|
|
|
|
"accidentalDoubleSharp",
|
|
|
|
"accidentalDoubleSharpEqualTempered",
|
|
|
|
"accidentalDoubleSharpOneArrowDown",
|
|
|
|
"accidentalDoubleSharpOneArrowUp",
|
|
|
|
"accidentalDoubleSharpThreeArrowsDown",
|
|
|
|
"accidentalDoubleSharpThreeArrowsUp",
|
|
|
|
"accidentalDoubleSharpTwoArrowsDown",
|
|
|
|
"accidentalDoubleSharpTwoArrowsUp",
|
|
|
|
"accidentalFilledReversedFlatAndFlat",
|
|
|
|
"accidentalFilledReversedFlatAndFlatArrowDown",
|
|
|
|
"accidentalFilledReversedFlatAndFlatArrowUp",
|
|
|
|
"accidentalFilledReversedFlatArrowDown",
|
|
|
|
"accidentalFilledReversedFlatArrowUp",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accidentalFiveQuarterTonesFlatArrowDown",
|
|
|
|
"accidentalFiveQuarterTonesSharpArrowUp",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accidentalFlat",
|
|
|
|
"accidentalFlatEqualTempered",
|
|
|
|
"accidentalFlatOneArrowDown",
|
|
|
|
"accidentalFlatOneArrowUp",
|
|
|
|
"accidentalFlatThreeArrowsDown",
|
|
|
|
"accidentalFlatThreeArrowsUp",
|
2014-04-18 18:55:33 +02:00
|
|
|
"accidentalFlatTurned",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accidentalFlatTwoArrowsDown",
|
|
|
|
"accidentalFlatTwoArrowsUp",
|
|
|
|
"accidentalHalfSharpArrowDown",
|
|
|
|
"accidentalHalfSharpArrowUp",
|
|
|
|
"accidentalJohnston13",
|
|
|
|
"accidentalJohnston31",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accidentalJohnstonDown",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accidentalJohnstonEl",
|
|
|
|
"accidentalJohnstonMinus",
|
|
|
|
"accidentalJohnstonPlus",
|
|
|
|
"accidentalJohnstonSeven",
|
2013-11-29 00:37:48 +01:00
|
|
|
"accidentalJohnstonUp",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accidentalKomaFlat",
|
|
|
|
"accidentalKomaSharp",
|
|
|
|
"accidentalKoron",
|
|
|
|
"accidentalKucukMucennebFlat",
|
|
|
|
"accidentalKucukMucennebSharp",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accidentalLargeDoubleSharp",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accidentalLowerOneSeptimalComma",
|
|
|
|
"accidentalLowerOneTridecimalQuartertone",
|
|
|
|
"accidentalLowerOneUndecimalQuartertone",
|
|
|
|
"accidentalLowerTwoSeptimalCommas",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accidentalNarrowReversedFlat",
|
|
|
|
"accidentalNarrowReversedFlatAndFlat",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accidentalNatural",
|
|
|
|
"accidentalNaturalEqualTempered",
|
|
|
|
"accidentalNaturalFlat",
|
|
|
|
"accidentalNaturalOneArrowDown",
|
|
|
|
"accidentalNaturalOneArrowUp",
|
|
|
|
"accidentalNaturalReversed",
|
|
|
|
"accidentalNaturalSharp",
|
|
|
|
"accidentalNaturalThreeArrowsDown",
|
|
|
|
"accidentalNaturalThreeArrowsUp",
|
|
|
|
"accidentalNaturalTwoArrowsDown",
|
|
|
|
"accidentalNaturalTwoArrowsUp",
|
|
|
|
"accidentalOneAndAHalfSharpsArrowDown",
|
|
|
|
"accidentalOneAndAHalfSharpsArrowUp",
|
2014-04-18 18:55:33 +02:00
|
|
|
"accidentalOneThirdToneFlatFerneyhough",
|
|
|
|
"accidentalOneThirdToneSharpFerneyhough",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accidentalParensLeft",
|
|
|
|
"accidentalParensRight",
|
|
|
|
"accidentalQuarterToneFlat4",
|
|
|
|
"accidentalQuarterToneFlatArrowUp",
|
|
|
|
"accidentalQuarterToneFlatFilledReversed",
|
|
|
|
"accidentalQuarterToneFlatNaturalArrowDown",
|
|
|
|
"accidentalQuarterToneFlatPenderecki",
|
|
|
|
"accidentalQuarterToneFlatStein",
|
|
|
|
"accidentalQuarterToneFlatVanBlankenburg",
|
|
|
|
"accidentalQuarterToneSharp4",
|
|
|
|
"accidentalQuarterToneSharpArrowDown",
|
|
|
|
"accidentalQuarterToneSharpBusotti",
|
|
|
|
"accidentalQuarterToneSharpNaturalArrowUp",
|
|
|
|
"accidentalQuarterToneSharpStein",
|
|
|
|
"accidentalQuarterToneSharpWiggle",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accidentalRaiseOneSeptimalComma",
|
|
|
|
"accidentalRaiseOneTridecimalQuartertone",
|
|
|
|
"accidentalRaiseOneUndecimalQuartertone",
|
|
|
|
"accidentalRaiseTwoSeptimalCommas",
|
|
|
|
"accidentalReversedFlatAndFlatArrowDown",
|
|
|
|
"accidentalReversedFlatAndFlatArrowUp",
|
|
|
|
"accidentalReversedFlatArrowDown",
|
|
|
|
"accidentalReversedFlatArrowUp",
|
|
|
|
"accidentalSharp",
|
|
|
|
"accidentalSharpEqualTempered",
|
|
|
|
"accidentalSharpOneArrowDown",
|
|
|
|
"accidentalSharpOneArrowUp",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accidentalSharpOneHorizontalStroke",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accidentalSharpReversed",
|
|
|
|
"accidentalSharpSharp",
|
|
|
|
"accidentalSharpThreeArrowsDown",
|
|
|
|
"accidentalSharpThreeArrowsUp",
|
|
|
|
"accidentalSharpTwoArrowsDown",
|
|
|
|
"accidentalSharpTwoArrowsUp",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accidentalSims12Down",
|
|
|
|
"accidentalSims12Up",
|
|
|
|
"accidentalSims4Down",
|
|
|
|
"accidentalSims4Up",
|
|
|
|
"accidentalSims6Down",
|
|
|
|
"accidentalSims6Up",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accidentalSori",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accidentalTavenerFlat",
|
|
|
|
"accidentalTavenerSharp",
|
|
|
|
"accidentalThreeQuarterTonesFlatArrowDown",
|
|
|
|
"accidentalThreeQuarterTonesFlatArrowUp",
|
|
|
|
"accidentalThreeQuarterTonesFlatCouper",
|
|
|
|
"accidentalThreeQuarterTonesFlatGrisey",
|
|
|
|
"accidentalThreeQuarterTonesFlatTartini",
|
|
|
|
"accidentalThreeQuarterTonesFlatZimmermann",
|
|
|
|
"accidentalThreeQuarterTonesSharpArrowDown",
|
|
|
|
"accidentalThreeQuarterTonesSharpArrowUp",
|
|
|
|
"accidentalThreeQuarterTonesSharpBusotti",
|
|
|
|
"accidentalThreeQuarterTonesSharpStein",
|
2013-11-06 15:58:05 +01:00
|
|
|
"accidentalTripleFlat",
|
|
|
|
"accidentalTripleSharp",
|
2014-04-18 18:55:33 +02:00
|
|
|
"accidentalTwoThirdTonesFlatFerneyhough",
|
|
|
|
"accidentalTwoThirdTonesSharpFerneyhough",
|
2014-03-15 12:31:29 +01:00
|
|
|
"accidentalWilsonMinus",
|
|
|
|
"accidentalWilsonPlus",
|
|
|
|
"accidentalWyschnegradsky10TwelfthsFlat",
|
|
|
|
"accidentalWyschnegradsky10TwelfthsSharp",
|
|
|
|
"accidentalWyschnegradsky11TwelfthsFlat",
|
|
|
|
"accidentalWyschnegradsky11TwelfthsSharp",
|
|
|
|
"accidentalWyschnegradsky1TwelfthsFlat",
|
|
|
|
"accidentalWyschnegradsky1TwelfthsSharp",
|
|
|
|
"accidentalWyschnegradsky2TwelfthsFlat",
|
|
|
|
"accidentalWyschnegradsky2TwelfthsSharp",
|
|
|
|
"accidentalWyschnegradsky3TwelfthsFlat",
|
|
|
|
"accidentalWyschnegradsky3TwelfthsSharp",
|
|
|
|
"accidentalWyschnegradsky4TwelfthsFlat",
|
|
|
|
"accidentalWyschnegradsky4TwelfthsSharp",
|
|
|
|
"accidentalWyschnegradsky5TwelfthsFlat",
|
|
|
|
"accidentalWyschnegradsky5TwelfthsSharp",
|
|
|
|
"accidentalWyschnegradsky6TwelfthsFlat",
|
|
|
|
"accidentalWyschnegradsky6TwelfthsSharp",
|
|
|
|
"accidentalWyschnegradsky7TwelfthsFlat",
|
|
|
|
"accidentalWyschnegradsky7TwelfthsSharp",
|
|
|
|
"accidentalWyschnegradsky8TwelfthsFlat",
|
|
|
|
"accidentalWyschnegradsky8TwelfthsSharp",
|
|
|
|
"accidentalWyschnegradsky9TwelfthsFlat",
|
|
|
|
"accidentalWyschnegradsky9TwelfthsSharp",
|
|
|
|
"accidentalXenakisOneThirdToneSharp",
|
|
|
|
"accidentalXenakisTwoThirdTonesSharp",
|
2013-11-06 15:58:05 +01:00
|
|
|
"analyticsEndStimme",
|
|
|
|
"analyticsHauptstimme",
|
|
|
|
"analyticsInversion1",
|
|
|
|
"analyticsNebenstimme",
|
|
|
|
"analyticsStartStimme",
|
|
|
|
"analyticsTheme",
|
|
|
|
"analyticsTheme1",
|
|
|
|
"analyticsThemeInversion",
|
|
|
|
"analyticsThemeRetrograde",
|
|
|
|
"analyticsThemeRetrogradeInversion",
|
|
|
|
"arpeggiatoDown",
|
|
|
|
"arpeggiatoUp",
|
|
|
|
"arrowBlackDown",
|
|
|
|
"arrowBlackDownLeft",
|
|
|
|
"arrowBlackDownRight",
|
|
|
|
"arrowBlackLeft",
|
|
|
|
"arrowBlackRight",
|
|
|
|
"arrowBlackUp",
|
|
|
|
"arrowBlackUpLeft",
|
|
|
|
"arrowBlackUpRight",
|
2014-04-18 18:55:33 +02:00
|
|
|
"arrowOpenDown",
|
|
|
|
"arrowOpenDownLeft",
|
|
|
|
"arrowOpenDownRight",
|
|
|
|
"arrowOpenLeft",
|
|
|
|
"arrowOpenRight",
|
|
|
|
"arrowOpenUp",
|
|
|
|
"arrowOpenUpLeft",
|
|
|
|
"arrowOpenUpRight",
|
2013-11-06 15:58:05 +01:00
|
|
|
"arrowWhiteDown",
|
|
|
|
"arrowWhiteDownLeft",
|
|
|
|
"arrowWhiteDownRight",
|
|
|
|
"arrowWhiteLeft",
|
|
|
|
"arrowWhiteRight",
|
|
|
|
"arrowWhiteUp",
|
|
|
|
"arrowWhiteUpLeft",
|
|
|
|
"arrowWhiteUpRight",
|
|
|
|
"arrowheadBlackDown",
|
|
|
|
"arrowheadBlackDownLeft",
|
|
|
|
"arrowheadBlackDownRight",
|
|
|
|
"arrowheadBlackLeft",
|
|
|
|
"arrowheadBlackRight",
|
|
|
|
"arrowheadBlackUp",
|
|
|
|
"arrowheadBlackUpLeft",
|
|
|
|
"arrowheadBlackUpRight",
|
2014-04-18 18:55:33 +02:00
|
|
|
"arrowheadOpenDown",
|
|
|
|
"arrowheadOpenDownLeft",
|
|
|
|
"arrowheadOpenDownRight",
|
|
|
|
"arrowheadOpenLeft",
|
|
|
|
"arrowheadOpenRight",
|
|
|
|
"arrowheadOpenUp",
|
|
|
|
"arrowheadOpenUpLeft",
|
|
|
|
"arrowheadOpenUpRight",
|
2013-11-06 15:58:05 +01:00
|
|
|
"arrowheadWhiteDown",
|
|
|
|
"arrowheadWhiteDownLeft",
|
|
|
|
"arrowheadWhiteDownRight",
|
|
|
|
"arrowheadWhiteLeft",
|
|
|
|
"arrowheadWhiteRight",
|
|
|
|
"arrowheadWhiteUp",
|
|
|
|
"arrowheadWhiteUpLeft",
|
|
|
|
"arrowheadWhiteUpRight",
|
2014-03-15 12:31:29 +01:00
|
|
|
"articAccentAbove",
|
|
|
|
"articAccentBelow",
|
2013-11-06 15:58:05 +01:00
|
|
|
"articAccentStaccatoAbove",
|
|
|
|
"articAccentStaccatoBelow",
|
|
|
|
"articLaissezVibrerAbove",
|
|
|
|
"articLaissezVibrerBelow",
|
|
|
|
"articMarcatoAbove",
|
|
|
|
"articMarcatoBelow",
|
|
|
|
"articMarcatoStaccatoAbove",
|
|
|
|
"articMarcatoStaccatoBelow",
|
|
|
|
"articStaccatissimoAbove",
|
|
|
|
"articStaccatissimoBelow",
|
|
|
|
"articStaccatissimoStrokeAbove",
|
|
|
|
"articStaccatissimoStrokeBelow",
|
|
|
|
"articStaccatissimoWedgeAbove",
|
|
|
|
"articStaccatissimoWedgeBelow",
|
2014-03-15 12:31:29 +01:00
|
|
|
"articStaccatoAbove",
|
|
|
|
"articStaccatoBelow",
|
2013-11-06 15:58:05 +01:00
|
|
|
"articStressAbove",
|
|
|
|
"articStressBelow",
|
2014-03-15 12:31:29 +01:00
|
|
|
"articTenutoAbove",
|
|
|
|
"articTenutoAccentAbove",
|
|
|
|
"articTenutoAccentBelow",
|
|
|
|
"articTenutoBelow",
|
2014-04-18 18:55:33 +02:00
|
|
|
"articTenutoStaccatoAbove",
|
|
|
|
"articTenutoStaccatoBelow",
|
2013-11-06 15:58:05 +01:00
|
|
|
"articUnstressAbove",
|
|
|
|
"articUnstressBelow",
|
|
|
|
"augmentationDot",
|
|
|
|
"barlineDashed",
|
|
|
|
"barlineDotted",
|
|
|
|
"barlineDouble",
|
|
|
|
"barlineFinal",
|
|
|
|
"barlineHeavy",
|
|
|
|
"barlineHeavyHeavy",
|
|
|
|
"barlineReverseFinal",
|
|
|
|
"barlineShort",
|
|
|
|
"barlineSingle",
|
|
|
|
"barlineTick",
|
2014-04-18 18:55:33 +02:00
|
|
|
"beamAccelRit1",
|
|
|
|
"beamAccelRit10",
|
|
|
|
"beamAccelRit11",
|
|
|
|
"beamAccelRit12",
|
|
|
|
"beamAccelRit13",
|
|
|
|
"beamAccelRit14",
|
|
|
|
"beamAccelRit15",
|
|
|
|
"beamAccelRit2",
|
|
|
|
"beamAccelRit3",
|
|
|
|
"beamAccelRit4",
|
|
|
|
"beamAccelRit5",
|
|
|
|
"beamAccelRit6",
|
|
|
|
"beamAccelRit7",
|
|
|
|
"beamAccelRit8",
|
|
|
|
"beamAccelRit9",
|
|
|
|
"beamAccelRitFinal",
|
2013-11-06 15:58:05 +01:00
|
|
|
"brace",
|
|
|
|
"bracket",
|
|
|
|
"bracketBottom",
|
|
|
|
"bracketTop",
|
|
|
|
"brassBend",
|
|
|
|
"brassDoitLong",
|
|
|
|
"brassDoitMedium",
|
|
|
|
"brassDoitShort",
|
|
|
|
"brassFallLipLong",
|
|
|
|
"brassFallLipMedium",
|
|
|
|
"brassFallLipShort",
|
|
|
|
"brassFallRoughLong",
|
|
|
|
"brassFallRoughMedium",
|
|
|
|
"brassFallRoughShort",
|
|
|
|
"brassFallSmoothLong",
|
|
|
|
"brassFallSmoothMedium",
|
|
|
|
"brassFallSmoothShort",
|
|
|
|
"brassFlip",
|
|
|
|
"brassHarmonMuteClosed",
|
|
|
|
"brassHarmonMuteStemHalfLeft",
|
|
|
|
"brassHarmonMuteStemHalfRight",
|
|
|
|
"brassHarmonMuteStemOpen",
|
|
|
|
"brassJazzTurn",
|
|
|
|
"brassLiftLong",
|
|
|
|
"brassLiftMedium",
|
|
|
|
"brassLiftShort",
|
|
|
|
"brassMuteClosed",
|
|
|
|
"brassMuteHalfClosed",
|
|
|
|
"brassMuteOpen",
|
|
|
|
"brassPlop",
|
|
|
|
"brassScoop",
|
|
|
|
"brassSmear",
|
2014-04-18 18:55:33 +02:00
|
|
|
"breathMarkComma",
|
2013-11-06 15:58:05 +01:00
|
|
|
"breathMarkSalzedo",
|
2014-04-18 18:55:33 +02:00
|
|
|
"breathMarkTick",
|
|
|
|
"breathMarkUpbow",
|
2013-11-06 15:58:05 +01:00
|
|
|
"bridgeClef",
|
|
|
|
"buzzRoll",
|
|
|
|
"cClef",
|
2013-11-29 00:37:48 +01:00
|
|
|
"cClef8vb",
|
2013-11-06 15:58:05 +01:00
|
|
|
"cClefArrowDown",
|
|
|
|
"cClefArrowUp",
|
2014-04-18 18:55:33 +02:00
|
|
|
"cClefChange",
|
2013-11-06 15:58:05 +01:00
|
|
|
"cClefCombining",
|
|
|
|
"cClefReversed",
|
2014-04-18 18:55:33 +02:00
|
|
|
"cClefSquare",
|
2013-11-06 15:58:05 +01:00
|
|
|
"cClefTriangular",
|
|
|
|
"cClefTriangularToFClef",
|
|
|
|
"caesura",
|
2014-04-18 18:55:33 +02:00
|
|
|
"caesuraCurved",
|
2013-11-06 15:58:05 +01:00
|
|
|
"caesuraShort",
|
|
|
|
"caesuraThick",
|
2013-11-29 00:37:48 +01:00
|
|
|
"chantAccentusAbove",
|
|
|
|
"chantAccentusBelow",
|
2014-03-15 12:31:29 +01:00
|
|
|
"chantAuctumAsc",
|
|
|
|
"chantAuctumDesc",
|
2013-11-29 00:37:48 +01:00
|
|
|
"chantAugmentum",
|
|
|
|
"chantCaesura",
|
2014-04-18 18:55:33 +02:00
|
|
|
"chantCclef",
|
2013-11-29 00:37:48 +01:00
|
|
|
"chantCirculusAbove",
|
|
|
|
"chantCirculusBelow",
|
|
|
|
"chantConnectingLineAsc2nd",
|
|
|
|
"chantConnectingLineAsc3rd",
|
|
|
|
"chantConnectingLineAsc4th",
|
|
|
|
"chantConnectingLineAsc5th",
|
2014-03-15 12:31:29 +01:00
|
|
|
"chantConnectingLineAsc6th",
|
2014-04-18 18:55:33 +02:00
|
|
|
"chantCustosStemDownPosHigh",
|
|
|
|
"chantCustosStemDownPosHighest",
|
|
|
|
"chantCustosStemDownPosMiddle",
|
|
|
|
"chantCustosStemUpPosLow",
|
|
|
|
"chantCustosStemUpPosLowest",
|
|
|
|
"chantCustosStemUpPosMiddle",
|
2014-03-15 12:31:29 +01:00
|
|
|
"chantDeminutumLower",
|
|
|
|
"chantDeminutumUpper",
|
2013-11-29 00:37:48 +01:00
|
|
|
"chantDivisioFinalis",
|
|
|
|
"chantDivisioMaior",
|
|
|
|
"chantDivisioMaxima",
|
|
|
|
"chantDivisioMinima",
|
2014-03-15 12:31:29 +01:00
|
|
|
"chantEntryLineAsc2nd",
|
|
|
|
"chantEntryLineAsc3rd",
|
|
|
|
"chantEntryLineAsc4th",
|
|
|
|
"chantEntryLineAsc5th",
|
|
|
|
"chantEntryLineAsc6th",
|
2013-11-29 00:37:48 +01:00
|
|
|
"chantEpisema",
|
2014-04-18 18:55:33 +02:00
|
|
|
"chantFclef",
|
2013-11-29 00:37:48 +01:00
|
|
|
"chantIctusAbove",
|
|
|
|
"chantIctusBelow",
|
2014-03-15 12:31:29 +01:00
|
|
|
"chantLigaturaDesc2nd",
|
|
|
|
"chantLigaturaDesc3rd",
|
|
|
|
"chantLigaturaDesc4th",
|
|
|
|
"chantLigaturaDesc5th",
|
2013-11-29 00:37:48 +01:00
|
|
|
"chantOriscusAscending",
|
|
|
|
"chantOriscusDescending",
|
2014-04-18 18:55:33 +02:00
|
|
|
"chantOriscusLiquescens",
|
2014-03-15 12:31:29 +01:00
|
|
|
"chantPodatusLower",
|
|
|
|
"chantPodatusUpper",
|
2013-11-29 00:37:48 +01:00
|
|
|
"chantPunctum",
|
|
|
|
"chantPunctumCavum",
|
|
|
|
"chantPunctumInclinatum",
|
2014-03-15 12:31:29 +01:00
|
|
|
"chantPunctumInclinatumAuctum",
|
|
|
|
"chantPunctumInclinatumDeminutum",
|
2013-11-29 00:37:48 +01:00
|
|
|
"chantPunctumLinea",
|
|
|
|
"chantPunctumLineaCavum",
|
|
|
|
"chantPunctumVirga",
|
2014-03-15 12:31:29 +01:00
|
|
|
"chantPunctumVirgaReversed",
|
2013-11-29 00:37:48 +01:00
|
|
|
"chantQuilisma",
|
|
|
|
"chantSemicirculusAbove",
|
|
|
|
"chantSemicirculusBelow",
|
|
|
|
"chantStaff",
|
|
|
|
"chantStaffNarrow",
|
|
|
|
"chantStaffWide",
|
2014-03-15 12:31:29 +01:00
|
|
|
"chantStrophicus",
|
|
|
|
"chantStrophicusAuctus",
|
2014-04-18 18:55:33 +02:00
|
|
|
"chantStrophicusLiquescens2nd",
|
|
|
|
"chantStrophicusLiquescens3rd",
|
|
|
|
"chantStrophicusLiquescens4th",
|
|
|
|
"chantStrophicusLiquescens5th",
|
2013-11-29 00:37:48 +01:00
|
|
|
"chantVirgula",
|
2014-04-18 18:55:33 +02:00
|
|
|
"clefChangeCombining",
|
2013-11-06 15:58:05 +01:00
|
|
|
"coda",
|
|
|
|
"codaSquare",
|
|
|
|
"conductorBeat2Compound",
|
|
|
|
"conductorBeat2Simple",
|
|
|
|
"conductorBeat3Compound",
|
|
|
|
"conductorBeat3Simple",
|
|
|
|
"conductorBeat4Compound",
|
|
|
|
"conductorBeat4Simple",
|
|
|
|
"conductorLeftBeat",
|
|
|
|
"conductorRightBeat",
|
|
|
|
"conductorStrongBeat",
|
|
|
|
"conductorWeakBeat",
|
|
|
|
"controlBeginBeam",
|
|
|
|
"controlBeginPhrase",
|
|
|
|
"controlBeginSlur",
|
|
|
|
"controlBeginTie",
|
|
|
|
"controlEndBeam",
|
|
|
|
"controlEndPhrase",
|
|
|
|
"controlEndSlur",
|
|
|
|
"controlEndTie",
|
|
|
|
"csymAugmented",
|
2014-03-15 12:31:29 +01:00
|
|
|
"csymBracketLeftTall",
|
|
|
|
"csymBracketRightTall",
|
2013-11-06 15:58:05 +01:00
|
|
|
"csymDiminished",
|
|
|
|
"csymHalfDiminished",
|
|
|
|
"csymMajorSeventh",
|
|
|
|
"csymMinor",
|
2014-03-15 12:31:29 +01:00
|
|
|
"csymParensLeftTall",
|
|
|
|
"csymParensRightTall",
|
|
|
|
"curlewSign",
|
2013-11-06 15:58:05 +01:00
|
|
|
"daCapo",
|
|
|
|
"dalSegno",
|
2013-11-29 00:37:48 +01:00
|
|
|
"daseianExcellentes1",
|
|
|
|
"daseianExcellentes2",
|
|
|
|
"daseianExcellentes3",
|
|
|
|
"daseianExcellentes4",
|
|
|
|
"daseianFinales1",
|
|
|
|
"daseianFinales2",
|
|
|
|
"daseianFinales3",
|
|
|
|
"daseianFinales4",
|
|
|
|
"daseianGraves1",
|
|
|
|
"daseianGraves2",
|
|
|
|
"daseianGraves3",
|
|
|
|
"daseianGraves4",
|
|
|
|
"daseianResidua1",
|
|
|
|
"daseianResidua2",
|
|
|
|
"daseianSuperiores1",
|
|
|
|
"daseianSuperiores2",
|
|
|
|
"daseianSuperiores3",
|
|
|
|
"daseianSuperiores4",
|
2013-11-06 15:58:05 +01:00
|
|
|
"doubleTongueAbove",
|
|
|
|
"doubleTongueBelow",
|
|
|
|
"dynamicCrescendoHairpin",
|
|
|
|
"dynamicDiminuendoHairpin",
|
|
|
|
"dynamicFF",
|
|
|
|
"dynamicFFF",
|
|
|
|
"dynamicFFFF",
|
|
|
|
"dynamicFFFFF",
|
|
|
|
"dynamicFFFFFF",
|
|
|
|
"dynamicForte",
|
|
|
|
"dynamicFortePiano",
|
|
|
|
"dynamicForzando",
|
|
|
|
"dynamicMF",
|
|
|
|
"dynamicMP",
|
2014-04-18 18:55:33 +02:00
|
|
|
"dynamicMessaDiVoce",
|
2013-11-06 15:58:05 +01:00
|
|
|
"dynamicMezzo",
|
|
|
|
"dynamicNiente",
|
|
|
|
"dynamicNienteForHairpin",
|
2013-11-29 00:37:48 +01:00
|
|
|
"dynamicPF",
|
2013-11-06 15:58:05 +01:00
|
|
|
"dynamicPP",
|
|
|
|
"dynamicPPP",
|
|
|
|
"dynamicPPPP",
|
|
|
|
"dynamicPPPPP",
|
|
|
|
"dynamicPPPPPP",
|
|
|
|
"dynamicPiano",
|
|
|
|
"dynamicRinforzando",
|
|
|
|
"dynamicRinforzando1",
|
|
|
|
"dynamicRinforzando2",
|
|
|
|
"dynamicSforzando",
|
2013-11-29 00:37:48 +01:00
|
|
|
"dynamicSforzando1",
|
2013-11-06 15:58:05 +01:00
|
|
|
"dynamicSforzandoPianissimo",
|
|
|
|
"dynamicSforzandoPiano",
|
|
|
|
"dynamicSforzato",
|
|
|
|
"dynamicSforzatoFF",
|
2014-03-15 12:31:29 +01:00
|
|
|
"dynamicSforzatoPiano",
|
2013-11-06 15:58:05 +01:00
|
|
|
"dynamicZ",
|
2014-03-15 12:31:29 +01:00
|
|
|
"elecAudioChannelsEight",
|
|
|
|
"elecAudioChannelsFive",
|
|
|
|
"elecAudioChannelsFour",
|
|
|
|
"elecAudioChannelsOne",
|
|
|
|
"elecAudioChannelsSeven",
|
|
|
|
"elecAudioChannelsSix",
|
|
|
|
"elecAudioChannelsThreeFrontal",
|
|
|
|
"elecAudioChannelsThreeSurround",
|
|
|
|
"elecAudioChannelsTwo",
|
|
|
|
"elecAudioIn",
|
|
|
|
"elecAudioMono",
|
|
|
|
"elecAudioOut",
|
|
|
|
"elecAudioStereo",
|
|
|
|
"elecCamera",
|
|
|
|
"elecDataIn",
|
|
|
|
"elecDataOut",
|
|
|
|
"elecDisc",
|
|
|
|
"elecDownload",
|
|
|
|
"elecEject",
|
|
|
|
"elecFastForward",
|
|
|
|
"elecHeadphones",
|
|
|
|
"elecHeadset",
|
|
|
|
"elecLineIn",
|
|
|
|
"elecLineOut",
|
2013-11-06 15:58:05 +01:00
|
|
|
"elecLoop",
|
|
|
|
"elecLoudspeaker",
|
|
|
|
"elecMIDIController0",
|
|
|
|
"elecMIDIController100",
|
|
|
|
"elecMIDIController20",
|
|
|
|
"elecMIDIController40",
|
|
|
|
"elecMIDIController60",
|
|
|
|
"elecMIDIController80",
|
|
|
|
"elecMIDIIn",
|
|
|
|
"elecMIDIOut",
|
|
|
|
"elecMicrophone",
|
2014-03-15 12:31:29 +01:00
|
|
|
"elecMicrophoneMute",
|
|
|
|
"elecMicrophoneUnmute",
|
|
|
|
"elecMixingConsole",
|
|
|
|
"elecMonitor",
|
|
|
|
"elecMute",
|
2013-11-06 15:58:05 +01:00
|
|
|
"elecPause",
|
|
|
|
"elecPlay",
|
2014-03-15 12:31:29 +01:00
|
|
|
"elecPowerOnOff",
|
|
|
|
"elecProjector",
|
|
|
|
"elecReplay",
|
|
|
|
"elecRewind",
|
|
|
|
"elecShuffle",
|
2013-11-06 15:58:05 +01:00
|
|
|
"elecSkipBackwards",
|
|
|
|
"elecSkipForwards",
|
|
|
|
"elecStop",
|
2014-03-15 12:31:29 +01:00
|
|
|
"elecTape",
|
|
|
|
"elecUSB",
|
|
|
|
"elecUnmute",
|
|
|
|
"elecUpload",
|
|
|
|
"elecVideoCamera",
|
|
|
|
"elecVideoIn",
|
|
|
|
"elecVideoOut",
|
|
|
|
"elecVolumeFader",
|
|
|
|
"elecVolumeFaderThumb",
|
2013-11-06 15:58:05 +01:00
|
|
|
"elecVolumeLevel0",
|
|
|
|
"elecVolumeLevel100",
|
|
|
|
"elecVolumeLevel20",
|
|
|
|
"elecVolumeLevel40",
|
|
|
|
"elecVolumeLevel60",
|
|
|
|
"elecVolumeLevel80",
|
|
|
|
"fClef",
|
|
|
|
"fClef15ma",
|
|
|
|
"fClef15mb",
|
|
|
|
"fClef8va",
|
|
|
|
"fClef8vb",
|
|
|
|
"fClefArrowDown",
|
|
|
|
"fClefArrowUp",
|
2014-04-18 18:55:33 +02:00
|
|
|
"fClefChange",
|
2013-11-06 15:58:05 +01:00
|
|
|
"fClefReversed",
|
|
|
|
"fClefTriangular",
|
|
|
|
"fClefTriangularToCClef",
|
2014-04-18 18:55:33 +02:00
|
|
|
"fClefTurned",
|
2013-11-06 15:58:05 +01:00
|
|
|
"fermataAbove",
|
|
|
|
"fermataBelow",
|
|
|
|
"fermataLongAbove",
|
|
|
|
"fermataLongBelow",
|
2013-11-29 00:37:48 +01:00
|
|
|
"fermataLongHenzeAbove",
|
|
|
|
"fermataLongHenzeBelow",
|
2013-11-06 15:58:05 +01:00
|
|
|
"fermataShortAbove",
|
|
|
|
"fermataShortBelow",
|
2013-11-29 00:37:48 +01:00
|
|
|
"fermataShortHenzeAbove",
|
|
|
|
"fermataShortHenzeBelow",
|
2013-11-06 15:58:05 +01:00
|
|
|
"fermataVeryLongAbove",
|
|
|
|
"fermataVeryLongBelow",
|
|
|
|
"fermataVeryShortAbove",
|
|
|
|
"fermataVeryShortBelow",
|
|
|
|
"figbass0",
|
|
|
|
"figbass1",
|
|
|
|
"figbass2",
|
|
|
|
"figbass2Raised",
|
|
|
|
"figbass3",
|
|
|
|
"figbass4",
|
|
|
|
"figbass4Raised",
|
|
|
|
"figbass5",
|
|
|
|
"figbass5Raised1",
|
|
|
|
"figbass5Raised2",
|
|
|
|
"figbass5Raised3",
|
|
|
|
"figbass6",
|
|
|
|
"figbass6Raised",
|
|
|
|
"figbass7",
|
|
|
|
"figbass7Raised",
|
|
|
|
"figbass8",
|
|
|
|
"figbass9",
|
|
|
|
"figbass9Raised",
|
|
|
|
"figbassBracketLeft",
|
|
|
|
"figbassBracketRight",
|
|
|
|
"figbassCombiningLowering",
|
|
|
|
"figbassCombiningRaising",
|
|
|
|
"figbassDoubleFlat",
|
|
|
|
"figbassDoubleSharp",
|
|
|
|
"figbassFlat",
|
|
|
|
"figbassNatural",
|
|
|
|
"figbassParensLeft",
|
|
|
|
"figbassParensRight",
|
|
|
|
"figbassPlus",
|
|
|
|
"figbassSharp",
|
2014-03-15 12:31:29 +01:00
|
|
|
"fingeringBsnChart",
|
|
|
|
"fingeringBsnChartThumbsHands",
|
|
|
|
"fingeringBsnLH1stFingerClosed",
|
|
|
|
"fingeringBsnLH1stFingerHalfClosed",
|
|
|
|
"fingeringBsnLH1stFingerQuarterClosed",
|
|
|
|
"fingeringBsnLH1stFingerThreeQuartersClosed",
|
|
|
|
"fingeringBsnLH1stFingerTrill",
|
|
|
|
"fingeringBsnLH2ndFingerClosed",
|
|
|
|
"fingeringBsnLH2ndFingerHalfClosed",
|
|
|
|
"fingeringBsnLH2ndFingerQuarterClosed",
|
|
|
|
"fingeringBsnLH2ndFingerThreeQuartersClosed",
|
|
|
|
"fingeringBsnLH2ndFingerTrill",
|
|
|
|
"fingeringBsnLH3rdFingerClosed",
|
|
|
|
"fingeringBsnLH3rdFingerHalfClosed",
|
|
|
|
"fingeringBsnLH3rdFingerQuarterClosed",
|
|
|
|
"fingeringBsnLH3rdFingerRingClosed",
|
|
|
|
"fingeringBsnLH3rdFingerRingTrill",
|
|
|
|
"fingeringBsnLH3rdFingerThreeQuartersClosed",
|
|
|
|
"fingeringBsnLHHighEClosed",
|
|
|
|
"fingeringBsnLHHighEFlatClosed",
|
|
|
|
"fingeringBsnLHHighEFlatTrill",
|
|
|
|
"fingeringBsnLHHighETrill",
|
|
|
|
"fingeringBsnLHLowDFlatClosed",
|
|
|
|
"fingeringBsnLHLowDFlatTrill",
|
|
|
|
"fingeringBsnLHLowEFlatClosed",
|
|
|
|
"fingeringBsnLHLowEFlatTrill",
|
|
|
|
"fingeringBsnLTCSharpClosed",
|
|
|
|
"fingeringBsnLTCSharpTrill",
|
|
|
|
"fingeringBsnLTHighAClosed",
|
|
|
|
"fingeringBsnLTHighATrill",
|
|
|
|
"fingeringBsnLTHighBClosed",
|
|
|
|
"fingeringBsnLTHighBTrill",
|
|
|
|
"fingeringBsnLTHighDClosed",
|
|
|
|
"fingeringBsnLTHighDTrill",
|
|
|
|
"fingeringBsnLTLowBClosed",
|
|
|
|
"fingeringBsnLTLowBFlatClosed",
|
|
|
|
"fingeringBsnLTLowBFlatTrill",
|
|
|
|
"fingeringBsnLTLowBTrill",
|
|
|
|
"fingeringBsnLTLowCClosed",
|
|
|
|
"fingeringBsnLTLowCTrill",
|
|
|
|
"fingeringBsnLTLowDClosed",
|
|
|
|
"fingeringBsnLTLowDTrill",
|
|
|
|
"fingeringBsnLTWhisperKeyClosed",
|
|
|
|
"fingeringBsnLTWhisperKeyTrill",
|
|
|
|
"fingeringBsnRH1stFingerClosed",
|
|
|
|
"fingeringBsnRH1stFingerHalfClosed",
|
|
|
|
"fingeringBsnRH1stFingerQuarterClosed",
|
|
|
|
"fingeringBsnRH1stFingerThreeQuartersClosed",
|
|
|
|
"fingeringBsnRH1stFingerTrill",
|
|
|
|
"fingeringBsnRH2ndFingerClosed",
|
|
|
|
"fingeringBsnRH2ndFingerHalfClosed",
|
|
|
|
"fingeringBsnRH2ndFingerQuarterClosed",
|
|
|
|
"fingeringBsnRH2ndFingerRingClosed",
|
|
|
|
"fingeringBsnRH2ndFingerThreeQuartersClosed",
|
|
|
|
"fingeringBsnRH2ndFingerTrill",
|
|
|
|
"fingeringBsnRHAFlatClosed",
|
|
|
|
"fingeringBsnRHAFlatTrill",
|
|
|
|
"fingeringBsnRHBFlatTrillClosed",
|
|
|
|
"fingeringBsnRHBFlatTrillTrill",
|
|
|
|
"fingeringBsnRHCSharpTrillClosed",
|
|
|
|
"fingeringBsnRHCSharpTrillTrill",
|
|
|
|
"fingeringBsnRHFSharpClosed",
|
|
|
|
"fingeringBsnRHFSharpTrill",
|
|
|
|
"fingeringBsnRHLowFClosed",
|
|
|
|
"fingeringBsnRHLowFTrill",
|
|
|
|
"fingeringBsnRHLowGClosed",
|
|
|
|
"fingeringBsnRHLowGTrill",
|
|
|
|
"fingeringBsnRTAFlatClosed",
|
|
|
|
"fingeringBsnRTAFlatTrill",
|
|
|
|
"fingeringBsnRTBFlatClosed",
|
|
|
|
"fingeringBsnRTBFlatTrill",
|
|
|
|
"fingeringBsnRTLowEClosed",
|
|
|
|
"fingeringBsnRTLowETrill",
|
|
|
|
"fingeringBsnRTLowFSharpClosed",
|
|
|
|
"fingeringBsnRTLowFSharpTrill",
|
|
|
|
"fingeringClarBassEFlatClosed",
|
|
|
|
"fingeringClarBassEFlatOpen",
|
|
|
|
"fingeringClarBassEFlatTrill",
|
|
|
|
"fingeringClarChart",
|
|
|
|
"fingeringClarLH1stFingerClosed",
|
|
|
|
"fingeringClarLH1stFingerHalfClosedLeft",
|
|
|
|
"fingeringClarLH1stFingerHalfClosedRight",
|
|
|
|
"fingeringClarLH1stFingerQuarterClosedLeft",
|
|
|
|
"fingeringClarLH1stFingerQuarterClosedRight",
|
|
|
|
"fingeringClarLH1stFingerRingOnly",
|
|
|
|
"fingeringClarLH1stFingerTrill",
|
|
|
|
"fingeringClarLH2ndFingerClosed",
|
|
|
|
"fingeringClarLH2ndFingerHalfClosedLeft",
|
|
|
|
"fingeringClarLH2ndFingerHalfClosedRight",
|
|
|
|
"fingeringClarLH2ndFingerQuarterClosedLeft",
|
|
|
|
"fingeringClarLH2ndFingerQuarterClosedRight",
|
|
|
|
"fingeringClarLH2ndFingerRingOnly",
|
|
|
|
"fingeringClarLH2ndFingerTrill",
|
|
|
|
"fingeringClarLH3rdFingerClosed",
|
|
|
|
"fingeringClarLH3rdFingerHalfClosedLeft",
|
|
|
|
"fingeringClarLH3rdFingerHalfClosedRight",
|
|
|
|
"fingeringClarLH3rdFingerQuarterClosedLeft",
|
|
|
|
"fingeringClarLH3rdFingerQuarterClosedRight",
|
|
|
|
"fingeringClarLH3rdFingerRingOnly",
|
|
|
|
"fingeringClarLH3rdFingerTrill",
|
|
|
|
"fingeringClarLHAClosed",
|
|
|
|
"fingeringClarLHATrill",
|
|
|
|
"fingeringClarLHCSharpClosed",
|
|
|
|
"fingeringClarLHCSharpTrill",
|
|
|
|
"fingeringClarLHEClosed",
|
|
|
|
"fingeringClarLHEFlatClosed",
|
|
|
|
"fingeringClarLHEFlatTrill",
|
|
|
|
"fingeringClarLHETrill",
|
|
|
|
"fingeringClarLHFClosed",
|
|
|
|
"fingeringClarLHFTrill",
|
|
|
|
"fingeringClarLHGSharpAltClosed",
|
|
|
|
"fingeringClarLHGSharpAltTrill",
|
|
|
|
"fingeringClarLHGSharpClosed",
|
|
|
|
"fingeringClarLHGSharpTrill",
|
|
|
|
"fingeringClarLHThumbClosed",
|
|
|
|
"fingeringClarLHThumbTrill",
|
|
|
|
"fingeringClarRH1stFingerClosed",
|
|
|
|
"fingeringClarRH1stFingerHalfClosedLeft",
|
|
|
|
"fingeringClarRH1stFingerHalfClosedRight",
|
|
|
|
"fingeringClarRH1stFingerQuarterClosedLeft",
|
|
|
|
"fingeringClarRH1stFingerQuarterClosedRight",
|
|
|
|
"fingeringClarRH1stFingerRingOnly",
|
|
|
|
"fingeringClarRH1stFingerTrill",
|
|
|
|
"fingeringClarRH1stSideClosed",
|
|
|
|
"fingeringClarRH1stSideTrill",
|
|
|
|
"fingeringClarRH2ndFingerClosed",
|
|
|
|
"fingeringClarRH2ndFingerHalfClosedLeft",
|
|
|
|
"fingeringClarRH2ndFingerHalfClosedRight",
|
|
|
|
"fingeringClarRH2ndFingerQuarterClosedLeft",
|
|
|
|
"fingeringClarRH2ndFingerQuarterClosedRight",
|
|
|
|
"fingeringClarRH2ndFingerRingOnly",
|
|
|
|
"fingeringClarRH2ndFingerTrill",
|
|
|
|
"fingeringClarRH2ndSideClosed",
|
|
|
|
"fingeringClarRH2ndSideTrill",
|
|
|
|
"fingeringClarRH3rdFingerClosed",
|
|
|
|
"fingeringClarRH3rdFingerHalfClosedLeft",
|
|
|
|
"fingeringClarRH3rdFingerHalfClosedRight",
|
|
|
|
"fingeringClarRH3rdFingerQuarterClosedLeft",
|
|
|
|
"fingeringClarRH3rdFingerQuarterClosedRight",
|
|
|
|
"fingeringClarRH3rdFingerRingOnly",
|
|
|
|
"fingeringClarRH3rdFingerTrill",
|
|
|
|
"fingeringClarRH3rdSideClosed",
|
|
|
|
"fingeringClarRH3rdSideTrill",
|
|
|
|
"fingeringClarRH4thSideClosed",
|
|
|
|
"fingeringClarRH4thSideTrill",
|
|
|
|
"fingeringClarRHBClosed",
|
|
|
|
"fingeringClarRHBTrill",
|
|
|
|
"fingeringClarRHEClosed",
|
|
|
|
"fingeringClarRHETrill",
|
|
|
|
"fingeringClarRHFClosed",
|
|
|
|
"fingeringClarRHFSharpClosed",
|
|
|
|
"fingeringClarRHFSharpTrill",
|
|
|
|
"fingeringClarRHFTrill",
|
|
|
|
"fingeringClarRHGSharpClosed",
|
|
|
|
"fingeringClarRHGSharpTrill",
|
|
|
|
"fingeringClarRegisterClosed",
|
|
|
|
"fingeringClarRegisterTrill",
|
|
|
|
"fingeringFluteBFoot",
|
|
|
|
"fingeringFluteCFoot",
|
|
|
|
"fingeringFluteChart",
|
|
|
|
"fingeringFluteLH1stFingerClosed",
|
|
|
|
"fingeringFluteLH1stFingerHalfClosedLeft",
|
|
|
|
"fingeringFluteLH1stFingerHalfClosedRight",
|
|
|
|
"fingeringFluteLH1stFingerQuarterClosedLeft",
|
|
|
|
"fingeringFluteLH1stFingerQuarterClosedRight",
|
|
|
|
"fingeringFluteLH1stFingerTrill",
|
|
|
|
"fingeringFluteLH2ndFingerClosed",
|
|
|
|
"fingeringFluteLH2ndFingerHalfClosedLeft",
|
|
|
|
"fingeringFluteLH2ndFingerHalfClosedRight",
|
|
|
|
"fingeringFluteLH2ndFingerQuarterClosedLeft",
|
|
|
|
"fingeringFluteLH2ndFingerQuarterClosedRight",
|
|
|
|
"fingeringFluteLH2ndFingerTrill",
|
|
|
|
"fingeringFluteLH3rdFingerClosed",
|
|
|
|
"fingeringFluteLH3rdFingerHalfClosedLeft",
|
|
|
|
"fingeringFluteLH3rdFingerHalfClosedRight",
|
|
|
|
"fingeringFluteLH3rdFingerQuarterClosedLeft",
|
|
|
|
"fingeringFluteLH3rdFingerQuarterClosedRight",
|
|
|
|
"fingeringFluteLH3rdFingerTrill",
|
|
|
|
"fingeringFluteLHThumbBClosed",
|
|
|
|
"fingeringFluteLHThumbBFlatClosed",
|
|
|
|
"fingeringFluteLHThumbBFlatTrill",
|
|
|
|
"fingeringFluteLHThumbBTrill",
|
|
|
|
"fingeringFluteRH1stFingerClosed",
|
|
|
|
"fingeringFluteRH1stFingerHalfClosedLeft",
|
|
|
|
"fingeringFluteRH1stFingerHalfClosedRight",
|
|
|
|
"fingeringFluteRH1stFingerQuarterClosedLeft",
|
|
|
|
"fingeringFluteRH1stFingerQuarterClosedRight",
|
|
|
|
"fingeringFluteRH1stFingerTrill",
|
|
|
|
"fingeringFluteRH2ndFingerClosed",
|
|
|
|
"fingeringFluteRH2ndFingerHalfClosedLeft",
|
|
|
|
"fingeringFluteRH2ndFingerHalfClosedRight",
|
|
|
|
"fingeringFluteRH2ndFingerQuarterClosedLeft",
|
|
|
|
"fingeringFluteRH2ndFingerQuarterClosedRight",
|
|
|
|
"fingeringFluteRH2ndFingerTrill",
|
|
|
|
"fingeringFluteRH3rdFingerClosed",
|
|
|
|
"fingeringFluteRH3rdFingerHalfClosedLeft",
|
|
|
|
"fingeringFluteRH3rdFingerHalfClosedRight",
|
|
|
|
"fingeringFluteRH3rdFingerQuarterClosedLeft",
|
|
|
|
"fingeringFluteRH3rdFingerQuarterClosedRight",
|
|
|
|
"fingeringFluteRH3rdFingerTrill",
|
|
|
|
"fingeringFluteRHBFlatTrillClosed",
|
|
|
|
"fingeringFluteRHBFlatTrillTrill",
|
|
|
|
"fingeringFluteRHDSharpTrillClosed",
|
|
|
|
"fingeringFluteRHDSharpTrillTrill",
|
|
|
|
"fingeringFluteRHDTrillClosed",
|
|
|
|
"fingeringFluteRHDTrillTrill",
|
|
|
|
"fingeringFluteRHEFlatPaddleClosed",
|
|
|
|
"fingeringFluteRHEFlatPaddleTrill",
|
|
|
|
"fingeringFluteRHGizmoClosed",
|
|
|
|
"fingeringFluteRHGizmoTrill",
|
|
|
|
"fingeringFluteRHLowBClosed",
|
|
|
|
"fingeringFluteRHLowBTrill",
|
|
|
|
"fingeringFluteRHLowCClosed",
|
|
|
|
"fingeringFluteRHLowCSharpClosed",
|
|
|
|
"fingeringFluteRHLowCSharpTrill",
|
|
|
|
"fingeringFluteRHLowCTrill",
|
|
|
|
"fingeringOboeChart",
|
|
|
|
"fingeringOboeLH1stFingerClosed",
|
|
|
|
"fingeringOboeLH1stFingerHalfClosed",
|
|
|
|
"fingeringOboeLH1stFingerRingOnly",
|
|
|
|
"fingeringOboeLH1stFingerTrill",
|
|
|
|
"fingeringOboeLH1stOctaveClosed",
|
|
|
|
"fingeringOboeLH1stOctaveTrill",
|
|
|
|
"fingeringOboeLH2ndFingerClosed",
|
|
|
|
"fingeringOboeLH2ndFingerHalfClosedLeft",
|
|
|
|
"fingeringOboeLH2ndFingerHalfClosedRight",
|
|
|
|
"fingeringOboeLH2ndFingerQuarterClosedLeft",
|
|
|
|
"fingeringOboeLH2ndFingerQuarterClosedRight",
|
|
|
|
"fingeringOboeLH2ndFingerRingOnly",
|
|
|
|
"fingeringOboeLH2ndFingerTrill",
|
|
|
|
"fingeringOboeLH2ndOctaveClosed",
|
|
|
|
"fingeringOboeLH2ndOctaveTrill",
|
|
|
|
"fingeringOboeLH3rdFingerClosed",
|
|
|
|
"fingeringOboeLH3rdFingerHalfClosedLeft",
|
|
|
|
"fingeringOboeLH3rdFingerHalfClosedRight",
|
|
|
|
"fingeringOboeLH3rdFingerQuarterClosedLeft",
|
|
|
|
"fingeringOboeLH3rdFingerQuarterClosedRight",
|
|
|
|
"fingeringOboeLH3rdFingerRingOnly",
|
|
|
|
"fingeringOboeLH3rdFingerTrill",
|
|
|
|
"fingeringOboeLH3rdOctaveClosed",
|
|
|
|
"fingeringOboeLH3rdOctaveTrill",
|
|
|
|
"fingeringOboeLHBTrillClosed",
|
|
|
|
"fingeringOboeLHBTrillTrill",
|
|
|
|
"fingeringOboeLHCSharpTrillClosed",
|
|
|
|
"fingeringOboeLHCSharpTrillTrill",
|
|
|
|
"fingeringOboeLHDTrillClosed",
|
|
|
|
"fingeringOboeLHDTrillTrill",
|
|
|
|
"fingeringOboeLHEFlatClosed",
|
|
|
|
"fingeringOboeLHEFlatTrill",
|
|
|
|
"fingeringOboeLHFClosed",
|
|
|
|
"fingeringOboeLHFTrill",
|
|
|
|
"fingeringOboeLHGSharpClosed",
|
|
|
|
"fingeringOboeLHGSharpTrill",
|
|
|
|
"fingeringOboeLHLowBClosed",
|
|
|
|
"fingeringOboeLHLowBFlatClosed",
|
|
|
|
"fingeringOboeLHLowBFlatTrill",
|
|
|
|
"fingeringOboeLHLowBTrill",
|
|
|
|
"fingeringOboeRH1stFingerClosed",
|
|
|
|
"fingeringOboeRH1stFingerHalfClosedLeft",
|
|
|
|
"fingeringOboeRH1stFingerHalfClosedRight",
|
|
|
|
"fingeringOboeRH1stFingerQuarterClosedLeft",
|
|
|
|
"fingeringOboeRH1stFingerQuarterClosedRight",
|
|
|
|
"fingeringOboeRH1stFingerRingOnly",
|
|
|
|
"fingeringOboeRH1stFingerTrill",
|
|
|
|
"fingeringOboeRH2ndFingerClosed",
|
|
|
|
"fingeringOboeRH2ndFingerHalfClosedLeft",
|
|
|
|
"fingeringOboeRH2ndFingerHalfClosedRight",
|
|
|
|
"fingeringOboeRH2ndFingerQuarterClosedLeft",
|
|
|
|
"fingeringOboeRH2ndFingerQuarterClosedRight",
|
|
|
|
"fingeringOboeRH2ndFingerRingOnly",
|
|
|
|
"fingeringOboeRH2ndFingerTrill",
|
|
|
|
"fingeringOboeRH3rdFingerClosed",
|
|
|
|
"fingeringOboeRH3rdFingerHalfClosedLeft",
|
|
|
|
"fingeringOboeRH3rdFingerHalfClosedRight",
|
|
|
|
"fingeringOboeRH3rdFingerQuarterClosedLeft",
|
|
|
|
"fingeringOboeRH3rdFingerQuarterClosedRight",
|
|
|
|
"fingeringOboeRH3rdFingerRingOnly",
|
|
|
|
"fingeringOboeRH3rdFingerTrill",
|
|
|
|
"fingeringOboeRHAClosed",
|
|
|
|
"fingeringOboeRHATrill",
|
|
|
|
"fingeringOboeRHCBananaClosed",
|
|
|
|
"fingeringOboeRHCBananaTrill",
|
|
|
|
"fingeringOboeRHDTrillClosed",
|
|
|
|
"fingeringOboeRHDTrillTrill",
|
|
|
|
"fingeringOboeRHFClosed",
|
|
|
|
"fingeringOboeRHFTrill",
|
|
|
|
"fingeringOboeRHGSharpClosed",
|
|
|
|
"fingeringOboeRHGSharpTrill",
|
|
|
|
"fingeringOboeRHLowCClosed",
|
|
|
|
"fingeringOboeRHLowCSharpClosed",
|
|
|
|
"fingeringOboeRHLowCSharpTrill",
|
|
|
|
"fingeringOboeRHLowCTrill",
|
|
|
|
"fingeringOboeRHLowEFlatKeyClosed",
|
|
|
|
"fingeringOboeRHLowEFlatKeyTrill",
|
|
|
|
"fingeringRecChart",
|
|
|
|
"fingeringRecLH1stFingerClosed",
|
|
|
|
"fingeringRecLH1stFingerHalfClosedLeft",
|
|
|
|
"fingeringRecLH1stFingerHalfClosedRight",
|
|
|
|
"fingeringRecLH1stFingerQuarterClosedLeft",
|
|
|
|
"fingeringRecLH1stFingerQuarterClosedRight",
|
|
|
|
"fingeringRecLH1stFingerTrill",
|
|
|
|
"fingeringRecLH2ndFingerClosed",
|
|
|
|
"fingeringRecLH2ndFingerHalfClosedLeft",
|
|
|
|
"fingeringRecLH2ndFingerHalfClosedRight",
|
|
|
|
"fingeringRecLH2ndFingerQuarterClosedLeft",
|
|
|
|
"fingeringRecLH2ndFingerQuarterClosedRight",
|
|
|
|
"fingeringRecLH2ndFingerTrill",
|
|
|
|
"fingeringRecLH3rdFingerClosed",
|
|
|
|
"fingeringRecLH3rdFingerHalfClosedLeft",
|
|
|
|
"fingeringRecLH3rdFingerHalfClosedRight",
|
|
|
|
"fingeringRecLH3rdFingerQuarterClosedLeft",
|
|
|
|
"fingeringRecLH3rdFingerQuarterClosedRight",
|
|
|
|
"fingeringRecLH3rdFingerTrill",
|
|
|
|
"fingeringRecLHThumbClosed",
|
|
|
|
"fingeringRecLHThumbHalfClosedLeft",
|
|
|
|
"fingeringRecLHThumbHalfClosedRight",
|
|
|
|
"fingeringRecLHThumbQuarterClosedLeft",
|
|
|
|
"fingeringRecLHThumbQuarterClosedRight",
|
|
|
|
"fingeringRecLHThumbTrill",
|
|
|
|
"fingeringRecRH1stDoubleHoleLeftClosed",
|
|
|
|
"fingeringRecRH1stDoubleHoleLeftHalfClosedLeft",
|
|
|
|
"fingeringRecRH1stDoubleHoleLeftHalfClosedRight",
|
|
|
|
"fingeringRecRH1stDoubleHoleLeftQuarterClosedLeft",
|
|
|
|
"fingeringRecRH1stDoubleHoleLeftQuarterClosedRight",
|
|
|
|
"fingeringRecRH1stDoubleHoleLeftTrill",
|
|
|
|
"fingeringRecRH1stDoubleHoleRightClosed",
|
|
|
|
"fingeringRecRH1stDoubleHoleRightHalfClosedLeft",
|
|
|
|
"fingeringRecRH1stDoubleHoleRightHalfClosedRight",
|
|
|
|
"fingeringRecRH1stDoubleHoleRightQuarterClosedLeft",
|
|
|
|
"fingeringRecRH1stDoubleHoleRightQuarterClosedRight",
|
|
|
|
"fingeringRecRH1stDoubleHoleRightTrill",
|
|
|
|
"fingeringRecRH1stFingerClosed",
|
|
|
|
"fingeringRecRH1stFingerHalfClosedLeft",
|
|
|
|
"fingeringRecRH1stFingerHalfClosedRight",
|
|
|
|
"fingeringRecRH1stFingerQuarterClosedLeft",
|
|
|
|
"fingeringRecRH1stFingerQuarterClosedRight",
|
|
|
|
"fingeringRecRH1stFingerTrill",
|
|
|
|
"fingeringRecRH2ndDoubleHoleLeftClosed",
|
|
|
|
"fingeringRecRH2ndDoubleHoleLeftHalfClosedLeft",
|
|
|
|
"fingeringRecRH2ndDoubleHoleLeftHalfClosedRight",
|
|
|
|
"fingeringRecRH2ndDoubleHoleLeftQuarterClosedLeft",
|
|
|
|
"fingeringRecRH2ndDoubleHoleLeftQuarterClosedRight",
|
|
|
|
"fingeringRecRH2ndDoubleHoleLeftTrill",
|
|
|
|
"fingeringRecRH2ndDoubleHoleRightClosed",
|
|
|
|
"fingeringRecRH2ndDoubleHoleRightHalfClosedLeft",
|
|
|
|
"fingeringRecRH2ndDoubleHoleRightHalfClosedRight",
|
|
|
|
"fingeringRecRH2ndDoubleHoleRightQuarterClosedLeft",
|
|
|
|
"fingeringRecRH2ndDoubleHoleRightQuarterClosedRight",
|
|
|
|
"fingeringRecRH2ndDoubleHoleRightTrill",
|
|
|
|
"fingeringSaxBariLowAClosed",
|
|
|
|
"fingeringSaxBariLowAOpen",
|
|
|
|
"fingeringSaxBariLowATrill",
|
|
|
|
"fingeringSaxChart",
|
|
|
|
"fingeringSaxLH1stFingerClosed",
|
|
|
|
"fingeringSaxLH1stFingerHalfClosed",
|
|
|
|
"fingeringSaxLH1stFingerTrill",
|
|
|
|
"fingeringSaxLH2ndFingerClosed",
|
|
|
|
"fingeringSaxLH2ndFingerHalfClosed",
|
|
|
|
"fingeringSaxLH2ndFingerTrill",
|
|
|
|
"fingeringSaxLH3rdFingerClosed",
|
|
|
|
"fingeringSaxLH3rdFingerHalfClosed",
|
|
|
|
"fingeringSaxLH3rdFingerTrill",
|
|
|
|
"fingeringSaxLHBFlatClosed",
|
|
|
|
"fingeringSaxLHBFlatTrill",
|
|
|
|
"fingeringSaxLHDPalmClosed",
|
|
|
|
"fingeringSaxLHDPalmTrill",
|
|
|
|
"fingeringSaxLHEFlatPalmClosed",
|
|
|
|
"fingeringSaxLHEFlatPalmTrill",
|
|
|
|
"fingeringSaxLHFPalmClosed",
|
|
|
|
"fingeringSaxLHFPalmTrill",
|
|
|
|
"fingeringSaxLHFrontFClosed",
|
|
|
|
"fingeringSaxLHFrontFTrill",
|
|
|
|
"fingeringSaxLHGSharpClosed",
|
|
|
|
"fingeringSaxLHGSharpTrill",
|
|
|
|
"fingeringSaxLHLowBClosed",
|
|
|
|
"fingeringSaxLHLowBFlatClosed",
|
|
|
|
"fingeringSaxLHLowBFlatTrill",
|
|
|
|
"fingeringSaxLHLowBTrill",
|
|
|
|
"fingeringSaxLHLowCSharpClosed",
|
|
|
|
"fingeringSaxLHLowCSharpTrill",
|
|
|
|
"fingeringSaxLHOctaveClosed",
|
|
|
|
"fingeringSaxLHOctaveTrill",
|
|
|
|
"fingeringSaxRH1stFingerClosed",
|
|
|
|
"fingeringSaxRH1stFingerHalfClosed",
|
|
|
|
"fingeringSaxRH1stFingerTrill",
|
|
|
|
"fingeringSaxRH2ndFingerClosed",
|
|
|
|
"fingeringSaxRH2ndFingerHalfClosed",
|
|
|
|
"fingeringSaxRH2ndFingerTrill",
|
|
|
|
"fingeringSaxRH3rdFingerClosed",
|
|
|
|
"fingeringSaxRH3rdFingerHalfClosed",
|
|
|
|
"fingeringSaxRH3rdFingerTrill",
|
|
|
|
"fingeringSaxRHBFlatSideClosed",
|
|
|
|
"fingeringSaxRHBFlatSideTrill",
|
|
|
|
"fingeringSaxRHCSideClosed",
|
|
|
|
"fingeringSaxRHCSideTrill",
|
|
|
|
"fingeringSaxRHESideClosed",
|
|
|
|
"fingeringSaxRHESideTrill",
|
|
|
|
"fingeringSaxRHFSharpAlternateClosed",
|
|
|
|
"fingeringSaxRHFSharpAlternateTrill",
|
|
|
|
"fingeringSaxRHHighFSharpClosed",
|
|
|
|
"fingeringSaxRHHighFSharpTrill",
|
|
|
|
"fingeringSaxRHLowCClosed",
|
|
|
|
"fingeringSaxRHLowCTrill",
|
|
|
|
"fingeringSaxRHLowEFlatClosed",
|
|
|
|
"fingeringSaxRHLowEFlatTrill",
|
2013-11-29 00:37:48 +01:00
|
|
|
"flag1024thDown",
|
|
|
|
"flag1024thUp",
|
2013-11-06 15:58:05 +01:00
|
|
|
"flag128thDown",
|
|
|
|
"flag128thUp",
|
|
|
|
"flag16thDown",
|
|
|
|
"flag16thUp",
|
|
|
|
"flag256thDown",
|
|
|
|
"flag256thUp",
|
|
|
|
"flag32ndDown",
|
|
|
|
"flag32ndUp",
|
|
|
|
"flag512thDown",
|
|
|
|
"flag512thUp",
|
|
|
|
"flag64thDown",
|
|
|
|
"flag64thUp",
|
|
|
|
"flag8thDown",
|
|
|
|
"flag8thUp",
|
|
|
|
"flagInternalDown",
|
|
|
|
"flagInternalUp",
|
2014-03-15 12:31:29 +01:00
|
|
|
"fluteFingeringLHGSharpClosed",
|
|
|
|
"fluteFingeringLHGSharpTrill",
|
2013-11-06 15:58:05 +01:00
|
|
|
"fretboard3String",
|
|
|
|
"fretboard3StringNut",
|
|
|
|
"fretboard4String",
|
|
|
|
"fretboard4StringNut",
|
|
|
|
"fretboard5String",
|
|
|
|
"fretboard5StringNut",
|
|
|
|
"fretboard6String",
|
|
|
|
"fretboard6StringNut",
|
|
|
|
"fretboardFilledCircle",
|
|
|
|
"fretboardO",
|
|
|
|
"fretboardX",
|
|
|
|
"functionAngleLeft",
|
|
|
|
"functionAngleRight",
|
|
|
|
"functionBracketLeft",
|
|
|
|
"functionBracketRight",
|
|
|
|
"functionDD",
|
2013-11-29 00:37:48 +01:00
|
|
|
"functionDLower",
|
|
|
|
"functionDUpper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"functionEight",
|
|
|
|
"functionFive",
|
|
|
|
"functionFour",
|
2013-11-29 00:37:48 +01:00
|
|
|
"functionGLower",
|
|
|
|
"functionGUpper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"functionGreaterThan",
|
|
|
|
"functionLessThan",
|
|
|
|
"functionMinus",
|
2013-11-29 00:37:48 +01:00
|
|
|
"functionNLower",
|
|
|
|
"functionNUpper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"functionNine",
|
|
|
|
"functionOne",
|
2013-11-29 00:37:48 +01:00
|
|
|
"functionPLower",
|
|
|
|
"functionPUpper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"functionParensLeft",
|
|
|
|
"functionParensRight",
|
|
|
|
"functionPlus",
|
|
|
|
"functionRepetition1",
|
|
|
|
"functionRepetition2",
|
|
|
|
"functionRing",
|
2013-11-29 00:37:48 +01:00
|
|
|
"functionSLower",
|
|
|
|
"functionSSLower",
|
|
|
|
"functionSSUpper",
|
|
|
|
"functionSUpper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"functionSeven",
|
|
|
|
"functionSix",
|
|
|
|
"functionSlashedDD",
|
2013-11-29 00:37:48 +01:00
|
|
|
"functionTLower",
|
|
|
|
"functionTUpper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"functionThree",
|
|
|
|
"functionTwo",
|
2013-11-29 00:37:48 +01:00
|
|
|
"functionVLower",
|
|
|
|
"functionVUpper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"functionZero",
|
|
|
|
"gClef",
|
|
|
|
"gClef15ma",
|
|
|
|
"gClef15mb",
|
|
|
|
"gClef8va",
|
|
|
|
"gClef8vb",
|
2014-03-15 12:31:29 +01:00
|
|
|
"gClef8vbCClef",
|
2013-11-06 15:58:05 +01:00
|
|
|
"gClef8vbOld",
|
|
|
|
"gClefArrowDown",
|
|
|
|
"gClefArrowUp",
|
2014-04-18 18:55:33 +02:00
|
|
|
"gClefChange",
|
2013-11-06 15:58:05 +01:00
|
|
|
"gClefLigatedNumberAbove",
|
|
|
|
"gClefLigatedNumberBelow",
|
|
|
|
"gClefReversed",
|
2014-04-18 18:55:33 +02:00
|
|
|
"gClefTurned",
|
2013-11-06 15:58:05 +01:00
|
|
|
"glissandoDown",
|
|
|
|
"glissandoUp",
|
|
|
|
"graceNoteAcciaccaturaStemDown",
|
|
|
|
"graceNoteAcciaccaturaStemUp",
|
|
|
|
"graceNoteAppoggiaturaStemDown",
|
|
|
|
"graceNoteAppoggiaturaStemUp",
|
|
|
|
"graceNoteSlashStemDown",
|
|
|
|
"graceNoteSlashStemUp",
|
|
|
|
"guitarClosePedal",
|
2014-03-15 12:31:29 +01:00
|
|
|
"guitarFadeIn",
|
|
|
|
"guitarFadeOut",
|
2013-11-29 00:37:48 +01:00
|
|
|
"guitarGolpe",
|
2013-11-06 15:58:05 +01:00
|
|
|
"guitarHalfOpenPedal",
|
|
|
|
"guitarLeftHandTapping",
|
|
|
|
"guitarOpenPedal",
|
|
|
|
"guitarRightHandTapping",
|
|
|
|
"guitarShake",
|
|
|
|
"guitarString0",
|
|
|
|
"guitarString1",
|
|
|
|
"guitarString2",
|
|
|
|
"guitarString3",
|
|
|
|
"guitarString4",
|
|
|
|
"guitarString5",
|
|
|
|
"guitarString6",
|
|
|
|
"guitarString7",
|
|
|
|
"guitarString8",
|
|
|
|
"guitarString9",
|
|
|
|
"guitarVibratoBarDip",
|
|
|
|
"guitarVibratoBarScoop",
|
|
|
|
"guitarVibratoStroke",
|
2014-03-15 12:31:29 +01:00
|
|
|
"guitarVolumeSwell",
|
2013-11-06 15:58:05 +01:00
|
|
|
"guitarWideVibratoStroke",
|
|
|
|
"handbellsBelltree",
|
|
|
|
"handbellsDamp3",
|
|
|
|
"handbellsEcho1",
|
|
|
|
"handbellsEcho2",
|
|
|
|
"handbellsGyro",
|
|
|
|
"handbellsHandMartellato",
|
|
|
|
"handbellsMalletBellOnTable",
|
|
|
|
"handbellsMalletBellSuspended",
|
|
|
|
"handbellsMalletLft",
|
|
|
|
"handbellsMartellato",
|
|
|
|
"handbellsMartellatoLift",
|
|
|
|
"handbellsMutedMartellato",
|
|
|
|
"handbellsPluckLift",
|
|
|
|
"handbellsSwing",
|
|
|
|
"handbellsSwingDown",
|
|
|
|
"handbellsSwingUp",
|
2014-03-15 12:31:29 +01:00
|
|
|
"handbellsTablePairBells",
|
|
|
|
"handbellsTableSingleBell",
|
2013-11-06 15:58:05 +01:00
|
|
|
"harpMetalRod",
|
|
|
|
"harpPedalCentered",
|
|
|
|
"harpPedalDivider",
|
|
|
|
"harpPedalLowered",
|
|
|
|
"harpPedalRaised",
|
|
|
|
"harpSalzedoFluidicSoundsLeft",
|
|
|
|
"harpSalzedoFluidicSoundsRight",
|
|
|
|
"harpSalzedoMetallicSounds",
|
|
|
|
"harpSalzedoMuffleTotally",
|
|
|
|
"harpSalzedoOboicFlux",
|
|
|
|
"harpSalzedoPlayUpperEnd",
|
|
|
|
"harpSalzedoSlideWithSuppleness",
|
|
|
|
"harpSalzedoTamTamSounds",
|
|
|
|
"harpSalzedoThunderEffect",
|
|
|
|
"harpSalzedoTimpanicSounds",
|
|
|
|
"harpSalzedoWhistlingSounds",
|
2013-11-29 00:37:48 +01:00
|
|
|
"harpStringNoiseStem",
|
2013-11-06 15:58:05 +01:00
|
|
|
"harpTuningKey",
|
2013-11-29 00:37:48 +01:00
|
|
|
"harpTuningKeyGlissando",
|
|
|
|
"harpTuningKeyHandle",
|
|
|
|
"harpTuningKeyShank",
|
2014-03-15 12:31:29 +01:00
|
|
|
"keyboardBebung2DotsAbove",
|
|
|
|
"keyboardBebung2DotsBelow",
|
|
|
|
"keyboardBebung3DotsAbove",
|
|
|
|
"keyboardBebung3DotsBelow",
|
|
|
|
"keyboardBebung4DotsAbove",
|
|
|
|
"keyboardBebung4DotsBelow",
|
2013-11-06 15:58:05 +01:00
|
|
|
"keyboardLeftPedalPictogram",
|
|
|
|
"keyboardMiddlePedalPictogram",
|
2014-04-18 18:55:33 +02:00
|
|
|
"keyboardPedalD",
|
|
|
|
"keyboardPedalDot",
|
|
|
|
"keyboardPedalE",
|
2013-11-06 15:58:05 +01:00
|
|
|
"keyboardPedalHalf",
|
|
|
|
"keyboardPedalHalf2",
|
|
|
|
"keyboardPedalHalf3",
|
|
|
|
"keyboardPedalHeel1",
|
|
|
|
"keyboardPedalHeel2",
|
2014-03-15 12:31:29 +01:00
|
|
|
"keyboardPedalHeel3",
|
|
|
|
"keyboardPedalHeelToe",
|
2014-04-18 18:55:33 +02:00
|
|
|
"keyboardPedalHyphen",
|
2013-11-06 15:58:05 +01:00
|
|
|
"keyboardPedalP",
|
|
|
|
"keyboardPedalPed",
|
|
|
|
"keyboardPedalS",
|
|
|
|
"keyboardPedalSost",
|
|
|
|
"keyboardPedalToe1",
|
|
|
|
"keyboardPedalToe2",
|
|
|
|
"keyboardPedalUp",
|
|
|
|
"keyboardPedalUpNotch",
|
|
|
|
"keyboardPedalUpSpecial",
|
2014-03-15 12:31:29 +01:00
|
|
|
"keyboardPlayWithLH",
|
2014-04-18 18:55:33 +02:00
|
|
|
"keyboardPlayWithLHEnd",
|
2014-03-15 12:31:29 +01:00
|
|
|
"keyboardPlayWithRH",
|
2014-04-18 18:55:33 +02:00
|
|
|
"keyboardPlayWithRHEnd",
|
2013-11-06 15:58:05 +01:00
|
|
|
"keyboardPluckInside",
|
|
|
|
"keyboardRightPedalPictogram",
|
2014-04-18 18:55:33 +02:00
|
|
|
"kievanAccidentalFlat",
|
|
|
|
"kievanAccidentalSharp",
|
|
|
|
"kievanAugmentationDot",
|
|
|
|
"kievanCClef",
|
|
|
|
"kievanEndingSymbol",
|
|
|
|
"kievanNote8thStemDown",
|
|
|
|
"kievanNote8thStemUp",
|
|
|
|
"kievanNoteBeam",
|
|
|
|
"kievanNoteHalfStaffLine",
|
|
|
|
"kievanNoteHalfStaffSpace",
|
|
|
|
"kievanNoteQuarterStemDown",
|
|
|
|
"kievanNoteQuarterStemUp",
|
|
|
|
"kievanNoteReciting",
|
|
|
|
"kievanNoteWhole",
|
|
|
|
"kievanNoteWholeFinal",
|
|
|
|
"kodalyHandDo",
|
|
|
|
"kodalyHandFa",
|
|
|
|
"kodalyHandLa",
|
|
|
|
"kodalyHandMi",
|
|
|
|
"kodalyHandRe",
|
|
|
|
"kodalyHandSo",
|
|
|
|
"kodalyHandTi",
|
2013-11-06 15:58:05 +01:00
|
|
|
"leftRepeatSmall",
|
2014-04-18 18:55:33 +02:00
|
|
|
"legerLine",
|
|
|
|
"legerLineNarrow",
|
|
|
|
"legerLineWide",
|
2014-03-15 12:31:29 +01:00
|
|
|
"luteBarlineEndRepeat",
|
|
|
|
"luteBarlineFinal",
|
|
|
|
"luteBarlineStartRepeat",
|
|
|
|
"luteDuration16th",
|
|
|
|
"luteDuration32nd",
|
|
|
|
"luteDuration8th",
|
|
|
|
"luteDurationDoubleWhole",
|
|
|
|
"luteDurationHalf",
|
|
|
|
"luteDurationQuarter",
|
|
|
|
"luteDurationWhole",
|
|
|
|
"luteFingeringRHFirst",
|
|
|
|
"luteFingeringRHSecond",
|
|
|
|
"luteFingeringRHThird",
|
|
|
|
"luteFingeringRHThumb",
|
|
|
|
"luteFrench10thCourse",
|
|
|
|
"luteFrench7thCourse",
|
|
|
|
"luteFrench8thCourse",
|
|
|
|
"luteFrench9thCourse",
|
|
|
|
"luteFrenchAppoggiaturaAbove",
|
|
|
|
"luteFrenchAppoggiaturaBelow",
|
|
|
|
"luteFrenchFretA",
|
|
|
|
"luteFrenchFretB",
|
|
|
|
"luteFrenchFretC",
|
|
|
|
"luteFrenchFretD",
|
|
|
|
"luteFrenchFretE",
|
|
|
|
"luteFrenchFretF",
|
|
|
|
"luteFrenchFretG",
|
|
|
|
"luteFrenchFretH",
|
|
|
|
"luteFrenchFretI",
|
|
|
|
"luteFrenchFretK",
|
|
|
|
"luteFrenchFretL",
|
|
|
|
"luteFrenchFretM",
|
|
|
|
"luteFrenchFretN",
|
|
|
|
"luteFrenchMordentInverted",
|
|
|
|
"luteFrenchMordentLower",
|
|
|
|
"luteFrenchMordentUpper",
|
|
|
|
"luteGermanALower",
|
|
|
|
"luteGermanAUpper",
|
|
|
|
"luteGermanBLower",
|
|
|
|
"luteGermanBUpper",
|
|
|
|
"luteGermanCLower",
|
|
|
|
"luteGermanCUpper",
|
|
|
|
"luteGermanDLower",
|
|
|
|
"luteGermanDUpper",
|
|
|
|
"luteGermanELower",
|
|
|
|
"luteGermanEUpper",
|
|
|
|
"luteGermanFLower",
|
|
|
|
"luteGermanFUpper",
|
|
|
|
"luteGermanGLower",
|
|
|
|
"luteGermanGUpper",
|
|
|
|
"luteGermanHLower",
|
|
|
|
"luteGermanHUpper",
|
|
|
|
"luteGermanILower",
|
|
|
|
"luteGermanIUpper",
|
|
|
|
"luteGermanKLower",
|
|
|
|
"luteGermanKUpper",
|
|
|
|
"luteGermanLLower",
|
|
|
|
"luteGermanLUpper",
|
|
|
|
"luteGermanMLower",
|
|
|
|
"luteGermanMUpper",
|
|
|
|
"luteGermanNLower",
|
|
|
|
"luteGermanNUpper",
|
|
|
|
"luteGermanOLower",
|
|
|
|
"luteGermanPLower",
|
|
|
|
"luteGermanQLower",
|
|
|
|
"luteGermanRLower",
|
|
|
|
"luteGermanSLower",
|
|
|
|
"luteGermanTLower",
|
|
|
|
"luteGermanVLower",
|
|
|
|
"luteGermanXLower",
|
|
|
|
"luteGermanYLower",
|
|
|
|
"luteGermanZLower",
|
|
|
|
"luteItalianClefCSolFaUt",
|
|
|
|
"luteItalianClefFFaUt",
|
|
|
|
"luteItalianFret0",
|
|
|
|
"luteItalianFret1",
|
|
|
|
"luteItalianFret2",
|
|
|
|
"luteItalianFret3",
|
|
|
|
"luteItalianFret4",
|
|
|
|
"luteItalianFret5",
|
|
|
|
"luteItalianFret6",
|
|
|
|
"luteItalianFret7",
|
|
|
|
"luteItalianFret8",
|
|
|
|
"luteItalianFret9",
|
|
|
|
"luteItalianHoldFinger",
|
|
|
|
"luteItalianHoldNote",
|
|
|
|
"luteItalianReleaseFinger",
|
|
|
|
"luteItalianTempoFast",
|
|
|
|
"luteItalianTempoNeitherFastNorSlow",
|
|
|
|
"luteItalianTempoSlow",
|
|
|
|
"luteItalianTempoSomewhatFast",
|
|
|
|
"luteItalianTempoVerySlow",
|
|
|
|
"luteItalianTimeTriple",
|
|
|
|
"luteItalianTremolo",
|
|
|
|
"luteItalianVibrato",
|
|
|
|
"luteStaff6Lines",
|
|
|
|
"luteStaff6LinesNarrow",
|
|
|
|
"luteStaff6LinesWide",
|
2014-04-18 18:55:33 +02:00
|
|
|
"lyricsElision",
|
|
|
|
"lyricsElisionNarrow",
|
|
|
|
"lyricsElisionWide",
|
|
|
|
"lyricsHyphenBaseline",
|
|
|
|
"lyricsHyphenBaselineNonBreaking",
|
2013-11-29 00:37:48 +01:00
|
|
|
"medRenFlatHardB",
|
|
|
|
"medRenFlatSoftB",
|
|
|
|
"medRenFlatWithDot",
|
2014-03-15 12:31:29 +01:00
|
|
|
"medRenGClefCMN",
|
2013-11-29 00:37:48 +01:00
|
|
|
"medRenLiquescenceCMN",
|
2014-03-15 12:31:29 +01:00
|
|
|
"medRenLiquescentAscCMN",
|
|
|
|
"medRenLiquescentDescCMN",
|
2013-11-29 00:37:48 +01:00
|
|
|
"medRenNatural",
|
|
|
|
"medRenNaturalWithCross",
|
2014-03-15 12:31:29 +01:00
|
|
|
"medRenOriscusCMN",
|
2013-11-29 00:37:48 +01:00
|
|
|
"medRenPlicaCMN",
|
2014-03-15 12:31:29 +01:00
|
|
|
"medRenPunctumCMN",
|
|
|
|
"medRenQuilismaCMN",
|
2013-11-29 00:37:48 +01:00
|
|
|
"medRenSharpCroix",
|
2014-03-15 12:31:29 +01:00
|
|
|
"medRenStrophicusCMN",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralAlterationSign",
|
|
|
|
"mensuralBlackBrevis",
|
|
|
|
"mensuralBlackBrevisVoid",
|
|
|
|
"mensuralBlackDragma",
|
|
|
|
"mensuralBlackLonga",
|
|
|
|
"mensuralBlackMaxima",
|
|
|
|
"mensuralBlackMinima",
|
|
|
|
"mensuralBlackMinimaVoid",
|
|
|
|
"mensuralBlackSemibrevis",
|
|
|
|
"mensuralBlackSemibrevisCaudata",
|
|
|
|
"mensuralBlackSemibrevisOblique",
|
|
|
|
"mensuralBlackSemibrevisVoid",
|
|
|
|
"mensuralBlackSemiminima",
|
|
|
|
"mensuralCclef",
|
2014-04-18 18:55:33 +02:00
|
|
|
"mensuralCclefPetrucciPosHigh",
|
|
|
|
"mensuralCclefPetrucciPosHighest",
|
|
|
|
"mensuralCclefPetrucciPosLow",
|
|
|
|
"mensuralCclefPetrucciPosLowest",
|
|
|
|
"mensuralCclefPetrucciPosMiddle",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralColorationEndRound",
|
|
|
|
"mensuralColorationEndSquare",
|
|
|
|
"mensuralColorationStartRound",
|
|
|
|
"mensuralColorationStartSquare",
|
|
|
|
"mensuralCombStemDiagonal",
|
|
|
|
"mensuralCombStemDown",
|
|
|
|
"mensuralCombStemDownFlagExtended",
|
|
|
|
"mensuralCombStemDownFlagFlared",
|
|
|
|
"mensuralCombStemDownFlagFusa",
|
|
|
|
"mensuralCombStemDownFlagLeft",
|
|
|
|
"mensuralCombStemDownFlagRight",
|
|
|
|
"mensuralCombStemDownFlagSemiminima",
|
|
|
|
"mensuralCombStemUp",
|
|
|
|
"mensuralCombStemUpFlagExtended",
|
|
|
|
"mensuralCombStemUpFlagFlared",
|
|
|
|
"mensuralCombStemUpFlagFusa",
|
|
|
|
"mensuralCombStemUpFlagLeft",
|
|
|
|
"mensuralCombStemUpFlagRight",
|
|
|
|
"mensuralCombStemUpFlagSemiminima",
|
|
|
|
"mensuralCustosCheckmark",
|
2013-11-06 15:58:05 +01:00
|
|
|
"mensuralCustosDown",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralCustosTurn",
|
2013-11-06 15:58:05 +01:00
|
|
|
"mensuralCustosUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralFclef",
|
|
|
|
"mensuralFclefPetrucci",
|
|
|
|
"mensuralGclef",
|
|
|
|
"mensuralGclefPetrucci",
|
|
|
|
"mensuralModusImperfectumVert",
|
|
|
|
"mensuralModusPerfectumVert",
|
|
|
|
"mensuralNoteheadLongaBlack",
|
|
|
|
"mensuralNoteheadLongaBlackVoid",
|
|
|
|
"mensuralNoteheadLongaVoid",
|
2014-03-15 12:31:29 +01:00
|
|
|
"mensuralNoteheadLongaWhite",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralNoteheadMaximaBlack",
|
|
|
|
"mensuralNoteheadMaximaBlackVoid",
|
|
|
|
"mensuralNoteheadMaximaVoid",
|
2014-03-15 12:31:29 +01:00
|
|
|
"mensuralNoteheadMaximaWhite",
|
|
|
|
"mensuralNoteheadMinimaWhite",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralNoteheadSemibrevisBlack",
|
|
|
|
"mensuralNoteheadSemibrevisBlackVoid",
|
2014-04-18 18:55:33 +02:00
|
|
|
"mensuralNoteheadSemibrevisBlackVoidTurned",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralNoteheadSemibrevisVoid",
|
2014-03-15 12:31:29 +01:00
|
|
|
"mensuralNoteheadSemiminimaWhite",
|
2014-04-18 18:55:33 +02:00
|
|
|
"mensuralObliqueAsc2ndBlack",
|
|
|
|
"mensuralObliqueAsc2ndBlackVoid",
|
|
|
|
"mensuralObliqueAsc2ndVoid",
|
|
|
|
"mensuralObliqueAsc2ndWhite",
|
|
|
|
"mensuralObliqueAsc3rdBlack",
|
|
|
|
"mensuralObliqueAsc3rdBlackVoid",
|
|
|
|
"mensuralObliqueAsc3rdVoid",
|
|
|
|
"mensuralObliqueAsc3rdWhite",
|
|
|
|
"mensuralObliqueAsc4thBlack",
|
|
|
|
"mensuralObliqueAsc4thBlackVoid",
|
|
|
|
"mensuralObliqueAsc4thVoid",
|
|
|
|
"mensuralObliqueAsc4thWhite",
|
|
|
|
"mensuralObliqueAsc5thBlack",
|
|
|
|
"mensuralObliqueAsc5thBlackVoid",
|
|
|
|
"mensuralObliqueAsc5thVoid",
|
|
|
|
"mensuralObliqueAsc5thWhite",
|
|
|
|
"mensuralObliqueDesc2ndBlack",
|
|
|
|
"mensuralObliqueDesc2ndBlackVoid",
|
|
|
|
"mensuralObliqueDesc2ndVoid",
|
|
|
|
"mensuralObliqueDesc2ndWhite",
|
|
|
|
"mensuralObliqueDesc3rdBlack",
|
|
|
|
"mensuralObliqueDesc3rdBlackVoid",
|
|
|
|
"mensuralObliqueDesc3rdVoid",
|
|
|
|
"mensuralObliqueDesc3rdWhite",
|
|
|
|
"mensuralObliqueDesc4thBlack",
|
|
|
|
"mensuralObliqueDesc4thBlackVoid",
|
|
|
|
"mensuralObliqueDesc4thVoid",
|
|
|
|
"mensuralObliqueDesc4thWhite",
|
|
|
|
"mensuralObliqueDesc5thBlack",
|
|
|
|
"mensuralObliqueDesc5thBlackVoid",
|
|
|
|
"mensuralObliqueDesc5thVoid",
|
|
|
|
"mensuralObliqueDesc5thWhite",
|
2014-03-15 12:31:29 +01:00
|
|
|
"mensuralProlation1",
|
|
|
|
"mensuralProlation10",
|
|
|
|
"mensuralProlation11",
|
|
|
|
"mensuralProlation2",
|
|
|
|
"mensuralProlation3",
|
|
|
|
"mensuralProlation4",
|
|
|
|
"mensuralProlation5",
|
|
|
|
"mensuralProlation6",
|
|
|
|
"mensuralProlation7",
|
|
|
|
"mensuralProlation8",
|
|
|
|
"mensuralProlation9",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralProlationCombiningDot",
|
|
|
|
"mensuralProlationCombiningDotVoid",
|
|
|
|
"mensuralProlationCombiningStroke",
|
|
|
|
"mensuralProlationCombiningThreeDots",
|
|
|
|
"mensuralProlationCombiningThreeDotsTri",
|
|
|
|
"mensuralProlationCombiningTwoDots",
|
2013-11-06 15:58:05 +01:00
|
|
|
"mensuralProportion1",
|
|
|
|
"mensuralProportion2",
|
|
|
|
"mensuralProportion3",
|
|
|
|
"mensuralProportion4",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralProportionMajor",
|
|
|
|
"mensuralProportionMinor",
|
2014-04-18 18:55:33 +02:00
|
|
|
"mensuralProportionProportioDupla1",
|
|
|
|
"mensuralProportionProportioDupla2",
|
|
|
|
"mensuralProportionProportioQuadrupla",
|
|
|
|
"mensuralProportionProportioTripla",
|
|
|
|
"mensuralProportionTempusPerfectum",
|
2013-11-06 15:58:05 +01:00
|
|
|
"mensuralRestBrevis",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralRestFusa",
|
2013-11-06 15:58:05 +01:00
|
|
|
"mensuralRestLongaImperfecta",
|
|
|
|
"mensuralRestLongaPerfecta",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralRestMaxima",
|
2013-11-06 15:58:05 +01:00
|
|
|
"mensuralRestMinima",
|
|
|
|
"mensuralRestSemibrevis",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralRestSemifusa",
|
2013-11-06 15:58:05 +01:00
|
|
|
"mensuralRestSemiminima",
|
2014-03-15 12:31:29 +01:00
|
|
|
"mensuralSignumDown",
|
|
|
|
"mensuralSignumUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"mensuralTempusImperfectumHoriz",
|
|
|
|
"mensuralTempusPerfectumHoriz",
|
|
|
|
"mensuralWhiteBrevis",
|
|
|
|
"mensuralWhiteFusa",
|
|
|
|
"mensuralWhiteLonga",
|
|
|
|
"mensuralWhiteMaxima",
|
|
|
|
"mensuralWhiteMinima",
|
|
|
|
"mensuralWhiteSemiminima",
|
2013-11-06 15:58:05 +01:00
|
|
|
"miscDoNotCopy",
|
|
|
|
"miscDoNotPhotocopy",
|
|
|
|
"miscEyeglasses",
|
|
|
|
"note1024thDown",
|
|
|
|
"note1024thUp",
|
|
|
|
"note128thDown",
|
|
|
|
"note128thUp",
|
|
|
|
"note16thDown",
|
|
|
|
"note16thUp",
|
|
|
|
"note256thDown",
|
|
|
|
"note256thUp",
|
|
|
|
"note32ndDown",
|
|
|
|
"note32ndUp",
|
|
|
|
"note512thDown",
|
|
|
|
"note512thUp",
|
|
|
|
"note64thDown",
|
|
|
|
"note64thUp",
|
2014-03-15 12:31:29 +01:00
|
|
|
"note8thDown",
|
|
|
|
"note8thUp",
|
2013-11-06 15:58:05 +01:00
|
|
|
"noteABlack",
|
|
|
|
"noteAFlatBlack",
|
|
|
|
"noteAFlatHalf",
|
|
|
|
"noteAFlatWhole",
|
|
|
|
"noteAHalf",
|
|
|
|
"noteASharpBlack",
|
|
|
|
"noteASharpHalf",
|
|
|
|
"noteASharpWhole",
|
|
|
|
"noteAWhole",
|
|
|
|
"noteBBlack",
|
|
|
|
"noteBFlatBlack",
|
|
|
|
"noteBFlatHalf",
|
|
|
|
"noteBFlatWhole",
|
|
|
|
"noteBHalf",
|
|
|
|
"noteBSharpBlack",
|
|
|
|
"noteBSharpHalf",
|
|
|
|
"noteBSharpWhole",
|
|
|
|
"noteBWhole",
|
|
|
|
"noteCBlack",
|
|
|
|
"noteCFlatBlack",
|
|
|
|
"noteCFlatHalf",
|
|
|
|
"noteCFlatWhole",
|
|
|
|
"noteCHalf",
|
|
|
|
"noteCSharpBlack",
|
|
|
|
"noteCSharpHalf",
|
|
|
|
"noteCSharpWhole",
|
|
|
|
"noteCWhole",
|
|
|
|
"noteDBlack",
|
|
|
|
"noteDFlatBlack",
|
|
|
|
"noteDFlatHalf",
|
|
|
|
"noteDFlatWhole",
|
|
|
|
"noteDHalf",
|
|
|
|
"noteDSharpBlack",
|
|
|
|
"noteDSharpHalf",
|
|
|
|
"noteDSharpWhole",
|
|
|
|
"noteDWhole",
|
|
|
|
"noteDoBlack",
|
|
|
|
"noteDoHalf",
|
|
|
|
"noteDoWhole",
|
|
|
|
"noteDoubleWhole",
|
2013-11-29 00:37:48 +01:00
|
|
|
"noteDoubleWholeSquare",
|
2013-11-06 15:58:05 +01:00
|
|
|
"noteEBlack",
|
|
|
|
"noteEFlatBlack",
|
|
|
|
"noteEFlatHalf",
|
|
|
|
"noteEFlatWhole",
|
|
|
|
"noteEHalf",
|
|
|
|
"noteESharpBlack",
|
|
|
|
"noteESharpHalf",
|
|
|
|
"noteESharpWhole",
|
|
|
|
"noteEWhole",
|
|
|
|
"noteEmptyBlack",
|
|
|
|
"noteEmptyHalf",
|
|
|
|
"noteEmptyWhole",
|
|
|
|
"noteFBlack",
|
|
|
|
"noteFFlatBlack",
|
|
|
|
"noteFFlatHalf",
|
|
|
|
"noteFFlatWhole",
|
|
|
|
"noteFHalf",
|
|
|
|
"noteFSharpBlack",
|
|
|
|
"noteFSharpHalf",
|
|
|
|
"noteFSharpWhole",
|
|
|
|
"noteFWhole",
|
|
|
|
"noteFaBlack",
|
|
|
|
"noteFaHalf",
|
|
|
|
"noteFaWhole",
|
|
|
|
"noteGBlack",
|
|
|
|
"noteGFlatBlack",
|
|
|
|
"noteGFlatHalf",
|
|
|
|
"noteGFlatWhole",
|
|
|
|
"noteGHalf",
|
|
|
|
"noteGSharpBlack",
|
|
|
|
"noteGSharpHalf",
|
|
|
|
"noteGSharpWhole",
|
|
|
|
"noteGWhole",
|
|
|
|
"noteHBlack",
|
|
|
|
"noteHHalf",
|
|
|
|
"noteHSharpBlack",
|
|
|
|
"noteHSharpHalf",
|
|
|
|
"noteHSharpWhole",
|
|
|
|
"noteHWhole",
|
|
|
|
"noteHalfDown",
|
|
|
|
"noteHalfUp",
|
|
|
|
"noteLaBlack",
|
|
|
|
"noteLaHalf",
|
|
|
|
"noteLaWhole",
|
|
|
|
"noteMiBlack",
|
|
|
|
"noteMiHalf",
|
|
|
|
"noteMiWhole",
|
|
|
|
"noteQuarterDown",
|
|
|
|
"noteQuarterUp",
|
|
|
|
"noteReBlack",
|
|
|
|
"noteReHalf",
|
|
|
|
"noteReWhole",
|
2014-04-18 18:55:33 +02:00
|
|
|
"noteShapeArrowheadLeftBlack",
|
|
|
|
"noteShapeArrowheadLeftWhite",
|
2013-11-06 15:58:05 +01:00
|
|
|
"noteShapeDiamondBlack",
|
|
|
|
"noteShapeDiamondWhite",
|
2014-04-18 18:55:33 +02:00
|
|
|
"noteShapeIsoscelesTriangleBlack",
|
|
|
|
"noteShapeIsoscelesTriangleWhite",
|
|
|
|
"noteShapeKeystoneBlack",
|
|
|
|
"noteShapeKeystoneWhite",
|
2013-11-06 15:58:05 +01:00
|
|
|
"noteShapeMoonBlack",
|
2014-04-18 18:55:33 +02:00
|
|
|
"noteShapeMoonLeftBlack",
|
|
|
|
"noteShapeMoonLeftWhite",
|
2013-11-06 15:58:05 +01:00
|
|
|
"noteShapeMoonWhite",
|
2014-04-18 18:55:33 +02:00
|
|
|
"noteShapeQuarterMoonBlack",
|
|
|
|
"noteShapeQuarterMoonWhite",
|
2013-11-06 15:58:05 +01:00
|
|
|
"noteShapeRoundBlack",
|
|
|
|
"noteShapeRoundWhite",
|
|
|
|
"noteShapeSquareBlack",
|
|
|
|
"noteShapeSquareWhite",
|
|
|
|
"noteShapeTriangleLeftBlack",
|
|
|
|
"noteShapeTriangleLeftWhite",
|
|
|
|
"noteShapeTriangleRightBlack",
|
|
|
|
"noteShapeTriangleRightWhite",
|
|
|
|
"noteShapeTriangleRoundBlack",
|
2014-04-18 18:55:33 +02:00
|
|
|
"noteShapeTriangleRoundLeftBlack",
|
|
|
|
"noteShapeTriangleRoundLeftWhite",
|
2013-11-06 15:58:05 +01:00
|
|
|
"noteShapeTriangleRoundWhite",
|
|
|
|
"noteShapeTriangleUpBlack",
|
|
|
|
"noteShapeTriangleUpWhite",
|
|
|
|
"noteSiBlack",
|
|
|
|
"noteSiHalf",
|
|
|
|
"noteSiWhole",
|
|
|
|
"noteSoBlack",
|
|
|
|
"noteSoHalf",
|
|
|
|
"noteSoWhole",
|
|
|
|
"noteTiBlack",
|
|
|
|
"noteTiHalf",
|
|
|
|
"noteTiWhole",
|
|
|
|
"noteWhole",
|
|
|
|
"noteheadBlack",
|
|
|
|
"noteheadCircleSlash",
|
|
|
|
"noteheadCircleX",
|
|
|
|
"noteheadCircleXDoubleWhole",
|
|
|
|
"noteheadCircleXHalf",
|
|
|
|
"noteheadCircleXWhole",
|
|
|
|
"noteheadCircledBlack",
|
|
|
|
"noteheadCircledDoubleWhole",
|
|
|
|
"noteheadCircledHalf",
|
|
|
|
"noteheadCircledWhole",
|
|
|
|
"noteheadClusterDoubleWhole2nd",
|
|
|
|
"noteheadClusterDoubleWhole3rd",
|
|
|
|
"noteheadClusterDoubleWholeBottom",
|
|
|
|
"noteheadClusterDoubleWholeMiddle",
|
|
|
|
"noteheadClusterDoubleWholeTop",
|
|
|
|
"noteheadClusterHalf2nd",
|
|
|
|
"noteheadClusterHalf3rd",
|
|
|
|
"noteheadClusterHalfBottom",
|
|
|
|
"noteheadClusterHalfMiddle",
|
|
|
|
"noteheadClusterHalfTop",
|
|
|
|
"noteheadClusterQuarter2nd",
|
|
|
|
"noteheadClusterQuarter3rd",
|
|
|
|
"noteheadClusterQuarterBottom",
|
|
|
|
"noteheadClusterQuarterMiddle",
|
|
|
|
"noteheadClusterQuarterTop",
|
|
|
|
"noteheadClusterRoundBlack",
|
|
|
|
"noteheadClusterRoundWhite",
|
|
|
|
"noteheadClusterSquareBlack",
|
|
|
|
"noteheadClusterSquareWhite",
|
|
|
|
"noteheadClusterWhole2nd",
|
|
|
|
"noteheadClusterWhole3rd",
|
|
|
|
"noteheadClusterWholeBottom",
|
|
|
|
"noteheadClusterWholeMiddle",
|
|
|
|
"noteheadClusterWholeTop",
|
|
|
|
"noteheadDiamondBlack",
|
|
|
|
"noteheadDiamondBlackOld",
|
2014-04-18 18:55:33 +02:00
|
|
|
"noteheadDiamondBlackWide",
|
2013-11-06 15:58:05 +01:00
|
|
|
"noteheadDiamondClusterBlack2nd",
|
|
|
|
"noteheadDiamondClusterBlack3rd",
|
|
|
|
"noteheadDiamondClusterBlackBottom",
|
|
|
|
"noteheadDiamondClusterBlackMiddle",
|
|
|
|
"noteheadDiamondClusterBlackTop",
|
|
|
|
"noteheadDiamondClusterWhite2nd",
|
|
|
|
"noteheadDiamondClusterWhite3rd",
|
|
|
|
"noteheadDiamondClusterWhiteBottom",
|
|
|
|
"noteheadDiamondClusterWhiteMiddle",
|
|
|
|
"noteheadDiamondClusterWhiteTop",
|
|
|
|
"noteheadDiamondDoubleWhole",
|
|
|
|
"noteheadDiamondDoubleWholeOld",
|
|
|
|
"noteheadDiamondHalf",
|
|
|
|
"noteheadDiamondHalfFilled",
|
|
|
|
"noteheadDiamondHalfOld",
|
2014-04-18 18:55:33 +02:00
|
|
|
"noteheadDiamondHalfWide",
|
|
|
|
"noteheadDiamondOpen",
|
|
|
|
"noteheadDiamondWhite",
|
|
|
|
"noteheadDiamondWhiteWide",
|
2013-11-06 15:58:05 +01:00
|
|
|
"noteheadDiamondWhole",
|
|
|
|
"noteheadDiamondWholeOld",
|
|
|
|
"noteheadDoubleWhole",
|
2013-11-29 00:37:48 +01:00
|
|
|
"noteheadDoubleWholeSquare",
|
2013-11-06 15:58:05 +01:00
|
|
|
"noteheadDoubleWholeWithX",
|
|
|
|
"noteheadHalf",
|
2014-04-18 18:55:33 +02:00
|
|
|
"noteheadHalfFilled",
|
2013-11-06 15:58:05 +01:00
|
|
|
"noteheadHalfWithX",
|
|
|
|
"noteheadHeavyX",
|
|
|
|
"noteheadHeavyXHat",
|
|
|
|
"noteheadLargeArrowDownBlack",
|
|
|
|
"noteheadLargeArrowDownDoubleWhole",
|
|
|
|
"noteheadLargeArrowDownHalf",
|
|
|
|
"noteheadLargeArrowDownWhole",
|
|
|
|
"noteheadLargeArrowUpBlack",
|
|
|
|
"noteheadLargeArrowUpDoubleWhole",
|
|
|
|
"noteheadLargeArrowUpHalf",
|
|
|
|
"noteheadLargeArrowUpWhole",
|
|
|
|
"noteheadMoonBlack",
|
|
|
|
"noteheadMoonWhite",
|
|
|
|
"noteheadNull",
|
|
|
|
"noteheadParenthesis",
|
|
|
|
"noteheadParenthesisLeft",
|
|
|
|
"noteheadParenthesisRight",
|
|
|
|
"noteheadPlusBlack",
|
|
|
|
"noteheadPlusDoubleWhole",
|
|
|
|
"noteheadPlusHalf",
|
|
|
|
"noteheadPlusWhole",
|
2014-03-15 12:31:29 +01:00
|
|
|
"noteheadRectangularClusterBlackBottom",
|
|
|
|
"noteheadRectangularClusterBlackMiddle",
|
|
|
|
"noteheadRectangularClusterBlackTop",
|
|
|
|
"noteheadRectangularClusterWhiteBottom",
|
|
|
|
"noteheadRectangularClusterWhiteMiddle",
|
|
|
|
"noteheadRectangularClusterWhiteTop",
|
2013-11-06 15:58:05 +01:00
|
|
|
"noteheadRoundBlack",
|
|
|
|
"noteheadRoundBlackLarge",
|
|
|
|
"noteheadRoundBlackSlashed",
|
|
|
|
"noteheadRoundBlackSlashedLarge",
|
|
|
|
"noteheadRoundWhite",
|
|
|
|
"noteheadRoundWhiteLarge",
|
|
|
|
"noteheadRoundWhiteSlashed",
|
|
|
|
"noteheadRoundWhiteSlashedLarge",
|
|
|
|
"noteheadRoundWhiteWithDot",
|
|
|
|
"noteheadRoundWhiteWithDotLarge",
|
|
|
|
"noteheadSlashDiamondWhite",
|
|
|
|
"noteheadSlashHorizontalEnds",
|
|
|
|
"noteheadSlashHorizontalEndsMuted",
|
|
|
|
"noteheadSlashVerticalEnds",
|
|
|
|
"noteheadSlashVerticalEndsMuted",
|
|
|
|
"noteheadSlashVerticalEndsSmall",
|
2014-04-18 18:55:33 +02:00
|
|
|
"noteheadSlashWhiteHalf",
|
2013-11-06 15:58:05 +01:00
|
|
|
"noteheadSlashWhiteMuted",
|
2014-04-18 18:55:33 +02:00
|
|
|
"noteheadSlashWhiteWhole",
|
2013-11-06 15:58:05 +01:00
|
|
|
"noteheadSlashX",
|
|
|
|
"noteheadSlashedBlack1",
|
|
|
|
"noteheadSlashedBlack2",
|
|
|
|
"noteheadSlashedDoubleWhole1",
|
|
|
|
"noteheadSlashedDoubleWhole2",
|
|
|
|
"noteheadSlashedHalf1",
|
|
|
|
"noteheadSlashedHalf2",
|
|
|
|
"noteheadSlashedWhole1",
|
|
|
|
"noteheadSlashedWhole2",
|
|
|
|
"noteheadSquareBlack",
|
|
|
|
"noteheadSquareBlackLarge",
|
|
|
|
"noteheadSquareBlackWhite",
|
|
|
|
"noteheadSquareWhite",
|
|
|
|
"noteheadTriangleDownBlack",
|
|
|
|
"noteheadTriangleDownDoubleWhole",
|
|
|
|
"noteheadTriangleDownHalf",
|
|
|
|
"noteheadTriangleDownWhite",
|
|
|
|
"noteheadTriangleDownWhole",
|
|
|
|
"noteheadTriangleLeftBlack",
|
|
|
|
"noteheadTriangleLeftWhite",
|
|
|
|
"noteheadTriangleRightBlack",
|
|
|
|
"noteheadTriangleRightWhite",
|
|
|
|
"noteheadTriangleRoundDownBlack",
|
|
|
|
"noteheadTriangleRoundDownWhite",
|
|
|
|
"noteheadTriangleUpBlack",
|
|
|
|
"noteheadTriangleUpDoubleWhole",
|
|
|
|
"noteheadTriangleUpHalf",
|
|
|
|
"noteheadTriangleUpRightBlack",
|
|
|
|
"noteheadTriangleUpRightWhite",
|
|
|
|
"noteheadTriangleUpWhite",
|
|
|
|
"noteheadTriangleUpWhole",
|
|
|
|
"noteheadVoidWithX",
|
|
|
|
"noteheadWhole",
|
2014-04-18 18:55:33 +02:00
|
|
|
"noteheadWholeFilled",
|
2013-11-06 15:58:05 +01:00
|
|
|
"noteheadWholeWithX",
|
|
|
|
"noteheadXBlack",
|
|
|
|
"noteheadXDoubleWhole",
|
|
|
|
"noteheadXHalf",
|
|
|
|
"noteheadXOrnate",
|
|
|
|
"noteheadXWhole",
|
2014-03-15 12:31:29 +01:00
|
|
|
"octaveParensLeft",
|
|
|
|
"octaveParensRight",
|
2013-11-06 15:58:05 +01:00
|
|
|
"ornamentBottomLeftConcaveStroke",
|
|
|
|
"ornamentBottomLeftConcaveStrokeLarge",
|
|
|
|
"ornamentBottomLeftConvexStroke",
|
|
|
|
"ornamentBottomRightConcaveStroke",
|
|
|
|
"ornamentBottomRightConvexStroke",
|
|
|
|
"ornamentComma",
|
|
|
|
"ornamentDoubleObliqueLinesAfterNote",
|
|
|
|
"ornamentDoubleObliqueLinesBeforeNote",
|
|
|
|
"ornamentDownCurve",
|
|
|
|
"ornamentHaydn",
|
|
|
|
"ornamentHighLeftConcaveStroke",
|
|
|
|
"ornamentHighLeftConvexStroke",
|
|
|
|
"ornamentHighRightConcaveStroke",
|
|
|
|
"ornamentHighRightConvexStroke",
|
|
|
|
"ornamentHookAfterNote",
|
|
|
|
"ornamentHookBeforeNote",
|
|
|
|
"ornamentLeftFacingHalfCircle",
|
|
|
|
"ornamentLeftFacingHook",
|
|
|
|
"ornamentLeftPlus",
|
|
|
|
"ornamentLeftShakeT",
|
|
|
|
"ornamentLeftVerticalStroke",
|
|
|
|
"ornamentLeftVerticalStrokeWithCross",
|
|
|
|
"ornamentLowLeftConcaveStroke",
|
|
|
|
"ornamentLowLeftConvexStroke",
|
|
|
|
"ornamentLowRightConcaveStroke",
|
|
|
|
"ornamentLowRightConvexStroke",
|
|
|
|
"ornamentMiddleVerticalStroke",
|
|
|
|
"ornamentMordent",
|
|
|
|
"ornamentMordentInverted",
|
|
|
|
"ornamentObliqueLineAfterNote",
|
|
|
|
"ornamentObliqueLineBeforeNote",
|
|
|
|
"ornamentObliqueLineHorizAfterNote",
|
|
|
|
"ornamentObliqueLineHorizBeforeNote",
|
|
|
|
"ornamentOriscus",
|
|
|
|
"ornamentPortDeVoixV",
|
|
|
|
"ornamentPrecompAppoggTrill",
|
|
|
|
"ornamentPrecompAppoggTrillSuffix",
|
2014-04-18 18:55:33 +02:00
|
|
|
"ornamentPrecompCadence",
|
|
|
|
"ornamentPrecompCadenceUpperPrefix ",
|
|
|
|
"ornamentPrecompCadenceUpperPrefixTurn",
|
|
|
|
"ornamentPrecompCadenceWithTurn ",
|
2013-11-06 15:58:05 +01:00
|
|
|
"ornamentPrecompDescendingSlide",
|
2014-04-18 18:55:33 +02:00
|
|
|
"ornamentPrecompDoubleCadenceLowerPrefix",
|
|
|
|
"ornamentPrecompDoubleCadenceUpperPrefix ",
|
|
|
|
"ornamentPrecompDoubleCadenceUpperPrefixTurn",
|
|
|
|
"ornamentPrecompInvertedMordentUpperPrefix",
|
|
|
|
"ornamentPrecompMordentRelease",
|
|
|
|
"ornamentPrecompMordentUpperPrefix",
|
2013-11-06 15:58:05 +01:00
|
|
|
"ornamentPrecompPortDeVoixMordent",
|
|
|
|
"ornamentPrecompSlide",
|
|
|
|
"ornamentPrecompSlideTrillBach",
|
|
|
|
"ornamentPrecompSlideTrillDAnglebert",
|
|
|
|
"ornamentPrecompSlideTrillMarpurg",
|
|
|
|
"ornamentPrecompSlideTrillMuffat",
|
|
|
|
"ornamentPrecompSlideTrillSuffixMuffat",
|
2014-04-18 18:55:33 +02:00
|
|
|
"ornamentPrecompTrillLowerSuffix",
|
2013-11-06 15:58:05 +01:00
|
|
|
"ornamentPrecompTrillSuffixDandrieu",
|
2014-04-18 18:55:33 +02:00
|
|
|
"ornamentPrecompTrillWithMordent",
|
2013-11-06 15:58:05 +01:00
|
|
|
"ornamentPrecompTurnTrillBach",
|
|
|
|
"ornamentPrecompTurnTrillDAnglebert",
|
|
|
|
"ornamentQuilisma",
|
|
|
|
"ornamentRightFacingHalfCircle",
|
|
|
|
"ornamentRightFacingHook",
|
|
|
|
"ornamentRightVerticalStroke",
|
|
|
|
"ornamentSchleifer",
|
|
|
|
"ornamentShake3",
|
|
|
|
"ornamentShakeMuffat1",
|
|
|
|
"ornamentShortObliqueLineAfterNote",
|
|
|
|
"ornamentShortObliqueLineBeforeNote",
|
|
|
|
"ornamentTopLeftConcaveStroke",
|
|
|
|
"ornamentTopLeftConvexStroke",
|
|
|
|
"ornamentTopRightConcaveStroke",
|
|
|
|
"ornamentTopRightConvexStroke",
|
|
|
|
"ornamentTremblement",
|
|
|
|
"ornamentTrill",
|
|
|
|
"ornamentTurn",
|
|
|
|
"ornamentTurnInverted",
|
|
|
|
"ornamentTurnSlash",
|
|
|
|
"ornamentTurnUp",
|
|
|
|
"ornamentTurnUpS",
|
|
|
|
"ornamentUpCurve",
|
|
|
|
"ornamentVerticalLine",
|
|
|
|
"ornamentZigZagLineNoRightEnd",
|
|
|
|
"ornamentZigZagLineWithRightEnd",
|
|
|
|
"ottava",
|
|
|
|
"ottavaAlta",
|
|
|
|
"ottavaBassa",
|
|
|
|
"ottavaBassaBa",
|
|
|
|
"pendereckiTremolo",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictAgogo",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictAlmglocken",
|
|
|
|
"pictAnvil",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictBambooChimes",
|
|
|
|
"pictBambooScraper",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictBassDrum",
|
|
|
|
"pictBassDrumOnSide",
|
|
|
|
"pictBeaterBow",
|
|
|
|
"pictBeaterBrassMalletsDown",
|
|
|
|
"pictBeaterBrassMalletsUp",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictBeaterCombiningDashedCircle",
|
|
|
|
"pictBeaterCombiningParentheses",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictBeaterDoubleBassDrumDown",
|
|
|
|
"pictBeaterDoubleBassDrumUp",
|
|
|
|
"pictBeaterFinger",
|
|
|
|
"pictBeaterFingernails",
|
|
|
|
"pictBeaterFist",
|
|
|
|
"pictBeaterGuiroScraper",
|
|
|
|
"pictBeaterHammer",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictBeaterHammerMetalDown",
|
|
|
|
"pictBeaterHammerMetalUp",
|
|
|
|
"pictBeaterHammerPlasticDown",
|
|
|
|
"pictBeaterHammerPlasticUp",
|
|
|
|
"pictBeaterHammerWoodDown",
|
|
|
|
"pictBeaterHammerWoodUp",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictBeaterHand",
|
|
|
|
"pictBeaterHardBassDrumDown",
|
|
|
|
"pictBeaterHardBassDrumUp",
|
|
|
|
"pictBeaterHardGlockenspielDown",
|
|
|
|
"pictBeaterHardGlockenspielLeft",
|
|
|
|
"pictBeaterHardGlockenspielRight",
|
|
|
|
"pictBeaterHardGlockenspielUp",
|
|
|
|
"pictBeaterHardTimpaniDown",
|
|
|
|
"pictBeaterHardTimpaniLeft",
|
|
|
|
"pictBeaterHardTimpaniRight",
|
|
|
|
"pictBeaterHardTimpaniUp",
|
|
|
|
"pictBeaterHardXylophoneDown",
|
|
|
|
"pictBeaterHardXylophoneLeft",
|
|
|
|
"pictBeaterHardXylophoneRight",
|
|
|
|
"pictBeaterHardXylophoneUp",
|
|
|
|
"pictBeaterHardYarnDown",
|
|
|
|
"pictBeaterHardYarnLeft",
|
|
|
|
"pictBeaterHardYarnRight",
|
|
|
|
"pictBeaterHardYarnUp",
|
|
|
|
"pictBeaterJazzSticksDown",
|
|
|
|
"pictBeaterJazzSticksUp",
|
|
|
|
"pictBeaterKnittingNeedle",
|
|
|
|
"pictBeaterMallet",
|
|
|
|
"pictBeaterMediumBassDrumDown",
|
|
|
|
"pictBeaterMediumBassDrumUp",
|
|
|
|
"pictBeaterMediumTimpaniDown",
|
|
|
|
"pictBeaterMediumTimpaniLeft",
|
|
|
|
"pictBeaterMediumTimpaniRight",
|
|
|
|
"pictBeaterMediumTimpaniUp",
|
|
|
|
"pictBeaterMediumXylophoneDown",
|
|
|
|
"pictBeaterMediumXylophoneLeft",
|
|
|
|
"pictBeaterMediumXylophoneRight",
|
|
|
|
"pictBeaterMediumXylophoneUp",
|
|
|
|
"pictBeaterMediumYarnDown",
|
|
|
|
"pictBeaterMediumYarnLeft",
|
|
|
|
"pictBeaterMediumYarnRight",
|
|
|
|
"pictBeaterMediumYarnUp",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictBeaterMetalBassDrumDown",
|
|
|
|
"pictBeaterMetalBassDrumUp",
|
|
|
|
"pictBeaterMetalDown",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictBeaterMetalHammer",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictBeaterMetalLeft",
|
|
|
|
"pictBeaterMetalRight",
|
|
|
|
"pictBeaterMetalUp",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictBeaterSnareSticksDown",
|
|
|
|
"pictBeaterSnareSticksUp",
|
|
|
|
"pictBeaterSoftBassDrumDown",
|
|
|
|
"pictBeaterSoftBassDrumUp",
|
|
|
|
"pictBeaterSoftGlockenspielDown",
|
|
|
|
"pictBeaterSoftGlockenspielLeft",
|
|
|
|
"pictBeaterSoftGlockenspielRight",
|
|
|
|
"pictBeaterSoftGlockenspielUp",
|
|
|
|
"pictBeaterSoftTimpaniDown",
|
|
|
|
"pictBeaterSoftTimpaniLeft",
|
|
|
|
"pictBeaterSoftTimpaniRight",
|
|
|
|
"pictBeaterSoftTimpaniUp",
|
|
|
|
"pictBeaterSoftXylophone",
|
|
|
|
"pictBeaterSoftXylophoneDown",
|
|
|
|
"pictBeaterSoftXylophoneLeft",
|
|
|
|
"pictBeaterSoftXylophoneRight",
|
|
|
|
"pictBeaterSoftXylophoneUp",
|
|
|
|
"pictBeaterSoftYarnDown",
|
|
|
|
"pictBeaterSoftYarnLeft",
|
|
|
|
"pictBeaterSoftYarnRight",
|
|
|
|
"pictBeaterSoftYarnUp",
|
|
|
|
"pictBeaterSpoonWoodenMallet",
|
|
|
|
"pictBeaterSuperballDown",
|
|
|
|
"pictBeaterSuperballLeft",
|
|
|
|
"pictBeaterSuperballRight",
|
|
|
|
"pictBeaterSuperballUp",
|
|
|
|
"pictBeaterTriangleDown",
|
|
|
|
"pictBeaterTriangleUp",
|
|
|
|
"pictBeaterWireBrushesDown",
|
|
|
|
"pictBeaterWireBrushesUp",
|
|
|
|
"pictBeaterWoodTimpaniDown",
|
|
|
|
"pictBeaterWoodTimpaniLeft",
|
|
|
|
"pictBeaterWoodTimpaniRight",
|
|
|
|
"pictBeaterWoodTimpaniUp",
|
|
|
|
"pictBeaterWoodXylophoneDown",
|
|
|
|
"pictBeaterWoodXylophoneLeft",
|
|
|
|
"pictBeaterWoodXylophoneRight",
|
|
|
|
"pictBeaterWoodXylophoneUp",
|
|
|
|
"pictBell",
|
|
|
|
"pictBellOfCymbal",
|
|
|
|
"pictBellPlate",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictBellTree",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictBirdWhistle",
|
|
|
|
"pictBoardClapper",
|
|
|
|
"pictBongos",
|
|
|
|
"pictBrakeDrum",
|
|
|
|
"pictCabasa",
|
|
|
|
"pictCannon",
|
|
|
|
"pictCarHorn",
|
|
|
|
"pictCastanets",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictCastanetsWithHandle",
|
|
|
|
"pictCelesta",
|
|
|
|
"pictCencerro",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictCenter1",
|
|
|
|
"pictCenter2",
|
|
|
|
"pictCenter3",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictChainRattle",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictChimes",
|
|
|
|
"pictChineseCymbal",
|
|
|
|
"pictChokeCymbal",
|
|
|
|
"pictClaves",
|
|
|
|
"pictCoins",
|
|
|
|
"pictConga",
|
|
|
|
"pictCowBell",
|
|
|
|
"pictCrashCymbals",
|
|
|
|
"pictCrotales",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictCrushStem",
|
|
|
|
"pictCuica",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictCymbalTongs",
|
|
|
|
"pictDamp1",
|
|
|
|
"pictDamp2",
|
|
|
|
"pictDamp3",
|
|
|
|
"pictDamp4",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictDeadNoteStem",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictDrumStick",
|
|
|
|
"pictDuckCall",
|
|
|
|
"pictEdgeOfCymbal",
|
|
|
|
"pictEmptyTrap",
|
|
|
|
"pictFingerCymbals",
|
|
|
|
"pictFlexatone",
|
|
|
|
"pictFootballRatchet",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictGlassHarmonica",
|
|
|
|
"pictGlassHarp",
|
|
|
|
"pictGlassPlateChimes",
|
|
|
|
"pictGlassTubeChimes",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictGlsp",
|
|
|
|
"pictGlspSmithBrindle",
|
|
|
|
"pictGobletDrum",
|
|
|
|
"pictGong",
|
|
|
|
"pictGongWithButton",
|
|
|
|
"pictGuiro",
|
|
|
|
"pictGumHardDown",
|
|
|
|
"pictGumHardLeft",
|
|
|
|
"pictGumHardRight",
|
|
|
|
"pictGumHardUp",
|
|
|
|
"pictGumMediumDown",
|
|
|
|
"pictGumMediumLeft",
|
|
|
|
"pictGumMediumRight",
|
|
|
|
"pictGumMediumUp",
|
|
|
|
"pictGumSoftDown",
|
|
|
|
"pictGumSoftLeft",
|
|
|
|
"pictGumSoftRight",
|
|
|
|
"pictGumSoftUp",
|
|
|
|
"pictHalfOpen1",
|
|
|
|
"pictHalfOpen2",
|
|
|
|
"pictHandbell",
|
|
|
|
"pictHiHat",
|
|
|
|
"pictHiHatOnStand",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictJawHarp",
|
|
|
|
"pictJingleBells",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictKlaxonHorn",
|
2013-11-29 00:37:48 +01:00
|
|
|
"pictLeftHandCircle",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictLionsRoar",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictLithophone",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictLogDrum",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictLotusFlute",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictMar",
|
|
|
|
"pictMarSmithBrindle",
|
|
|
|
"pictMaraca",
|
|
|
|
"pictMaracas",
|
|
|
|
"pictMegaphone",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictMetalPlateChimes",
|
|
|
|
"pictMetalTubeChimes",
|
|
|
|
"pictMusicalSaw",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictNormalPosition",
|
|
|
|
"pictOnRim",
|
|
|
|
"pictOpen",
|
|
|
|
"pictOpenRimShot",
|
|
|
|
"pictPistolShot",
|
|
|
|
"pictPoliceWhistle",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictQuijada",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictRainstick",
|
|
|
|
"pictRatchet",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictRecoReco",
|
2013-11-29 00:37:48 +01:00
|
|
|
"pictRightHandSquare",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictRim1",
|
|
|
|
"pictRim2",
|
|
|
|
"pictRim3",
|
|
|
|
"pictRimShotOnStem",
|
|
|
|
"pictSandpaperBlocks",
|
|
|
|
"pictScrapeAroundRim",
|
|
|
|
"pictScrapeCenterToEdge",
|
|
|
|
"pictScrapeEdgeToCenter",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictShellBells",
|
|
|
|
"pictShellChimes",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictSiren",
|
|
|
|
"pictSistrum",
|
|
|
|
"pictSizzleCymbal",
|
|
|
|
"pictSleighBell",
|
|
|
|
"pictSlideBrushOnGong",
|
|
|
|
"pictSlideWhistle",
|
|
|
|
"pictSlitDrum",
|
|
|
|
"pictSnareDrum",
|
|
|
|
"pictSnareDrumMilitary",
|
|
|
|
"pictSnareDrumSnaresOff",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictSteelDrums",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictStickShot",
|
|
|
|
"pictSuperball",
|
|
|
|
"pictSuspendedCymbal",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictSwishStem",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictTabla",
|
|
|
|
"pictTamTam",
|
|
|
|
"pictTamTamWithBeater",
|
|
|
|
"pictTambourine",
|
|
|
|
"pictTempleBlocks",
|
|
|
|
"pictTenorDrum",
|
|
|
|
"pictThundersheet",
|
|
|
|
"pictTimbales",
|
|
|
|
"pictTimpani",
|
|
|
|
"pictTomTom",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictTomTomChinese",
|
|
|
|
"pictTomTomIndoAmerican",
|
|
|
|
"pictTomTomJapanese",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictTriangle",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictTubaphone",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictTubularBells",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictTurnLeftStem",
|
|
|
|
"pictTurnRightLeftStem",
|
|
|
|
"pictTurnRightStem",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictVib",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictVibMotorOff",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictVibSmithBrindle",
|
|
|
|
"pictVibraslap",
|
|
|
|
"pictVietnameseHat",
|
|
|
|
"pictWhip",
|
|
|
|
"pictWindChimesGlass",
|
|
|
|
"pictWindMachine",
|
|
|
|
"pictWindWhistle",
|
|
|
|
"pictWoodBlock",
|
|
|
|
"pictWoundHardDown",
|
|
|
|
"pictWoundHardLeft",
|
|
|
|
"pictWoundHardRight",
|
|
|
|
"pictWoundHardUp",
|
|
|
|
"pictWoundSoftDown",
|
|
|
|
"pictWoundSoftLeft",
|
|
|
|
"pictWoundSoftRight",
|
|
|
|
"pictWoundSoftUp",
|
|
|
|
"pictXyl",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictXylBass",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pictXylSmithBrindle",
|
2014-04-18 18:55:33 +02:00
|
|
|
"pictXylTenor",
|
|
|
|
"pictXylTenorTrough",
|
|
|
|
"pictXylTrough",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pluckedBuzzPizzicato",
|
|
|
|
"pluckedDamp",
|
|
|
|
"pluckedDampAll",
|
|
|
|
"pluckedDampOnStem",
|
|
|
|
"pluckedFingernailFlick",
|
2013-11-29 00:37:48 +01:00
|
|
|
"pluckedLeftHandPizzicato",
|
2013-11-06 15:58:05 +01:00
|
|
|
"pluckedPlectrum",
|
|
|
|
"pluckedSnapPizzicatoAbove",
|
|
|
|
"pluckedSnapPizzicatoBelow",
|
|
|
|
"pluckedWithFingernails",
|
|
|
|
"quindicesima",
|
|
|
|
"quindicesimaAlta",
|
|
|
|
"quindicesimaBassa",
|
|
|
|
"repeat1Bar",
|
|
|
|
"repeat2Bars",
|
|
|
|
"repeat4Bars",
|
2013-11-29 00:37:48 +01:00
|
|
|
"repeatDot",
|
2013-11-06 15:58:05 +01:00
|
|
|
"repeatDots",
|
2014-04-18 18:55:33 +02:00
|
|
|
"repeatLeft",
|
|
|
|
"repeatRight",
|
|
|
|
"repeatRightLeft",
|
2013-11-06 15:58:05 +01:00
|
|
|
"rest1024th",
|
|
|
|
"rest128th",
|
|
|
|
"rest16th",
|
|
|
|
"rest256th",
|
|
|
|
"rest32nd",
|
|
|
|
"rest512th",
|
|
|
|
"rest64th",
|
|
|
|
"rest8th",
|
|
|
|
"restDoubleWhole",
|
2014-04-18 18:55:33 +02:00
|
|
|
"restDoubleWholeLegerLine",
|
2013-11-06 15:58:05 +01:00
|
|
|
"restHBar",
|
|
|
|
"restHBarLeft",
|
2014-04-18 18:55:33 +02:00
|
|
|
"restHBarMiddle",
|
2013-11-06 15:58:05 +01:00
|
|
|
"restHBarRight",
|
|
|
|
"restHalf",
|
2014-03-15 12:31:29 +01:00
|
|
|
"restHalfLegerLine",
|
2013-11-06 15:58:05 +01:00
|
|
|
"restLonga",
|
2014-04-18 18:55:33 +02:00
|
|
|
"restMaxima",
|
2013-11-06 15:58:05 +01:00
|
|
|
"restQuarter",
|
|
|
|
"restQuarterOld",
|
|
|
|
"restWhole",
|
2014-03-15 12:31:29 +01:00
|
|
|
"restWholeLegerLine",
|
2013-11-06 15:58:05 +01:00
|
|
|
"reversedBrace",
|
|
|
|
"reversedBracketBottom",
|
|
|
|
"reversedBracketTop",
|
|
|
|
"rightRepeatSmall",
|
|
|
|
"segno",
|
|
|
|
"segnoSerpent1",
|
|
|
|
"segnoSerpent2",
|
|
|
|
"semipitchedPercussionClef1",
|
|
|
|
"semipitchedPercussionClef2",
|
2014-04-18 18:55:33 +02:00
|
|
|
"smnFlat",
|
|
|
|
"smnFlatWhite",
|
|
|
|
"smnHistoryDoubleFlat",
|
|
|
|
"smnHistoryDoubleSharp",
|
|
|
|
"smnHistoryFlat",
|
|
|
|
"smnHistorySharp",
|
|
|
|
"smnNatural",
|
|
|
|
"smnSharp",
|
|
|
|
"smnSharpWhite",
|
2013-11-29 00:37:48 +01:00
|
|
|
"splitBarDivider",
|
2013-11-06 15:58:05 +01:00
|
|
|
"staff1Line",
|
2013-11-29 00:37:48 +01:00
|
|
|
"staff1LineNarrow",
|
|
|
|
"staff1LineWide",
|
2013-11-06 15:58:05 +01:00
|
|
|
"staff2Lines",
|
2013-11-29 00:37:48 +01:00
|
|
|
"staff2LinesNarrow",
|
|
|
|
"staff2LinesWide",
|
2013-11-06 15:58:05 +01:00
|
|
|
"staff3Lines",
|
2013-11-29 00:37:48 +01:00
|
|
|
"staff3LinesNarrow",
|
|
|
|
"staff3LinesWide",
|
2013-11-06 15:58:05 +01:00
|
|
|
"staff4Lines",
|
2013-11-29 00:37:48 +01:00
|
|
|
"staff4LinesNarrow",
|
|
|
|
"staff4LinesWide",
|
2013-11-06 15:58:05 +01:00
|
|
|
"staff5Lines",
|
2013-11-29 00:37:48 +01:00
|
|
|
"staff5LinesNarrow",
|
|
|
|
"staff5LinesWide",
|
2013-11-06 15:58:05 +01:00
|
|
|
"staff6Lines",
|
2013-11-29 00:37:48 +01:00
|
|
|
"staff6LinesNarrow",
|
|
|
|
"staff6LinesWide",
|
2014-03-15 12:31:29 +01:00
|
|
|
"staffDivideArrowDown",
|
|
|
|
"staffDivideArrowUp",
|
|
|
|
"staffDivideArrowUpDown",
|
2013-11-29 00:37:48 +01:00
|
|
|
"staffPosLower1",
|
|
|
|
"staffPosLower2",
|
|
|
|
"staffPosLower3",
|
|
|
|
"staffPosLower4",
|
|
|
|
"staffPosLower5",
|
|
|
|
"staffPosLower6",
|
|
|
|
"staffPosLower7",
|
|
|
|
"staffPosLower8",
|
|
|
|
"staffPosRaise1",
|
|
|
|
"staffPosRaise2",
|
|
|
|
"staffPosRaise3",
|
|
|
|
"staffPosRaise4",
|
|
|
|
"staffPosRaise5",
|
|
|
|
"staffPosRaise6",
|
|
|
|
"staffPosRaise7",
|
|
|
|
"staffPosRaise8",
|
2013-11-06 15:58:05 +01:00
|
|
|
"stem",
|
|
|
|
"stemBowOnBridge",
|
|
|
|
"stemBowOnTailpiece",
|
|
|
|
"stemBuzzRoll",
|
|
|
|
"stemDamp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"stemHarpStringNoise",
|
2013-11-06 15:58:05 +01:00
|
|
|
"stemMultiphonicsBlack",
|
|
|
|
"stemMultiphonicsBlackWhite",
|
|
|
|
"stemMultiphonicsWhite",
|
|
|
|
"stemPendereckiTremolo",
|
|
|
|
"stemRimShot",
|
|
|
|
"stemSprechgesang",
|
|
|
|
"stemSulPonticello",
|
|
|
|
"stemSussurando",
|
|
|
|
"stemSwished",
|
|
|
|
"stemVibratoPulse",
|
|
|
|
"stringsBowBehindBridge",
|
|
|
|
"stringsBowOnBridge",
|
|
|
|
"stringsBowOnTailpiece",
|
|
|
|
"stringsChangeBowDirection",
|
|
|
|
"stringsDownBow",
|
2014-04-18 18:55:33 +02:00
|
|
|
"stringsDownBowTurned",
|
2014-03-15 12:31:29 +01:00
|
|
|
"stringsFouette",
|
2013-11-06 15:58:05 +01:00
|
|
|
"stringsHalfHarmonic",
|
|
|
|
"stringsHarmonic",
|
|
|
|
"stringsJeteAbove",
|
|
|
|
"stringsJeteBelow",
|
|
|
|
"stringsMuteOff",
|
|
|
|
"stringsMuteOn",
|
|
|
|
"stringsOverpressureDownBow",
|
|
|
|
"stringsOverpressureNoDirection",
|
|
|
|
"stringsOverpressurePossibileDownBow",
|
|
|
|
"stringsOverpressurePossibileUpBow",
|
|
|
|
"stringsOverpressureUpBow",
|
|
|
|
"stringsThumbPosition",
|
|
|
|
"stringsUpBow",
|
2014-04-18 18:55:33 +02:00
|
|
|
"stringsUpBowTurned",
|
2013-11-06 15:58:05 +01:00
|
|
|
"stringsVibratoPulse",
|
|
|
|
"systemDivider",
|
|
|
|
"systemDividerExtraLong",
|
|
|
|
"systemDividerLong",
|
2013-11-29 00:37:48 +01:00
|
|
|
"textAugmentationDot",
|
|
|
|
"textBlackNoteFrac16thLongStem",
|
|
|
|
"textBlackNoteFrac16thShortStem",
|
|
|
|
"textBlackNoteFrac32ndLongStem",
|
|
|
|
"textBlackNoteFrac8thLongStem",
|
|
|
|
"textBlackNoteFrac8thShortStem",
|
|
|
|
"textBlackNoteLongStem",
|
|
|
|
"textBlackNoteShortStem",
|
|
|
|
"textCont16thBeamLongStem",
|
|
|
|
"textCont16thBeamShortStem",
|
|
|
|
"textCont32ndBeamLongStem",
|
|
|
|
"textCont8thBeamLongStem",
|
|
|
|
"textCont8thBeamShortStem",
|
|
|
|
"textTie",
|
|
|
|
"textTuplet3LongStem",
|
|
|
|
"textTuplet3ShortStem",
|
|
|
|
"textTupletBracketEndLongStem",
|
|
|
|
"textTupletBracketEndShortStem",
|
|
|
|
"textTupletBracketStartLongStem",
|
|
|
|
"textTupletBracketStartShortStem",
|
2013-11-06 15:58:05 +01:00
|
|
|
"timeSig0",
|
|
|
|
"timeSig1",
|
|
|
|
"timeSig2",
|
|
|
|
"timeSig3",
|
|
|
|
"timeSig4",
|
|
|
|
"timeSig5",
|
|
|
|
"timeSig6",
|
|
|
|
"timeSig7",
|
|
|
|
"timeSig8",
|
|
|
|
"timeSig9",
|
2013-11-29 00:37:48 +01:00
|
|
|
"timeSigCombDenominator",
|
|
|
|
"timeSigCombNumerator",
|
2013-11-06 15:58:05 +01:00
|
|
|
"timeSigComma",
|
|
|
|
"timeSigCommon",
|
|
|
|
"timeSigCutCommon",
|
|
|
|
"timeSigEquals",
|
|
|
|
"timeSigFractionHalf",
|
|
|
|
"timeSigFractionOneThird",
|
|
|
|
"timeSigFractionQuarter",
|
|
|
|
"timeSigFractionThreeQuarters",
|
|
|
|
"timeSigFractionTwoThirds",
|
|
|
|
"timeSigFractionalSlash",
|
|
|
|
"timeSigMinus",
|
|
|
|
"timeSigMultiply",
|
|
|
|
"timeSigOpenPenderecki",
|
|
|
|
"timeSigParensLeft",
|
|
|
|
"timeSigParensLeftSmall",
|
|
|
|
"timeSigParensRight",
|
|
|
|
"timeSigParensRightSmall",
|
|
|
|
"timeSigPlus",
|
|
|
|
"timeSigPlusSmall",
|
|
|
|
"timeSigX",
|
|
|
|
"tremolo1",
|
|
|
|
"tremolo2",
|
|
|
|
"tremolo3",
|
|
|
|
"tremolo4",
|
|
|
|
"tremolo5",
|
2014-03-15 12:31:29 +01:00
|
|
|
"tremoloDivisiDots2",
|
|
|
|
"tremoloDivisiDots3",
|
|
|
|
"tremoloDivisiDots4",
|
|
|
|
"tremoloDivisiDots6",
|
2013-11-06 15:58:05 +01:00
|
|
|
"tremoloFingered1",
|
|
|
|
"tremoloFingered2",
|
|
|
|
"tremoloFingered3",
|
|
|
|
"tremoloFingered4",
|
|
|
|
"tremoloFingered5",
|
|
|
|
"tripleTongueAbove",
|
|
|
|
"tripleTongueBelow",
|
|
|
|
"tuplet0",
|
|
|
|
"tuplet1",
|
|
|
|
"tuplet2",
|
|
|
|
"tuplet3",
|
|
|
|
"tuplet4",
|
|
|
|
"tuplet5",
|
|
|
|
"tuplet6",
|
|
|
|
"tuplet7",
|
|
|
|
"tuplet8",
|
|
|
|
"tuplet9",
|
|
|
|
"tupletColon",
|
|
|
|
"unmeasuredTremolo",
|
|
|
|
"unmeasuredTremoloSimple",
|
|
|
|
"unpitchedPercussionClef1",
|
|
|
|
"unpitchedPercussionClef2",
|
|
|
|
"ventiduesima",
|
|
|
|
"ventiduesimaAlta",
|
|
|
|
"ventiduesimaBassa",
|
|
|
|
"vocalMouthClosed",
|
|
|
|
"vocalMouthOpen",
|
|
|
|
"vocalMouthPursed",
|
|
|
|
"vocalMouthSlightlyOpen",
|
|
|
|
"vocalMouthWideOpen",
|
|
|
|
"vocalSprechgesang",
|
|
|
|
"vocalsSussurando",
|
|
|
|
"wiggleArpeggiatoDown",
|
|
|
|
"wiggleArpeggiatoDownArrow",
|
|
|
|
"wiggleArpeggiatoDownSwash",
|
|
|
|
"wiggleArpeggiatoUp",
|
|
|
|
"wiggleArpeggiatoUpArrow",
|
|
|
|
"wiggleArpeggiatoUpSwash",
|
|
|
|
"wiggleCircular",
|
|
|
|
"wiggleCircularConstant",
|
2014-03-15 12:31:29 +01:00
|
|
|
"wiggleCircularConstantFlipped",
|
|
|
|
"wiggleCircularConstantFlippedLarge",
|
|
|
|
"wiggleCircularConstantLarge",
|
2013-11-06 15:58:05 +01:00
|
|
|
"wiggleCircularEnd",
|
|
|
|
"wiggleCircularLarge",
|
|
|
|
"wiggleCircularLarger",
|
|
|
|
"wiggleCircularLargerStill",
|
|
|
|
"wiggleCircularLargest",
|
|
|
|
"wiggleCircularSmall",
|
|
|
|
"wiggleCircularStart",
|
|
|
|
"wiggleGlissando",
|
|
|
|
"wiggleGlissandoGroup1",
|
|
|
|
"wiggleGlissandoGroup2",
|
|
|
|
"wiggleGlissandoGroup3",
|
2014-03-15 12:31:29 +01:00
|
|
|
"wiggleRandom1",
|
|
|
|
"wiggleRandom2",
|
|
|
|
"wiggleRandom3",
|
|
|
|
"wiggleRandom4",
|
2013-11-06 15:58:05 +01:00
|
|
|
"wiggleSawtooth",
|
2014-04-18 18:55:33 +02:00
|
|
|
"wiggleSawtoothNarrow",
|
|
|
|
"wiggleSawtoothWide",
|
|
|
|
"wiggleSquareWave",
|
|
|
|
"wiggleSquareWaveNarrow",
|
|
|
|
"wiggleSquareWaveWide",
|
2013-11-06 15:58:05 +01:00
|
|
|
"wiggleTrill",
|
|
|
|
"wiggleTrillFast",
|
|
|
|
"wiggleTrillFaster",
|
|
|
|
"wiggleTrillFasterStill",
|
|
|
|
"wiggleTrillFastest",
|
|
|
|
"wiggleTrillSlow",
|
|
|
|
"wiggleTrillSlower",
|
|
|
|
"wiggleTrillSlowerStill",
|
|
|
|
"wiggleTrillSlowest",
|
|
|
|
"wiggleVIbratoLargestSlower",
|
|
|
|
"wiggleVIbratoMediumSlower",
|
|
|
|
"wiggleVibrato",
|
|
|
|
"wiggleVibratoLargeFast",
|
|
|
|
"wiggleVibratoLargeFaster",
|
|
|
|
"wiggleVibratoLargeFasterStill",
|
|
|
|
"wiggleVibratoLargeFastest",
|
|
|
|
"wiggleVibratoLargeSlow",
|
|
|
|
"wiggleVibratoLargeSlower",
|
|
|
|
"wiggleVibratoLargeSlowest",
|
|
|
|
"wiggleVibratoLargestFast",
|
|
|
|
"wiggleVibratoLargestFaster",
|
|
|
|
"wiggleVibratoLargestFasterStill",
|
|
|
|
"wiggleVibratoLargestFastest",
|
|
|
|
"wiggleVibratoLargestSlow",
|
|
|
|
"wiggleVibratoLargestSlowest",
|
|
|
|
"wiggleVibratoMediumFast",
|
|
|
|
"wiggleVibratoMediumFaster",
|
|
|
|
"wiggleVibratoMediumFasterStill",
|
|
|
|
"wiggleVibratoMediumFastest",
|
|
|
|
"wiggleVibratoMediumSlow",
|
|
|
|
"wiggleVibratoMediumSlowest",
|
|
|
|
"wiggleVibratoSmallFast",
|
|
|
|
"wiggleVibratoSmallFaster",
|
|
|
|
"wiggleVibratoSmallFasterStill",
|
|
|
|
"wiggleVibratoSmallFastest",
|
|
|
|
"wiggleVibratoSmallSlow",
|
|
|
|
"wiggleVibratoSmallSlower",
|
|
|
|
"wiggleVibratoSmallSlowest",
|
|
|
|
"wiggleVibratoSmallestFast",
|
|
|
|
"wiggleVibratoSmallestFaster",
|
|
|
|
"wiggleVibratoSmallestFasterStill",
|
|
|
|
"wiggleVibratoSmallestFastest",
|
|
|
|
"wiggleVibratoSmallestSlow",
|
|
|
|
"wiggleVibratoSmallestSlower",
|
|
|
|
"wiggleVibratoSmallestSlowest",
|
|
|
|
"wiggleVibratoStart",
|
|
|
|
"wiggleVibratoWide",
|
|
|
|
"wiggleWavy",
|
2014-04-18 18:55:33 +02:00
|
|
|
"wiggleWavyNarrow",
|
|
|
|
"wiggleWavyWide",
|
2013-11-06 15:58:05 +01:00
|
|
|
"windClosedHole",
|
|
|
|
"windFlatEmbouchure",
|
|
|
|
"windHalfClosedHole1",
|
|
|
|
"windHalfClosedHole2",
|
|
|
|
"windHalfClosedHole3",
|
|
|
|
"windLessRelaxedEmbouchure",
|
|
|
|
"windLessTightEmbouchure",
|
|
|
|
"windMultiphonicsBlackStem",
|
|
|
|
"windMultiphonicsBlackWhiteStem",
|
|
|
|
"windMultiphonicsWhiteStem",
|
|
|
|
"windOpenHole",
|
|
|
|
"windReedPositionIn",
|
|
|
|
"windReedPositionNormal",
|
|
|
|
"windReedPositionOut",
|
|
|
|
"windRelaxedEmbouchure",
|
|
|
|
"windSharpEmbouchure",
|
2013-11-29 00:37:48 +01:00
|
|
|
"windStrongAirPressure",
|
2013-11-06 15:58:05 +01:00
|
|
|
"windThreeQuartersClosedHole",
|
|
|
|
"windTightEmbouchure",
|
|
|
|
"windTrillKey",
|
2013-11-11 15:11:28 +01:00
|
|
|
"windVeryTightEmbouchure",
|
2013-11-29 00:37:48 +01:00
|
|
|
"windWeakAirPressure",
|
|
|
|
|
|
|
|
// EXTENSIONS
|
|
|
|
// SMuFL stylistic alternates which we need to access directly
|
|
|
|
|
|
|
|
"noteheadDoubleWholeAlt", // double whole with double side bars
|
2014-03-15 12:31:29 +01:00
|
|
|
"6stringTabClefSerif", // TAB clef in script style
|
2013-11-29 00:37:48 +01:00
|
|
|
|
|
|
|
// MuseScore local symbols, precomposed symbols to mimic some emmentaler glyphs
|
2013-11-11 15:11:28 +01:00
|
|
|
|
2013-11-12 15:15:48 +01:00
|
|
|
"ornamentPrallMordent",
|
2013-11-11 15:11:28 +01:00
|
|
|
"ornamentUpPrall",
|
|
|
|
"ornamentUpMordent",
|
|
|
|
"ornamentPrallDown",
|
|
|
|
"ornamentDownPrall",
|
|
|
|
"ornamentDownMordent",
|
|
|
|
"ornamentPrallUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"ornamentLinePrall",
|
|
|
|
|
|
|
|
// additional symbols
|
|
|
|
|
|
|
|
"noteLongaUp",
|
|
|
|
"noteLongaDown",
|
|
|
|
"noteLongaSquareUp",
|
|
|
|
"noteLongaSquareDown",
|
2013-11-06 15:58:05 +01:00
|
|
|
};
|
2012-05-26 14:26:10 +02:00
|
|
|
|
2013-11-06 15:58:05 +01:00
|
|
|
QVector<QString> Sym::symUserNames = {
|
2013-11-12 15:15:48 +01:00
|
|
|
"noSym",
|
2014-04-18 18:55:33 +02:00
|
|
|
"4-string tab clef",
|
|
|
|
"6-string tab clef",
|
|
|
|
"11 large diesis down, 3\u00b0 down [46 EDO]",
|
|
|
|
"11 large diesis up, (11L), (sharp less 11M), 3\u00b0 up [46 EDO]",
|
|
|
|
"11 medium diesis down, 1\u00b0[17 31] 2\u00b046 down, 1/4-tone down",
|
|
|
|
"11 medium diesis up, (11M), 1\u00b0[17 31] 2\u00b046 up, 1/4-tone up",
|
|
|
|
"11:19 large diesis down",
|
|
|
|
"11:19 large diesis up, (11:19L, apotome less 11:19M)",
|
|
|
|
"11:19 medium diesis down",
|
|
|
|
"11:19 medium diesis up, (11:19M, 11M plus 19s)",
|
|
|
|
"11:49 comma down",
|
|
|
|
"11:49 comma up, (11:49C, 11M less 49C)",
|
|
|
|
"143 comma down",
|
|
|
|
"143 comma up, (143C, 13L less 11M)",
|
|
|
|
"17 comma down",
|
|
|
|
"17 comma up, (17C)",
|
|
|
|
"17 kleisma down",
|
|
|
|
"17 kleisma up, (17k)",
|
|
|
|
"19 comma down",
|
|
|
|
"19 comma up, (19C)",
|
|
|
|
"19 schisma down",
|
|
|
|
"19 schisma up, (19s)",
|
|
|
|
"23 comma down, 2\u00b0 down [96 EDO], 1/8-tone down",
|
|
|
|
"23 comma up, (23C), 2\u00b0 up [96 EDO], 1/8-tone up",
|
|
|
|
"23 small diesis down",
|
|
|
|
"23 small diesis up, (23S)",
|
|
|
|
"25 small diesis down, 2\u00b0 down [53 EDO]",
|
|
|
|
"25 small diesis up, (25S, ~5:13S, ~37S, 5C\u00a0plus\u00a05C), 2\u00b0 up [53 EDO]",
|
|
|
|
"35 large diesis down, 2\u00b0 down [50 EDO], 5/18-tone down",
|
|
|
|
"35 large diesis up, (35L, ~13L, ~125L, sharp less 35M), 2\u00b050 up",
|
|
|
|
"35 medium diesis down, 1\u00b0[50] 2\u00b0[27] down, 2/9-tone down",
|
|
|
|
"35 medium diesis up, (35M, ~13M, ~125M, 5C\u00a0plus\u00a07C), 2/9-tone up",
|
|
|
|
"49 large diesis down",
|
|
|
|
"49 large diesis up, (49L, ~31L, apotome less 49M)",
|
|
|
|
"49 medium diesis down",
|
|
|
|
"49 medium diesis up, (49M, ~31M, 7C plus 7C)",
|
|
|
|
"49 small diesis down",
|
|
|
|
"49 small diesis up, (49S, ~31S)",
|
|
|
|
"55 comma down, 3\u00b0 down [96 EDO], 3/16-tone down",
|
|
|
|
"55 comma up, (55C, 11M less 5C), 3\u00b0up [96 EDO], 3/16-tone up",
|
|
|
|
"5 comma down, 1\u00b0 down [22 27 29 34 41 46 53 96 EDOs], 1/12-tone down",
|
|
|
|
"5 comma up, (5C), 1\u00b0 up [22 27 29 34 41 46 53 96 EDOs], 1/12-tone up",
|
|
|
|
"5:11 small diesis down",
|
|
|
|
"5:11 small diesis up, (5:11S, ~7:13S, ~11:17S, 5:7k plus 7:11C)",
|
|
|
|
"5:13 large diesis down",
|
|
|
|
"5:13 large diesis up, (5:13L, ~37L, apotome less 5:13M)",
|
|
|
|
"5:13 medium diesis down",
|
|
|
|
"5:13 medium diesis up, (5:13M, ~37M, 5C plus 13C)",
|
|
|
|
"5:19 comma down, 1/20-tone down",
|
|
|
|
"5:19 comma up, (5:19C, 5C plus 19s), 1/20-tone up",
|
|
|
|
"5:23 small diesis down, 2\u00b0 down [60 EDO], 1/5-tone down",
|
|
|
|
"5:23 small diesis up, (5:23S, 5C plus 23C), 2\u00b0 up [60 EDO], 1/5-tone up",
|
|
|
|
"5:49 medium diesis down",
|
|
|
|
"5:49 medium diesis up, (5:49M, half apotome)",
|
|
|
|
"5:7 kleisma down",
|
|
|
|
"5:7 kleisma up, (5:7k, ~11:13k, 7C\u00a0less\u00a05C)",
|
|
|
|
"7 comma down, 1\u00b0 down [43 EDO], 2\u00b0 down [72 EDO], 1/6-tone down",
|
|
|
|
"7 comma up, (7C), 1\u00b0 up [43 EDO], 2\u00b0 up [72 EDO], 1/6-tone up",
|
|
|
|
"7:11 comma down, 1\u00b0 down [60 EDO], 1/10-tone down",
|
|
|
|
"7:11 comma up, (7:11C, ~13:17S, ~29S, 11L less 7C), 1\u00b0 up [60 EDO]",
|
|
|
|
"7:11 kleisma down",
|
|
|
|
"7:11 kleisma up, (7:11k, ~29k)",
|
|
|
|
"7:19 comma down",
|
|
|
|
"7:19 comma up, (7:19C, 7C less 19s)",
|
|
|
|
"Acute, 5 schisma up (5s), 2 cents up",
|
|
|
|
"Double flat, (2 apotomes down)[almost all EDOs], whole-tone down",
|
|
|
|
"Double flat 11:49C-up",
|
|
|
|
"Double flat 143C-up",
|
|
|
|
"Double flat 17C-up",
|
|
|
|
"Double flat 17k-up",
|
|
|
|
"Double flat 19C-up",
|
|
|
|
"Double flat 19s-up",
|
|
|
|
"Double flat 23C-up, 14\u00b0 down [96 EDO], 7/8-tone down",
|
|
|
|
"Double flat 23S-up",
|
|
|
|
"Double flat 25S-up, 8\u00b0down [53 EDO]",
|
|
|
|
"Double flat 49S-up",
|
|
|
|
"Double flat 55C-up, 13\u00b0 down [96 EDO], 13/16-tone down",
|
|
|
|
"Double flat 5C-up, 5\u00b0[22 29] 7\u00b0[34 41] 9\u00b053 down, 11/12 tone down",
|
|
|
|
"Double flat 5:11S-up",
|
|
|
|
"Double flat 5:19C-up, 19/20-tone down",
|
|
|
|
"Double flat 5:23S-up, 8\u00b0 down [60 EDO], 4/5-tone down",
|
|
|
|
"Double flat 5:7k-up",
|
|
|
|
"Double flat 7C-up, 5\u00b0 down [43 EDO], 10\u00b0 down [72 EDO], 5/6-tone down",
|
|
|
|
"Double flat 7:11C-up, 9\u00b0 down [60 EDO], 9/10-tone down",
|
|
|
|
"Double flat 7:11k-up",
|
|
|
|
"Double flat 7:19C-up",
|
|
|
|
"Double sharp, (2 apotomes up)[almost all EDOs], whole-tone up",
|
|
|
|
"Double sharp 11:49C-down",
|
|
|
|
"Double sharp 143C-down",
|
|
|
|
"Double sharp 17C-down",
|
|
|
|
"Double sharp 17k-down",
|
|
|
|
"Double sharp 19C-down",
|
|
|
|
"Double sharp 19s-down",
|
|
|
|
"Double sharp 23C-down, 14\u00b0up [96 EDO], 7/8-tone up",
|
|
|
|
"Double sharp 23S-down",
|
|
|
|
"Double sharp 25S-down, 8\u00b0up [53 EDO]",
|
|
|
|
"Double sharp 49S-down",
|
|
|
|
"Double sharp 55C-down, 13\u00b0 up [96 EDO], 13/16-tone up",
|
|
|
|
"Double sharp 5C-down, 5\u00b0[22 29] 7\u00b0[34 41] 9\u00b053 up, 11/12 tone up",
|
|
|
|
"Double sharp 5:11S-down",
|
|
|
|
"Double sharp 5:19C-down, 19/20-tone up",
|
|
|
|
"Double sharp 5:23S-down, 8\u00b0 up [60 EDO], 4/5-tone up",
|
|
|
|
"Double sharp 5:7k-down",
|
|
|
|
"Double sharp 7C-down, 5\u00b0[43] 10\u00b0[72] up, 5/6-tone up",
|
|
|
|
"Double sharp 7:11C-down, 9\u00b0 up [60 EDO], 9/10-tone up",
|
|
|
|
"Double sharp 7:11k-down",
|
|
|
|
"Double sharp 7:19C-down",
|
|
|
|
"Flat, (apotome down)[almost all EDOs], 1/2-tone down",
|
|
|
|
"Flat 11L-down, 8\u00b0 up [46 EDO]",
|
|
|
|
"Flat 11M-down, 3\u00b0 down [17 31 EDOs], 7\u00b0 down [46 EDO], 3/4-tone down",
|
|
|
|
"Flat 11:19L-down",
|
|
|
|
"Flat 11:19M-down",
|
|
|
|
"Flat 11:49C-down",
|
|
|
|
"Flat 11:49C-up",
|
|
|
|
"Flat 143C-down",
|
|
|
|
"Flat 143C-up",
|
|
|
|
"Flat 17C-down",
|
|
|
|
"Flat 17C-up",
|
|
|
|
"Flat 17k-down",
|
|
|
|
"Flat 17k-up",
|
|
|
|
"Flat 19C-down",
|
|
|
|
"Flat 19C-up",
|
|
|
|
"Flat 19s-down",
|
|
|
|
"Flat 19s-up",
|
|
|
|
"Flat 23C-down, 10\u00b0 down [96 EDO], 5/8-tone down",
|
|
|
|
"Flat 23C-up, 6\u00b0 down [96 EDO], 3/8-tone down",
|
|
|
|
"Flat 23S-down",
|
|
|
|
"Flat 23S-up",
|
|
|
|
"Flat 25S-down, 7\u00b0 down [53 EDO]",
|
|
|
|
"Flat 25S-up, 3\u00b0 down [53 EDO]",
|
|
|
|
"Flat 35L-down, 5\u00b0 down [50 EDO]",
|
|
|
|
"Flat 35M-down, 4\u00b0 down [50 EDO], 6\u00b0 down [27 EDO], 13/18-tone down",
|
|
|
|
"Flat 49L-down",
|
|
|
|
"Flat 49M-down",
|
|
|
|
"Flat 49S-down",
|
|
|
|
"Flat 49S-up",
|
|
|
|
"Flat 55C-down, 11\u00b0 down [96 EDO], 11/16-tone down",
|
|
|
|
"Flat 55C-up, 5\u00b0 down [96 EDO], 5/16-tone down",
|
|
|
|
"Flat 5C-down, 4\u00b0[22 29] 5\u00b0[27 34 41] 6\u00b0[39 46 53] down, 7/12-tone down",
|
|
|
|
"Flat 5C-up, 2\u00b0[22,29] 3\u00b0[34 41] 4\u00b0[46 53 60] down, 5/12-tone down",
|
|
|
|
"Flat 5:11S-down",
|
|
|
|
"Flat 5:11S-up",
|
|
|
|
"Flat 5:13L-down",
|
|
|
|
"Flat 5:13M-down",
|
|
|
|
"Flat 5:19C-down, 11/20-tone down",
|
|
|
|
"Flat 5:19C-up, 9/20-tone down",
|
|
|
|
"Flat 5:23S-down, 7\u00b0 down [60 EDO], 7/10-tone down",
|
|
|
|
"Flat 5:23S-up, 3\u00b0 down [60 EDO], 3/10-tone down",
|
|
|
|
"Flat 5:49M-down",
|
|
|
|
"Flat 5:7k-down",
|
|
|
|
"Flat 5:7k-up",
|
|
|
|
"Flat 7C-down, 4\u00b0 down [43 EDO], 8\u00b0 down [72 EDO], 2/3-tone down",
|
|
|
|
"Flat 7C-up, 2\u00b0 down [43 EDO], 4\u00b0 down [72 EDO], 1/3-tone down",
|
|
|
|
"Flat 7:11C-down, 6\u00b0 down [60 EDO], 3/5- tone down",
|
|
|
|
"Flat 7:11C-up, 4\u00b0 down [60 EDO], 2/5-tone down",
|
|
|
|
"Flat 7:11k-down",
|
|
|
|
"Flat 7:11k-up",
|
|
|
|
"Flat 7:19C-down",
|
|
|
|
"Flat 7:19C-up",
|
|
|
|
"Grave, 5 schisma down, 2 cents down",
|
|
|
|
"Shaft down, (natural for use with only diacritics down)",
|
|
|
|
"Shaft up, (natural for use with only diacritics up)",
|
|
|
|
"Sharp, (apotome up)[almost all EDOs], 1/2-tone up",
|
|
|
|
"Sharp 11L-up, 8\u00b0 up [46 EDO]",
|
|
|
|
"Sharp 11M-up, 3\u00b0 up [17 31 EDOs], 7\u00b0 up [46 EDO], 3/4-tone up",
|
|
|
|
"Sharp 11:19L-up",
|
|
|
|
"Sharp 11:19M-up",
|
|
|
|
"Sharp 11:49C-down",
|
|
|
|
"Sharp 11:49C-up",
|
|
|
|
"Sharp 143C-down",
|
|
|
|
"Sharp 143C-up",
|
|
|
|
"Sharp 17C-down",
|
|
|
|
"Sharp 17C-up",
|
|
|
|
"Sharp 17k-down",
|
|
|
|
"Sharp 17k-up",
|
|
|
|
"Sharp 19C-down",
|
|
|
|
"Sharp 19C-up",
|
|
|
|
"Sharp 19s-down",
|
|
|
|
"Sharp 19s-up",
|
|
|
|
"Sharp 23C-down, 6\u00b0 up [96 EDO], 3/8-tone up",
|
|
|
|
"Sharp 23C-up, 10\u00b0 up [96 EDO], 5/8-tone up",
|
|
|
|
"Sharp 23S-down",
|
|
|
|
"Sharp 23S-up",
|
|
|
|
"Sharp 25S-down, 3\u00b0 up [53 EDO]",
|
|
|
|
"Sharp 25S-up, 7\u00b0 up [53 EDO]",
|
|
|
|
"Sharp 35L-up, 5\u00b0 up [50 EDO]",
|
|
|
|
"Sharp 35M-up, 4\u00b0 up [50 EDO], 6\u00b0 up [27 EDO], 13/18-tone up",
|
|
|
|
"Sharp 49L-up",
|
|
|
|
"Sharp 49M-up",
|
|
|
|
"Sharp 49S-down",
|
|
|
|
"Sharp 49S-up",
|
|
|
|
"Sharp 55C-down, 5\u00b0 up [96 EDO], 5/16-tone up",
|
|
|
|
"Sharp 55C-up, 11\u00b0 up [96 EDO], 11/16-tone up",
|
|
|
|
"Sharp 5C-down, 2\u00b0[22 29] 3\u00b0[34 41] 4\u00b0[46 53 60] up, 5/12-tone up",
|
|
|
|
"Sharp 5C-up, 4\u00b0[22 29] 5\u00b0[27 34 41] 6\u00b0[39 46 53] up, 7/12-tone up",
|
|
|
|
"Sharp 5:11S-down",
|
|
|
|
"Sharp 5:11S-up",
|
|
|
|
"Sharp 5:13L-up",
|
|
|
|
"Sharp 5:13M-up",
|
|
|
|
"Sharp 5:19C-down, 9/20-tone up",
|
|
|
|
"Sharp 5:19C-up, 11/20-tone up",
|
|
|
|
"Sharp 5:23S-down, 3\u00b0 up [60 EDO], 3/10-tone up",
|
|
|
|
"Sharp 5:23S-up, 7\u00b0 up [60 EDO], 7/10-tone up",
|
|
|
|
"Sharp 5:49M-up, (one and a half apotomes)",
|
|
|
|
"Sharp 5:7k-down",
|
|
|
|
"Sharp 5:7k-up",
|
|
|
|
"Sharp 7C-down, 2\u00b0 up [43 EDO], 4\u00b0 up [72 EDO], 1/3-tone up",
|
|
|
|
"Sharp 7C-up, 4\u00b0 up [43 EDO], 8\u00b0 up [72 EDO], 2/3-tone up",
|
|
|
|
"Sharp 7:11C-down, 4\u00b0 up [60 EDO], 2/5-tone up",
|
|
|
|
"Sharp 7:11C-up, 6\u00b0 up [60 EDO], 3/5- tone up",
|
|
|
|
"Sharp 7:11k-down",
|
|
|
|
"Sharp 7:11k-up",
|
|
|
|
"Sharp 7:19C-down",
|
|
|
|
"Sharp 7:19C-up",
|
|
|
|
"Unused",
|
|
|
|
"Unused",
|
|
|
|
"Unused",
|
|
|
|
"Unused",
|
|
|
|
"Combining accordion coupler dot",
|
|
|
|
"Combining left hand, 2 ranks, empty",
|
|
|
|
"Combining left hand, 3 ranks, empty (square)",
|
|
|
|
"Combining right hand, 3 ranks, empty",
|
|
|
|
"Combining right hand, 4 ranks, empty",
|
|
|
|
"Diatonic accordion clef",
|
|
|
|
"Left hand, 2 ranks, 16' stop (round)",
|
|
|
|
"Left hand, 2 ranks, 8' stop + 16' stop (round)",
|
|
|
|
"Left hand, 2 ranks, 8' stop (round)",
|
|
|
|
"Left hand, 2 ranks, full master (round)",
|
|
|
|
"Left hand, 2 ranks, master + 16' stop (round)",
|
|
|
|
"Left hand, 2 ranks, master (round)",
|
|
|
|
"Left hand, 3 ranks, 2' stop + 8' stop (square)",
|
|
|
|
"Left hand, 3 ranks, 2' stop (square)",
|
|
|
|
"Left hand, 3 ranks, 8' stop (square)",
|
|
|
|
"Left hand, 3 ranks, double 8' stop (square)",
|
|
|
|
"Left hand, 3 ranks, 2' stop + double 8' stop (tutti) (square)",
|
|
|
|
"Pull",
|
|
|
|
"Push",
|
|
|
|
"Right hand, 3 ranks, 8' stop + upper tremolo 8' stop + 16' stop (accordion)",
|
|
|
|
"Right hand, 3 ranks, lower tremolo 8' stop + 8' stop + upper tremolo 8' stop (authentic musette)",
|
|
|
|
"Right hand, 3 ranks, 8' stop + 16' stop (bandone\u00f3n)",
|
|
|
|
"Right hand, 3 ranks, 16' stop (bassoon)",
|
|
|
|
"Right hand, 3 ranks, 8' stop (clarinet)",
|
|
|
|
"Right hand, 3 ranks, lower tremolo 8' stop + 8' stop + upper tremolo 8' stop + 16' stop",
|
|
|
|
"Right hand, 3 ranks, 4' stop + lower tremolo 8' stop + 8' stop + upper tremolo 8' stop",
|
|
|
|
"Right hand, 3 ranks, 4' stop + lower tremolo 8' stop + 8' stop + upper tremolo 8' stop + 16' stop",
|
|
|
|
"Right hand, 3 ranks, 4' stop + 8' stop + 16' stop (harmonium)",
|
|
|
|
"Right hand, 3 ranks, 4' stop + 8' stop + upper tremolo 8' stop (imitation musette)",
|
|
|
|
"Right hand, 3 ranks, lower tremolo 8' stop",
|
|
|
|
"Right hand, 3 ranks, 4' stop + lower tremolo 8' stop + upper tremolo 8' stop + 16' stop (master)",
|
|
|
|
"Right hand, 3 ranks, 4' stop + 8' stop (oboe)",
|
|
|
|
"Right hand, 3 ranks, 4' stop + 16' stop (organ)",
|
|
|
|
"Right hand, 3 ranks, 4' stop (piccolo)",
|
|
|
|
"Right hand, 3 ranks, lower tremolo 8' stop + upper tremolo 8' stop + 16' stop",
|
|
|
|
"Right hand, 3 ranks, 4' stop + lower tremolo 8' stop + upper tremolo 8' stop",
|
|
|
|
"Right hand, 3 ranks, lower tremolo 8' stop + upper tremolo 8' stop",
|
|
|
|
"Right hand, 3 ranks, upper tremolo 8' stop",
|
|
|
|
"Right hand, 3 ranks, 8' stop + upper tremolo 8' stop (violin)",
|
|
|
|
"Right hand, 4 ranks, alto",
|
|
|
|
"Right hand, 4 ranks, bass/alto",
|
|
|
|
"Right hand, 4 ranks, master",
|
|
|
|
"Right hand, 4 ranks, soft bass",
|
|
|
|
"Right hand, 4 ranks, soft tenor",
|
|
|
|
"Right hand, 4 ranks, soprano",
|
|
|
|
"Right hand, 4 ranks, tenor",
|
|
|
|
"Ricochet (2 tones)",
|
|
|
|
"Ricochet (3 tones)",
|
|
|
|
"Ricochet (4 tones)",
|
|
|
|
"Ricochet (5 tones)",
|
|
|
|
"Ricochet (6 tones)",
|
|
|
|
"Combining ricochet for stem (2 tones)",
|
|
|
|
"Combining ricochet for stem (3 tones)",
|
|
|
|
"Combining ricochet for stem (4 tones)",
|
|
|
|
"Combining ricochet for stem (5 tones)",
|
|
|
|
"Combining ricochet for stem (6 tones)",
|
|
|
|
"1-comma flat",
|
|
|
|
"1-comma sharp",
|
|
|
|
"2-comma flat",
|
|
|
|
"2-comma sharp",
|
|
|
|
"3-comma flat",
|
|
|
|
"3-comma sharp",
|
|
|
|
"4-comma flat",
|
|
|
|
"5-comma sharp",
|
|
|
|
"Arrow down (lower by one quarter-tone)",
|
|
|
|
"Arrow up (raise by one quarter-tone)",
|
|
|
|
"Bakiye (flat)",
|
|
|
|
"Bakiye (sharp)",
|
|
|
|
"B\u00fcy\u00fck m\u00fccenneb (flat)",
|
|
|
|
"B\u00fcy\u00fck m\u00fccenneb (sharp)",
|
|
|
|
"Combining close curly brace",
|
|
|
|
"Combining lower by one 17-limit schisma",
|
|
|
|
"Combining lower by one 19-limit schisma",
|
|
|
|
"Combining lower by one 23-limit comma or 29-limit comma",
|
|
|
|
"Combining lower by one 31-limit schisma",
|
|
|
|
"Combining open curly brace",
|
|
|
|
"Combining raise by one 17-limit schisma",
|
|
|
|
"Combining raise by one 19-limit schisma",
|
|
|
|
"Combining raise by one 23-limit comma or 29-limit comma",
|
|
|
|
"Combining raise by one 31-limit schisma",
|
|
|
|
"Syntonic/Didymus comma (80:81) down (Bosanquet)",
|
|
|
|
"Syntonic/Didymus comma (80:81) up (Bosanquet)",
|
|
|
|
"Double flat",
|
|
|
|
"Double flat equal tempered semitone",
|
|
|
|
"Double flat lowered by one syntonic comma",
|
|
|
|
"Double flat raised by one syntonic comma",
|
|
|
|
"Reversed double flat",
|
|
|
|
"Double flat lowered by three syntonic commas",
|
|
|
|
"Double flat raised by three syntonic commas",
|
|
|
|
"Turned double flat",
|
|
|
|
"Double flat lowered by two syntonic commas",
|
|
|
|
"Double flat raised by two syntonic commas",
|
|
|
|
"Double sharp",
|
|
|
|
"Double sharp equal tempered semitone",
|
|
|
|
"Double sharp lowered by one syntonic comma",
|
|
|
|
"Double sharp raised by one syntonic comma",
|
|
|
|
"Double sharp lowered by three syntonic commas",
|
|
|
|
"Double sharp raised by three syntonic commas",
|
|
|
|
"Double sharp lowered by two syntonic commas",
|
|
|
|
"Double sharp raised by two syntonic commas",
|
|
|
|
"Filled reversed flat and flat",
|
|
|
|
"Filled reversed flat and flat with arrow down",
|
|
|
|
"Filled reversed flat and flat with arrow up",
|
|
|
|
"Filled reversed flat with arrow down",
|
|
|
|
"Filled reversed flat with arrow up",
|
|
|
|
"Five-quarter-tones flat",
|
|
|
|
"Five-quarter-tones sharp",
|
|
|
|
"Flat",
|
|
|
|
"Flat equal tempered semitone",
|
|
|
|
"Flat lowered by one syntonic comma",
|
|
|
|
"Flat raised by one syntonic comma",
|
|
|
|
"Flat lowered by three syntonic commas",
|
|
|
|
"Flat raised by three syntonic commas",
|
|
|
|
"Turned flat",
|
|
|
|
"Flat lowered by two syntonic commas",
|
|
|
|
"Flat raised by two syntonic commas",
|
|
|
|
"Half sharp with arrow down",
|
|
|
|
"Half sharp with arrow up",
|
|
|
|
"Thirteen (raise by 65:64~)",
|
|
|
|
"Inverted 13 (lower by 65:64)",
|
|
|
|
"Down arrow (lower by 33:32)",
|
|
|
|
"Inverted seven (raise by 36:35)",
|
|
|
|
"Minus (lower by 81:80)",
|
|
|
|
"Plus (raise by 81:80)",
|
|
|
|
"Seven (lower by 36:35)",
|
|
|
|
"Up arrow (raise by 33:32)",
|
|
|
|
"Koma (flat)",
|
|
|
|
"Koma (sharp)",
|
|
|
|
"Koron (quarter tone flat)",
|
|
|
|
"K\u00fc\u00e7\u00fck m\u00fccenneb (flat)",
|
|
|
|
"K\u00fc\u00e7\u00fck m\u00fccenneb (sharp)",
|
|
|
|
"Large double sharp",
|
|
|
|
"Lower by one septimal comma",
|
|
|
|
"Lower by one tridecimal quartertone",
|
|
|
|
"Lower by one undecimal quartertone",
|
|
|
|
"Lower by two septimal commas",
|
|
|
|
"Narrow reversed flat(quarter-tone flat)",
|
|
|
|
"Narrow reversed flat and flat(three-quarter-tones flat)",
|
|
|
|
"Natural",
|
|
|
|
"Natural equal tempered semitone",
|
|
|
|
"Natural flat",
|
|
|
|
"Natural lowered by one syntonic comma",
|
|
|
|
"Natural raised by one syntonic comma",
|
|
|
|
"Reversed natural",
|
|
|
|
"Natural sharp",
|
|
|
|
"Natural lowered by three syntonic commas",
|
|
|
|
"Natural raised by three syntonic commas",
|
|
|
|
"Natural lowered by two syntonic commas",
|
|
|
|
"Natural raised by two syntonic commas",
|
|
|
|
"One and a half sharps with arrow down",
|
|
|
|
"One and a half sharps with arrow up",
|
|
|
|
"One-third-tone flat (Ferneyhough)",
|
|
|
|
"One-third-tone sharp (Ferneyhough)",
|
|
|
|
"Accidental parenthesis, left",
|
|
|
|
"Accidental parenthesis, right",
|
|
|
|
"Quarter-tone flat",
|
|
|
|
"Quarter-tone flat",
|
|
|
|
"Filled reversed flat (quarter-tone flat)",
|
|
|
|
"Quarter-tone flat",
|
|
|
|
"Quarter tone flat (Penderecki)",
|
|
|
|
"Reversed flat (quarter-tone flat) (Stein)",
|
|
|
|
"Quarter-tone flat (van Blankenburg)",
|
|
|
|
"Quarter-tone sharp",
|
|
|
|
"Quarter-tone flat",
|
|
|
|
"Quarter tone sharp (Busotti)",
|
|
|
|
"Quarter-tone sharp",
|
|
|
|
"Half sharp (quarter-tone sharp) (Stein)",
|
|
|
|
"Quarter tone sharp with wiggly tail",
|
|
|
|
"Raise by one septimal comma",
|
|
|
|
"Raise by one tridecimal quartertone",
|
|
|
|
"Raise by one undecimal quartertone",
|
|
|
|
"Raise by two septimal commas",
|
|
|
|
"Reversed flat and flat with arrow down",
|
|
|
|
"Reversed flat and flat with arrow up",
|
|
|
|
"Reversed flat with arrow down",
|
|
|
|
"Reversed flat with arrow up",
|
|
|
|
"Sharp",
|
|
|
|
"Sharp equal tempered semitone",
|
|
|
|
"Sharp lowered by one syntonic comma",
|
|
|
|
"Sharp raised by one syntonic comma",
|
|
|
|
"One or three quarter tones sharp",
|
|
|
|
"Reversed sharp",
|
|
|
|
"Sharp sharp",
|
|
|
|
"Sharp lowered by three syntonic commas",
|
|
|
|
"Sharp raised by three syntonic commas",
|
|
|
|
"Sharp lowered by two syntonic commas",
|
|
|
|
"Sharp raised by two syntonic commas",
|
|
|
|
"1/12 tone low",
|
|
|
|
"1/12 tone high",
|
|
|
|
"1/4 tone low",
|
|
|
|
"1/4 tone high",
|
|
|
|
"1/6 tone low",
|
|
|
|
"1/6 tone high",
|
|
|
|
"Sori (quarter tone sharp)",
|
|
|
|
"Byzantine-style slashed flat (Tavener)",
|
|
|
|
"Byzantine-style slashed sharp (Tavener)",
|
|
|
|
"Three-quarter-tones flat",
|
|
|
|
"Three-quarter-tones flat",
|
|
|
|
"Three-quarter-tones flat (Couper)",
|
|
|
|
"Three-quarter-tones flat (Grisey)",
|
|
|
|
"Three-quarter-tones flat (Tartini)",
|
|
|
|
"Reversed flat and flat (three-quarter-tones flat) (Zimmermann)",
|
|
|
|
"Three-quarter-tones sharp",
|
|
|
|
"Three-quarter-tones sharp",
|
|
|
|
"Three quarter tones sharp (Busotti)",
|
|
|
|
"One and a half sharps (three-quarter-tones sharp) (Stein)",
|
|
|
|
"Triple flat",
|
|
|
|
"Triple sharp",
|
|
|
|
"Two-third-tones flat (Ferneyhough)",
|
|
|
|
"Two-third-tones sharp (Ferneyhough)",
|
|
|
|
"Wilson minus (5 comma down)",
|
|
|
|
"Wilson plus (5 comma up)",
|
|
|
|
"5/6 tone flat",
|
|
|
|
"5/6 tone sharp",
|
|
|
|
"11/12 tone flat",
|
|
|
|
"11/12 tone sharp",
|
|
|
|
"1/12 tone flat",
|
|
|
|
"1/12 tone sharp",
|
|
|
|
"1/6 tone flat",
|
|
|
|
"1/6 tone sharp",
|
|
|
|
"1/4 tone flat",
|
|
|
|
"1/4 tone sharp",
|
|
|
|
"1/3 tone flat",
|
|
|
|
"1/3 tone sharp",
|
|
|
|
"5/12 tone flat",
|
|
|
|
"5/12 tone sharp",
|
|
|
|
"1/2 tone flat",
|
|
|
|
"1/2 tone sharp",
|
|
|
|
"7/12 tone flat",
|
|
|
|
"7/12 tone sharp",
|
|
|
|
"2/3 tone flat",
|
|
|
|
"2/3 tone sharp",
|
|
|
|
"3/4 tone flat",
|
|
|
|
"3/4 tone sharp",
|
|
|
|
"One-third-tone sharp (Xenakis)",
|
|
|
|
"Two-third-tones sharp (Xenakis)",
|
|
|
|
"End of stimme",
|
|
|
|
"Hauptstimme",
|
|
|
|
"Inversion 1",
|
|
|
|
"Nebenstimme",
|
|
|
|
"Start of stimme",
|
|
|
|
"Theme",
|
|
|
|
"Theme 1",
|
|
|
|
"Inversion of theme",
|
|
|
|
"Retrograde of theme",
|
|
|
|
"Retrograde inversion of theme",
|
|
|
|
"Arpeggiato down",
|
|
|
|
"Arpeggiato up",
|
|
|
|
"Black arrow down (S)",
|
|
|
|
"Black arrow down-left (SW)",
|
|
|
|
"Black arrow down-right (SE)",
|
|
|
|
"Black arrow left (W)",
|
|
|
|
"Black arrow right (E)",
|
|
|
|
"Black arrow up (N)",
|
|
|
|
"Black arrow up-left (NW)",
|
|
|
|
"Black arrow up-right (NE)",
|
|
|
|
"Open arrow down (S)",
|
|
|
|
"Open arrow down-left (SW)",
|
|
|
|
"Open arrow down-right (SE)",
|
|
|
|
"Open arrow left (W)",
|
|
|
|
"Open arrow right (E)",
|
|
|
|
"Open arrow up (N)",
|
|
|
|
"Open arrow up-left (NW)",
|
|
|
|
"Open arrow up-right (NE)",
|
|
|
|
"White arrow down (S)",
|
|
|
|
"White arrow down-left (SW)",
|
|
|
|
"White arrow down-right (SE)",
|
|
|
|
"White arrow left (W)",
|
|
|
|
"White arrow right (E)",
|
|
|
|
"White arrow up (N)",
|
|
|
|
"White arrow up-left (NW)",
|
|
|
|
"White arrow up-right (NE)",
|
|
|
|
"Black arrowhead down (S)",
|
|
|
|
"Black arrowhead down-left (SW)",
|
|
|
|
"Black arrowhead down-right (SE)",
|
|
|
|
"Black arrowhead left (W)",
|
|
|
|
"Black arrowhead right (E)",
|
|
|
|
"Black arrowhead up (N)",
|
|
|
|
"Black arrowhead up-left (NW)",
|
|
|
|
"Black arrowhead up-right (NE)",
|
|
|
|
"Open arrowhead down (S)",
|
|
|
|
"Open arrowhead down-left (SW)",
|
|
|
|
"Open arrowhead down-right (SE)",
|
|
|
|
"Open arrowhead left (W)",
|
|
|
|
"Open arrowhead right (E)",
|
|
|
|
"Open arrowhead up (N)",
|
|
|
|
"Open arrowhead up-left (NW)",
|
|
|
|
"Open arrowhead up-right (NE)",
|
|
|
|
"White arrowhead down (S)",
|
|
|
|
"White arrowhead down-left (SW)",
|
|
|
|
"White arrowhead down-right (SE)",
|
|
|
|
"White arrowhead left (W)",
|
|
|
|
"White arrowhead right (E)",
|
|
|
|
"White arrowhead up (N)",
|
|
|
|
"White arrowhead up-left (NW)",
|
|
|
|
"White arrowhead up-right (NE)",
|
|
|
|
"Accent above",
|
|
|
|
"Accent below",
|
|
|
|
"Accent-staccato above",
|
|
|
|
"Accent-staccato below",
|
|
|
|
"Laissez vibrer (l.v.) above",
|
|
|
|
"Laissez vibrer (l.v.) below",
|
|
|
|
"Marcato above",
|
|
|
|
"Marcato below",
|
|
|
|
"Marcato-staccato above",
|
|
|
|
"Marcato-staccato below",
|
|
|
|
"Staccatissimo above",
|
|
|
|
"Staccatissimo below",
|
|
|
|
"Staccatissimo stroke above",
|
|
|
|
"Staccatissimo stroke below",
|
|
|
|
"Staccatissimo wedge above",
|
|
|
|
"Staccatissimo wedge below",
|
|
|
|
"Staccato above",
|
|
|
|
"Staccato below",
|
|
|
|
"Stress above",
|
|
|
|
"Stress below",
|
|
|
|
"Tenuto above",
|
|
|
|
"Tenuto-accent above",
|
|
|
|
"Tenuto-accent below",
|
|
|
|
"Tenuto below",
|
|
|
|
"Lour\u00e9 (tenuto-staccato) above",
|
|
|
|
"Lour\u00e9 (tenuto-staccato) below",
|
|
|
|
"Unstress above",
|
|
|
|
"Unstress below",
|
|
|
|
"Augmentation dot",
|
|
|
|
"Dashed barline",
|
|
|
|
"Dotted barline",
|
|
|
|
"Double barline",
|
|
|
|
"Final barline",
|
|
|
|
"Heavy barline",
|
|
|
|
"Heavy double barline",
|
|
|
|
"Reverse final barline",
|
|
|
|
"Short barline",
|
|
|
|
"Single barline",
|
|
|
|
"Tick barline",
|
|
|
|
"Accel./rit. beam 1 (widest)",
|
|
|
|
"Accel./rit. beam 10",
|
|
|
|
"Accel./rit. beam 11",
|
|
|
|
"Accel./rit. beam 12",
|
|
|
|
"Accel./rit. beam 13",
|
|
|
|
"Accel./rit. beam 14",
|
|
|
|
"Accel./rit. beam 15 (narrowest)",
|
|
|
|
"Accel./rit. beam 2",
|
|
|
|
"Accel./rit. beam 3",
|
|
|
|
"Accel./rit. beam 4",
|
|
|
|
"Accel./rit. beam 5",
|
|
|
|
"Accel./rit. beam 6",
|
|
|
|
"Accel./rit. beam 7",
|
|
|
|
"Accel./rit. beam 8",
|
|
|
|
"Accel./rit. beam 9",
|
|
|
|
"Accel./rit. beam terminating line",
|
|
|
|
"Brace",
|
|
|
|
"Bracket",
|
|
|
|
"Bracket bottom",
|
|
|
|
"Bracket top",
|
|
|
|
"Bend",
|
|
|
|
"Doit, long",
|
|
|
|
"Doit, medium",
|
|
|
|
"Doit, short",
|
|
|
|
"Lip fall, long",
|
|
|
|
"Lip fall, medium",
|
|
|
|
"Lip fall, short",
|
|
|
|
"Rough fall, long",
|
|
|
|
"Rough fall, medium",
|
|
|
|
"Rough fall, short",
|
|
|
|
"Smooth fall, long",
|
|
|
|
"Smooth fall, medium",
|
|
|
|
"Smooth fall, short",
|
|
|
|
"Flip",
|
|
|
|
"Harmon mute, closed",
|
|
|
|
"Harmon mute, stem-cup half-closed, left",
|
|
|
|
"Harmon mute, stem-cup half-closed, right",
|
|
|
|
"Harmon mute, stem-cup open",
|
|
|
|
"Jazz turn",
|
|
|
|
"Lift, long",
|
|
|
|
"Lift, medium",
|
|
|
|
"Lift, short",
|
|
|
|
"Muted (closed)",
|
|
|
|
"Half-muted (half-closed)",
|
|
|
|
"Open",
|
|
|
|
"Plop",
|
|
|
|
"Scoop",
|
|
|
|
"Smear",
|
|
|
|
"Breath mark (comma)",
|
|
|
|
"Breath mark (Salzedo)",
|
|
|
|
"Breath mark (tick-like)",
|
|
|
|
"Breath mark (upbow-like)",
|
|
|
|
"Bridge clef",
|
|
|
|
"Buzz roll",
|
|
|
|
"C clef",
|
|
|
|
"C clef ottava bassa",
|
|
|
|
"C clef, arrow down",
|
|
|
|
"C clef, arrow up",
|
|
|
|
"C clef change",
|
|
|
|
"Combining C clef",
|
|
|
|
"Reversed C clef",
|
|
|
|
"C clef (19th century)",
|
|
|
|
"Triangular C clef",
|
|
|
|
"C clef to F clef change",
|
|
|
|
"Caesura",
|
|
|
|
"Curved caesura",
|
|
|
|
"Short caesura",
|
|
|
|
"Thick caesura",
|
|
|
|
"Accentus above",
|
|
|
|
"Accentus below",
|
|
|
|
"Punctum auctum, ascending",
|
|
|
|
"Punctum auctum, descending",
|
|
|
|
"Augmentum (mora)",
|
|
|
|
"Caesura",
|
|
|
|
"Plainchant C clef",
|
|
|
|
"Circulus above",
|
|
|
|
"Circulus below",
|
|
|
|
"Connecting line, ascending 2nd",
|
|
|
|
"Connecting line, ascending 3rd",
|
|
|
|
"Connecting line, ascending 4th",
|
|
|
|
"Connecting line, ascending 5th",
|
|
|
|
"Connecting line, ascending 6th",
|
|
|
|
"Plainchant custos, stem down, high position",
|
|
|
|
"Plainchant custos, stem down, highest position",
|
|
|
|
"Plainchant custos, stem down, middle position",
|
|
|
|
"Plainchant custos, stem up, low position",
|
|
|
|
"Plainchant custos, stem up, lowest position",
|
|
|
|
"Plainchant custos, stem up, middle position",
|
|
|
|
"Punctum deminutum, lower",
|
|
|
|
"Punctum deminutum, upper",
|
|
|
|
"Divisio finalis",
|
|
|
|
"Divisio maior",
|
|
|
|
"Divisio maxima",
|
|
|
|
"Divisio minima",
|
|
|
|
"Entry line, ascending 2nd",
|
|
|
|
"Entry line, ascending 3rd",
|
|
|
|
"Entry line, ascending 4th",
|
|
|
|
"Entry line, ascending 5th",
|
|
|
|
"Entry line, ascending 6th",
|
|
|
|
"Episema",
|
|
|
|
"Plainchant F clef",
|
|
|
|
"Ictus above",
|
|
|
|
"Ictus below",
|
|
|
|
"Ligated stroke, descending 2nd",
|
|
|
|
"Ligated stroke, descending 3rd",
|
|
|
|
"Ligated stroke, descending 4th",
|
|
|
|
"Ligated stroke, descending 5th",
|
|
|
|
"Oriscus ascending",
|
|
|
|
"Oriscus descending",
|
|
|
|
"Oriscus liquescens",
|
|
|
|
"Podatus, lower",
|
|
|
|
"Podatus, upper",
|
|
|
|
"Punctum",
|
|
|
|
"Punctum cavum",
|
|
|
|
"Punctum inclinatum",
|
|
|
|
"Punctum inclinatum auctum",
|
|
|
|
"Punctum inclinatum deminutum",
|
|
|
|
"Punctum linea",
|
|
|
|
"Punctum linea cavum",
|
|
|
|
"Punctum virga",
|
|
|
|
"Punctum virga, reversed",
|
|
|
|
"Quilisma",
|
|
|
|
"Semicirculus above",
|
|
|
|
"Semicirculus below",
|
|
|
|
"Plainchant staff",
|
|
|
|
"Plainchant staff (narrow)",
|
|
|
|
"Plainchant staff (wide)",
|
|
|
|
"Strophicus",
|
|
|
|
"Strophicus auctus",
|
|
|
|
"Strophicus liquescens, 2nd",
|
|
|
|
"Strophicus liquescens, 3rd",
|
|
|
|
"Strophicus liquescens, 4th",
|
|
|
|
"Strophicus liquescens, 5th",
|
|
|
|
"Virgula",
|
|
|
|
"Combining clef change",
|
|
|
|
"Coda",
|
|
|
|
"Square coda",
|
|
|
|
"Beat 2, compound time",
|
|
|
|
"Beat 2, simple time",
|
|
|
|
"Beat 3, compound time",
|
|
|
|
"Beat 3, simple time",
|
|
|
|
"Beat 4, compound time",
|
|
|
|
"Beat 4, simple time",
|
|
|
|
"Left-hand beat or cue",
|
|
|
|
"Right-hand beat or cue",
|
|
|
|
"Strong beat or cue",
|
|
|
|
"Weak beat or cue",
|
|
|
|
"Begin beam",
|
|
|
|
"Begin phrase",
|
|
|
|
"Begin slur",
|
|
|
|
"Begin tie",
|
|
|
|
"End beam",
|
|
|
|
"End phrase",
|
|
|
|
"End slur",
|
|
|
|
"End tie",
|
|
|
|
"Augmented",
|
|
|
|
"Double-height left bracket",
|
|
|
|
"Double-height right bracket",
|
|
|
|
"Diminished",
|
|
|
|
"Half-diminished",
|
|
|
|
"Major seventh",
|
|
|
|
"Minor",
|
|
|
|
"Double-height left parenthesis",
|
|
|
|
"Double-height right parenthesis",
|
|
|
|
"Curlew (Britten)",
|
|
|
|
"Da capo",
|
|
|
|
"Dal segno",
|
|
|
|
"Daseian excellentes 1",
|
|
|
|
"Daseian excellentes 2",
|
|
|
|
"Daseian excellentes 3",
|
|
|
|
"Daseian excellentes 4",
|
|
|
|
"Daseian finales 1",
|
|
|
|
"Daseian finales 2",
|
|
|
|
"Daseian finales 3",
|
|
|
|
"Daseian finales 4",
|
|
|
|
"Daseian graves 1",
|
|
|
|
"Daseian graves 2",
|
|
|
|
"Daseian graves 3",
|
|
|
|
"Daseian graves 4",
|
|
|
|
"Daseian residua 1",
|
|
|
|
"Daseian residua 2",
|
|
|
|
"Daseian superiores 1",
|
|
|
|
"Daseian superiores 2",
|
|
|
|
"Daseian superiores 3",
|
|
|
|
"Daseian superiores 4",
|
|
|
|
"Double-tongue above",
|
|
|
|
"Double-tongue below",
|
|
|
|
"Crescendo",
|
|
|
|
"Diminuendo",
|
|
|
|
"ff",
|
|
|
|
"fff",
|
|
|
|
"ffff",
|
|
|
|
"fffff",
|
|
|
|
"ffffff",
|
|
|
|
"Forte",
|
|
|
|
"Forte-piano",
|
|
|
|
"Forzando",
|
|
|
|
"mf",
|
|
|
|
"mp",
|
|
|
|
"Messa di voce",
|
|
|
|
"Mezzo",
|
|
|
|
"Niente",
|
|
|
|
"Niente (for hairpins)",
|
|
|
|
"pf",
|
|
|
|
"pp",
|
|
|
|
"ppp",
|
|
|
|
"pppp",
|
|
|
|
"ppppp",
|
|
|
|
"pppppp",
|
|
|
|
"Piano",
|
|
|
|
"Rinforzando",
|
|
|
|
"Rinforzando 1",
|
|
|
|
"Rinforzando 2",
|
|
|
|
"Sforzando",
|
|
|
|
"Sforzando 1",
|
|
|
|
"Sforzando-pianissimo",
|
|
|
|
"Sforzando-piano",
|
|
|
|
"Sforzato",
|
|
|
|
"Sforzatissimo",
|
|
|
|
"Sforzato-piano",
|
|
|
|
"Z",
|
|
|
|
"Eight channels (7.1 surround)",
|
|
|
|
"Five channels",
|
|
|
|
"Four channels",
|
|
|
|
"One channel (mono)",
|
|
|
|
"Seven channels",
|
|
|
|
"Six channels (5.1 surround)",
|
|
|
|
"Three channels (frontal)",
|
|
|
|
"Three channels (surround)",
|
|
|
|
"Two channels (stereo)",
|
|
|
|
"Audio in",
|
|
|
|
"Mono audio setup",
|
|
|
|
"Audio out",
|
|
|
|
"Stereo audio setup",
|
|
|
|
"Camera",
|
|
|
|
"Data in",
|
|
|
|
"Data out",
|
|
|
|
"Disc",
|
|
|
|
"Download",
|
|
|
|
"Eject",
|
|
|
|
"Fast-forward",
|
|
|
|
"Headphones",
|
|
|
|
"Headset",
|
|
|
|
"Line in",
|
|
|
|
"Line out",
|
|
|
|
"Loop",
|
|
|
|
"Loudspeaker",
|
|
|
|
"MIDI controller 0%",
|
|
|
|
"MIDI controller 100%",
|
|
|
|
"MIDI controller 20%",
|
|
|
|
"MIDI controller 40%",
|
|
|
|
"MIDI controller 60%",
|
|
|
|
"MIDI controller 80%",
|
|
|
|
"MIDI in",
|
|
|
|
"MIDI out",
|
|
|
|
"Microphone",
|
|
|
|
"Mute microphone",
|
|
|
|
"Unmute microphone",
|
|
|
|
"Mixing console",
|
|
|
|
"Monitor",
|
|
|
|
"Mute",
|
|
|
|
"Pause",
|
|
|
|
"Play",
|
|
|
|
"Power on/off",
|
|
|
|
"Projector",
|
|
|
|
"Replay",
|
|
|
|
"Rewind",
|
|
|
|
"Shuffle",
|
|
|
|
"Skip backwards",
|
|
|
|
"Skip forwards",
|
|
|
|
"Stop",
|
|
|
|
"Tape",
|
|
|
|
"USB connection",
|
|
|
|
"Unmute",
|
|
|
|
"Upload",
|
|
|
|
"Video camera",
|
|
|
|
"Video in",
|
|
|
|
"Video out",
|
|
|
|
"Combining volume fader",
|
|
|
|
"Combining volume fader thumb",
|
|
|
|
"Volume level 0%",
|
|
|
|
"Volume level 100%",
|
|
|
|
"Volume level 20%",
|
|
|
|
"Volume level 40%",
|
|
|
|
"Volume level 60%",
|
|
|
|
"Volume level 80%",
|
|
|
|
"F clef",
|
|
|
|
"F clef quindicesima alta",
|
|
|
|
"F clef quindicesima bassa",
|
|
|
|
"F clef ottava alta",
|
|
|
|
"F clef ottava bassa",
|
|
|
|
"F clef, arrow down",
|
|
|
|
"F clef, arrow up",
|
|
|
|
"F clef change",
|
|
|
|
"Reversed F clef",
|
|
|
|
"Triangular F clef",
|
|
|
|
"F clef to C clef change",
|
|
|
|
"Turned F clef",
|
|
|
|
"Fermata above",
|
|
|
|
"Fermata below",
|
|
|
|
"Long fermata above",
|
|
|
|
"Long fermata below",
|
|
|
|
"Long fermata (Henze) above",
|
|
|
|
"Long fermata (Henze) below",
|
|
|
|
"Short fermata above",
|
|
|
|
"Short fermata below",
|
|
|
|
"Short fermata (Henze) above",
|
|
|
|
"Short fermata (Henze) below",
|
|
|
|
"Very long fermata above",
|
|
|
|
"Very long fermata below",
|
|
|
|
"Very short fermata above",
|
|
|
|
"Very short fermata below",
|
|
|
|
"Figured bass 0",
|
|
|
|
"Figured bass 1",
|
|
|
|
"Figured bass 2",
|
|
|
|
"Figured bass 2 raised by half-step",
|
|
|
|
"Figured bass 3",
|
|
|
|
"Figured bass 4",
|
|
|
|
"Figured bass 4 raised by half-step",
|
|
|
|
"Figured bass 5",
|
|
|
|
"Figured bass 5 raised by half-step",
|
|
|
|
"Figured bass 5 raised by half-step 2",
|
|
|
|
"Figured bass diminished 5",
|
|
|
|
"Figured bass 6",
|
|
|
|
"Figured bass 6 raised by half-step",
|
|
|
|
"Figured bass 7",
|
|
|
|
"Figured bass 7 raised by half-step",
|
|
|
|
"Figured bass 8",
|
|
|
|
"Figured bass 9",
|
|
|
|
"Figured bass 9 raised by half-step",
|
|
|
|
"Figured bass [",
|
|
|
|
"Figured bass ]",
|
|
|
|
"Combining lower",
|
|
|
|
"Combining raise",
|
|
|
|
"Figured bass double flat",
|
|
|
|
"Figured bass double sharp",
|
|
|
|
"Figured bass flat",
|
|
|
|
"Figured bass natural",
|
|
|
|
"Figured bass (",
|
|
|
|
"Figured bass )",
|
|
|
|
"Figured bass +",
|
|
|
|
"Figured bass sharp",
|
|
|
|
"Bassoon fingering chart, all open",
|
|
|
|
"Bassoon fingering chart, thumb/hand separators",
|
|
|
|
"Bassoon fingering chart, left-hand 1st finger closed",
|
|
|
|
"Bassoon fingering chart, left-hand 1st finger half-closed",
|
|
|
|
"Bassoon fingering chart, left-hand 1st finger quarter-closed",
|
|
|
|
"Bassoon fingering chart, left-hand 1st finger three-quarters closed",
|
|
|
|
"Bassoon fingering chart, left-hand 1st finger trill",
|
|
|
|
"Bassoon fingering chart, left-hand 2nd finger closed",
|
|
|
|
"Bassoon fingering chart, left-hand 2nd finger half-closed",
|
|
|
|
"Bassoon fingering chart, left-hand 2nd finger quarter-closed",
|
|
|
|
"Bassoon fingering chart, left-hand 2nd finger hole three-quarters closed",
|
|
|
|
"Bassoon fingering chart, left-hand 2nd finger trill",
|
|
|
|
"Bassoon fingering chart, left-hand 3rd finger closed",
|
|
|
|
"Bassoon fingering chart, left-hand 3rd finger half-closed",
|
|
|
|
"Bassoon fingering chart, left-hand 3rd finger quarter-closed",
|
|
|
|
"Bassoon fingering chart, left-hand 3rd finger ring closed",
|
|
|
|
"Bassoon fingering chart, left-hand 3rd finger ring trill",
|
|
|
|
"Bassoon fingering chart, left-hand 3rd finger three-quarters closed",
|
|
|
|
"Bassoon fingering chart, left-hand high E closed",
|
|
|
|
"Bassoon fingering chart, left-hand high E flat closed",
|
|
|
|
"Bassoon fingering chart, left-hand high E flat trill",
|
|
|
|
"Bassoon fingering chart, left-hand high E trill",
|
|
|
|
"Bassoon fingering chart, left-hand low D flat closed",
|
|
|
|
"Bassoon fingering chart, left-hand low D flat trill",
|
|
|
|
"Bassoon fingering chart, left-hand low E flat closed",
|
|
|
|
"Bassoon fingering chart, left-hand low E flat trill",
|
|
|
|
"Bassoon fingering chart, left thumb C sharp closed",
|
|
|
|
"Bassoon fingering chart, left thumb C sharp trill",
|
|
|
|
"Bassoon fingering chart, left thumb high A closed",
|
|
|
|
"Bassoon fingering chart, left thumb high A trill",
|
|
|
|
"Bassoon fingering chart, left thumb high B closed",
|
|
|
|
"Bassoon fingering chart, left thumb high B trill",
|
|
|
|
"Bassoon fingering chart, left thumb high D closed",
|
|
|
|
"Bassoon fingering chart, left thumb high D trill",
|
|
|
|
"Bassoon fingering chart, left thumb low B closed",
|
|
|
|
"Bassoon fingering chart, left thumb low B flat closed",
|
|
|
|
"Bassoon fingering chart, left thumb low B flat trill",
|
|
|
|
"Bassoon fingering chart, left thumb low B trill",
|
|
|
|
"Bassoon fingering chart, left thumb low C closed",
|
|
|
|
"Bassoon fingering chart, left thumb low C trill",
|
|
|
|
"Bassoon fingering chart, left thumb low D closed",
|
|
|
|
"Bassoon fingering chart, left thumb low D trill",
|
|
|
|
"Bassoon fingering chart, left thumb whisper key closed",
|
|
|
|
"Bassoon fingering chart, left thumb whisper key trill",
|
|
|
|
"Bassoon fingering chart, right-hand 1st finger closed",
|
|
|
|
"Bassoon fingering chart, right-hand 1st finger half-closed",
|
|
|
|
"Bassoon fingering chart, right-hand 1st finger quarter-closed",
|
|
|
|
"Bassoon fingering chart, right-hand 1st finger three-quarters closed",
|
|
|
|
"Bassoon fingering chart, right-hand 1st finger trill",
|
|
|
|
"Bassoon fingering chart, right-hand 2nd finger closed",
|
|
|
|
"Bassoon fingering chart, right-hand 2nd finger half-closed",
|
|
|
|
"Bassoon fingering chart, right-hand 2nd finger quarter-closed",
|
|
|
|
"Bassoon fingering chart, right-hand 2nd finger ring closed",
|
|
|
|
"Bassoon fingering chart, right-hand 2nd finger three-quarters closed",
|
|
|
|
"Bassoon fingering chart, right-hand 2nd finger trill",
|
|
|
|
"Bassoon fingering chart, right-hand A flat closed",
|
|
|
|
"Bassoon fingering chart, right-hand A flat trill",
|
|
|
|
"Bassoon fingering chart, right-hand B flat trill key closed",
|
|
|
|
"Bassoon fingering chart, right-hand B flat trill key trill",
|
|
|
|
"Bassoon fingering chart, right-hand C sharp trill key closed",
|
|
|
|
"Bassoon fingering chart, right-hand C sharp trill key trill",
|
|
|
|
"Bassoon fingering chart, right-hand alt. F sharp closed",
|
|
|
|
"Bassoon fingering chart, right-hand F sharp trill",
|
|
|
|
"Bassoon fingering chart, right-hand low F closed",
|
|
|
|
"Bassoon fingering chart, right-hand low F trill",
|
|
|
|
"Bassoon fingering chart, right-hand low G closed",
|
|
|
|
"Bassoon fingering chart, right-hand low G trill",
|
|
|
|
"Bassoon fingering chart, right thumb A flat closed",
|
|
|
|
"Bassoon fingering chart, right thumb A flat trill",
|
|
|
|
"Bassoon fingering chart, right thumb B flat closed",
|
|
|
|
"Bassoon fingering chart, right thumb B flat trill",
|
|
|
|
"Bassoon fingering chart, right thumb low E closed",
|
|
|
|
"Bassoon fingering chart, right thumb low E trill",
|
|
|
|
"Bassoon fingering chart, right thumb low F sharp closed",
|
|
|
|
"Bassoon fingering chart, right thumb low F sharp trill",
|
|
|
|
"Clarinet fingering chart, bass clarinet E flat closed",
|
|
|
|
"Clarinet fingering chart, bass clarinet E flat open",
|
|
|
|
"Clarinet fingering chart, bass clarinet E flat trill",
|
|
|
|
"Clarinet fingering chart, all open",
|
|
|
|
"Clarinet fingering chart, left-hand 1st finger closed",
|
|
|
|
"Clarinet fingering chart, left-hand 1st finger half-closed left",
|
|
|
|
"Clarinet fingering chart, left-hand 1st finger half-closed right",
|
|
|
|
"Clarinet fingering chart, left-hand 1st finger quarter-closed left",
|
|
|
|
"Clarinet fingering chart, left-hand 1st finger quarter-closed right",
|
|
|
|
"Clarinet fingering chart, left-hand 1st finger ring only",
|
|
|
|
"Clarinet fingering chart, left-hand 1st finger trill",
|
|
|
|
"Clarinet fingering chart, left-hand 2nd finger closed",
|
|
|
|
"Clarinet fingering chart, left-hand 2nd finger half-closed left",
|
|
|
|
"Clarinet fingering chart, left-hand 2nd finger half-closed right",
|
|
|
|
"Clarinet fingering chart, left-hand 2nd finger quarter-closed left",
|
|
|
|
"Clarinet fingering chart, left-hand 2nd finger quarter-closed right",
|
|
|
|
"Clarinet fingering chart, left-hand 2nd finger ring only",
|
|
|
|
"Clarinet fingering chart, left-hand 2nd finger trill",
|
|
|
|
"Clarinet fingering chart, left-hand 3rd finger closed",
|
|
|
|
"Clarinet fingering chart, left-hand 3rd finger half-closed left",
|
|
|
|
"Clarinet fingering chart, left-hand 3rd finger half-closed right",
|
|
|
|
"Clarinet fingering chart, left-hand 3rd finger quarter-closed left",
|
|
|
|
"Clarinet fingering chart, left-hand 3rd finger quarter-closed right",
|
|
|
|
"Clarinet fingering chart, left-hand 3rd finger ring only",
|
|
|
|
"Clarinet fingering chart, left-hand 3rd finger trill",
|
|
|
|
"Clarinet fingering chart, left-hand A closed",
|
|
|
|
"Clarinet fingering chart, left-hand A trill",
|
|
|
|
"Clarinet fingering chart, left-hand C sharp closed",
|
|
|
|
"Clarinet fingering chart, left-hand C sharp trill",
|
|
|
|
"Clarinet fingering chart, left-hand E closed",
|
|
|
|
"Clarinet fingering chart, left-hand E flat closed",
|
|
|
|
"Clarinet fingering chart, left-hand E flat trill",
|
|
|
|
"Clarinet fingering chart, left-hand E trill",
|
|
|
|
"Clarinet fingering chart, left-hand F closed",
|
|
|
|
"Clarinet fingering chart, left-hand F trill",
|
|
|
|
"Clarinet fingering chart, left-hand G sharp alt. closed",
|
|
|
|
"Clarinet fingering chart, left-hand G sharp alt. trill",
|
|
|
|
"Clarinet fingering chart, left-hand G sharp closed",
|
|
|
|
"Clarinet fingering chart, left-hand G sharp trill",
|
|
|
|
"Clarinet fingering chart, left-hand thumb closed",
|
|
|
|
"Clarinet fingering chart, left-hand thumb trill",
|
|
|
|
"Clarinet fingering chart, right-hand 1st finger closed",
|
|
|
|
"Clarinet fingering chart, right-hand 1st finger half-closed left",
|
|
|
|
"Clarinet fingering chart, right-hand 1st finger half-closed right",
|
|
|
|
"Clarinet fingering chart, right-hand 1st finger quarter-closed left",
|
|
|
|
"Clarinet fingering chart, right-hand 1st finger quarter-closed right",
|
|
|
|
"Clarinet fingering chart, right-hand 1st finger ring only",
|
|
|
|
"Clarinet fingering chart, right-hand 1st finger trill",
|
|
|
|
"Clarinet fingering chart, right-hand 1st side closed",
|
|
|
|
"Clarinet fingering chart, right-hand 1st side trill",
|
|
|
|
"Clarinet fingering chart, right-hand 2nd finger closed",
|
|
|
|
"Clarinet fingering chart, right-hand 2nd finger half-closed left",
|
|
|
|
"Clarinet fingering chart, right-hand 2nd finger half-closed right",
|
|
|
|
"Clarinet fingering chart, right-hand 2nd finger quarter-closed left",
|
|
|
|
"Clarinet fingering chart, right-hand 2nd finger quarter-closed right",
|
|
|
|
"Clarinet fingering chart, right-hand 2nd finger ring only",
|
|
|
|
"Clarinet fingering chart, right-hand 2nd finger trill",
|
|
|
|
"Clarinet fingering chart, right-hand 2nd side closed",
|
|
|
|
"Clarinet fingering chart, right-hand 2nd side trill",
|
|
|
|
"Clarinet fingering chart, right-hand 3rd finger closed",
|
|
|
|
"Clarinet fingering chart, right-hand 3rd finger half-closed left",
|
|
|
|
"Clarinet fingering chart, right-hand 3rd finger half-closed right",
|
|
|
|
"Clarinet fingering chart, right-hand 3rd finger quarter-closed left",
|
|
|
|
"Clarinet fingering chart, right-hand 3rd finger quarter-closed right",
|
|
|
|
"Clarinet fingering chart, right-hand 3rd finger ring only",
|
|
|
|
"Clarinet fingering chart, right-hand 3rd finger trill",
|
|
|
|
"Clarinet fingering chart, right-hand 3rd side closed",
|
|
|
|
"Clarinet fingering chart, right-hand 3rd side trill",
|
|
|
|
"Clarinet fingering chart, right-hand 4th side closed",
|
|
|
|
"Clarinet fingering chart, right-hand 4th side trill",
|
|
|
|
"Clarinet fingering chart, right-hand B closed",
|
|
|
|
"Clarinet fingering chart, right-hand B trill",
|
|
|
|
"Clarinet fingering chart, right-hand E closed",
|
|
|
|
"Clarinet fingering chart, right-hand E trill",
|
|
|
|
"Clarinet fingering chart, right-hand F closed",
|
|
|
|
"Clarinet fingering chart, right-hand F sharp closed",
|
|
|
|
"Clarinet fingering chart, right-hand F sharp trill",
|
|
|
|
"Clarinet fingering chart, right-hand F trill",
|
|
|
|
"Clarinet fingering chart, right-hand G sharp closed",
|
|
|
|
"Clarinet fingering chart, right-hand G sharp trill",
|
|
|
|
"Clarinet fingering chart, register closed",
|
|
|
|
"Clarinet fingering chart, register trill",
|
|
|
|
"Flute fingering chart, flute low B foot all open",
|
|
|
|
"Flute fingering chart, flute low C foot all open",
|
|
|
|
"Flute fingering chart, piccolo all open",
|
|
|
|
"Flute fingering chart, left-hand 1st finger closed",
|
|
|
|
"Flute fingering chart, left-hand 1st finger half-closed (left)",
|
|
|
|
"Flute fingering chart, left-hand 1st finger half-closed (right)",
|
|
|
|
"Flute fingering chart, left-hand 1st finger quarter-closed (left)",
|
|
|
|
"Flute fingering chart, left-hand 1st finger quarter-closed (right)",
|
|
|
|
"Flute fingering chart, left-hand 1st finger trill",
|
|
|
|
"Flute fingering chart, left-hand 2nd finger closed",
|
|
|
|
"Flute fingering chart, left-hand 2nd finger half-closed (left)",
|
|
|
|
"Flute fingering chart, left-hand 2nd finger half-closed (right)",
|
|
|
|
"Flute fingering chart, left-hand 2nd finger quarter-closed (left)",
|
|
|
|
"Flute fingering chart, left-hand 2nd finger quarter-closed (right)",
|
|
|
|
"Flute fingering chart, left-hand 2nd finger trill",
|
|
|
|
"Flute fingering chart, left-hand 3rd finger closed",
|
|
|
|
"Flute fingering chart, left-hand 3rd finger half-closed (left)",
|
|
|
|
"Flute fingering chart, left-hand 3rd finger half-closed (right)",
|
|
|
|
"Flute fingering chart, left-hand 3rd finger quarter-closed (left)",
|
|
|
|
"Flute fingering chart, left-hand 3rd finger quarter-closed (right)",
|
|
|
|
"Flute fingering chart, left-hand 3rd finger trill",
|
|
|
|
"Flute fingering chart, left-hand thumb B closed",
|
|
|
|
"Flute fingering chart, left-hand thumb B flat closed",
|
|
|
|
"Flute fingering chart, left-hand thumb B flat trill",
|
|
|
|
"Flute fingering chart, left-hand thumb B trill",
|
|
|
|
"Flute fingering chart, right-hand 1st finger closed",
|
|
|
|
"Flute fingering chart, right-hand 1st finger half-closed (left)",
|
|
|
|
"Flute fingering chart, right-hand 1st finger half-closed (right)",
|
|
|
|
"Flute fingering chart, right-hand 1st finger quarter-closed (left)",
|
|
|
|
"Flute fingering chart, right-hand 1st finger quarter-closed (right)",
|
|
|
|
"Flute fingering chart, right-hand 1st finger trill",
|
|
|
|
"Flute fingering chart, right-hand 2nd finger closed",
|
|
|
|
"Flute fingering chart, right-hand 2nd finger half-closed (left)",
|
|
|
|
"Flute fingering chart, right-hand 2nd finger half-closed (right)",
|
|
|
|
"Flute fingering chart, right-hand 2nd finger quarter-closed (left)",
|
|
|
|
"Flute fingering chart, right-hand 2nd finger quarter-closed (right)",
|
|
|
|
"Flute fingering chart, right-hand 2nd finger trill",
|
|
|
|
"Flute fingering chart, right-hand 3rd finger closed",
|
|
|
|
"Flute fingering chart, right-hand 3rd finger half-closed (left)",
|
|
|
|
"Flute fingering chart, right-hand 3rd finger half-closed (right)",
|
|
|
|
"Flute fingering chart, right-hand 3rd finger quarter-closed (left)",
|
|
|
|
"Flute fingering chart, right-hand 3rd finger quarter-closed (right)",
|
|
|
|
"Flute fingering chart, right-hand 3rd finger trill",
|
|
|
|
"Flute fingering chart, right-hand B flat trill closed",
|
|
|
|
"Flute fingering chart, right-hand B flat trill key trill",
|
|
|
|
"Flute fingering chart, right-hand D sharp trill closed",
|
|
|
|
"Flute fingering chart, right-hand D sharp trill key trill",
|
|
|
|
"Flute fingering chart, right-hand D trill closed",
|
|
|
|
"Flute fingering chart, right-hand D trill key trill",
|
|
|
|
"Flute fingering chart, right-hand E flat paddle closed",
|
|
|
|
"Flute fingering chart, right-hand E flat paddle trill",
|
|
|
|
"Flute fingering chart, right-hand gizmo closed",
|
|
|
|
"Flute fingering chart, right-hand gizmo trill",
|
|
|
|
"Flute fingering chart, right-hand low B closed",
|
|
|
|
"Flute fingering chart, right-hand low B trill",
|
|
|
|
"Flute fingering chart, right-hand low C closed",
|
|
|
|
"Flute fingering chart, right-hand low C sharp closed",
|
|
|
|
"Flute fingering chart, right-hand low C sharp trill",
|
|
|
|
"Flute fingering chart, right-hand low C trill",
|
|
|
|
"Oboe fingering chart, all open",
|
|
|
|
"Oboe fingering chart, left-hand 1st finger closed",
|
|
|
|
"Oboe fingering chart, left-hand 1st finger half-closed",
|
|
|
|
"Oboe fingering chart, left-hand 1st finger ring only",
|
|
|
|
"Oboe fingering chart, left-hand 1st finger trill",
|
|
|
|
"Oboe fingering chart, left-hand 1st octave closed",
|
|
|
|
"Oboe fingering chart, left-hand 1st octave trill",
|
|
|
|
"Oboe fingering chart, left-hand 2nd finger closed",
|
|
|
|
"Oboe fingering chart, left-hand 2nd finger half-closed (left)",
|
|
|
|
"Oboe fingering chart, left-hand 2nd finger half-closed (right)",
|
|
|
|
"Oboe fingering chart, left-hand 2nd finger quarter-closed (left)",
|
|
|
|
"Oboe fingering chart, left-hand 2nd finger quarter-closed (right)",
|
|
|
|
"Oboe fingering chart, left-hand 2nd finger ring only",
|
|
|
|
"Oboe fingering chart, left-hand 2nd finger trill",
|
|
|
|
"Oboe fingering chart, left-hand 2nd octave closed",
|
|
|
|
"Oboe fingering chart, left-hand 2nd octave trill",
|
|
|
|
"Oboe fingering chart, left-hand 3rd finger closed",
|
|
|
|
"Oboe fingering chart, left-hand 3rd finger half-closed (left)",
|
|
|
|
"Oboe fingering chart, left-hand 3rd finger half-closed (right)",
|
|
|
|
"Oboe fingering chart, left-hand 3rd finger quarter-closed (left)",
|
|
|
|
"Oboe fingering chart, left-hand 3rd finger quarter-closed (right)",
|
|
|
|
"Oboe fingering chart, left-hand 3rd finger ring only",
|
|
|
|
"Oboe fingering chart, left-hand 3rd finger trill",
|
|
|
|
"Oboe fingering chart, left-hand 3rd octave closed",
|
|
|
|
"Oboe fingering chart, left-hand 3rd octave trill",
|
|
|
|
"Oboe fingering chart, left-hand B trill closed",
|
|
|
|
"Oboe fingering chart, left-hand B trill key trill",
|
|
|
|
"Oboe fingering chart, left-hand C sharp trill closed",
|
|
|
|
"Oboe fingering chart, left-hand C sharp trill key trill",
|
|
|
|
"Oboe fingering chart, left-hand D trill closed",
|
|
|
|
"Oboe fingering chart, left-hand D trill key trill",
|
|
|
|
"Oboe fingering chart, left-hand E flat closed",
|
|
|
|
"Oboe fingering chart, left-hand E flat trill",
|
|
|
|
"Oboe fingering chart, left-hand F closed",
|
|
|
|
"Oboe fingering chart, left-hand F trill",
|
|
|
|
"Oboe fingering chart, left-hand G sharp closed",
|
|
|
|
"Oboe fingering chart, left-hand G sharp trill",
|
|
|
|
"Oboe fingering chart, left-hand low B closed",
|
|
|
|
"Oboe fingering chart, left-hand low B flat closed",
|
|
|
|
"Oboe fingering chart, left-hand low B flat trill",
|
|
|
|
"Oboe fingering chart, left-hand low B trill",
|
|
|
|
"Oboe fingering chart, right-hand 1st finger closed",
|
|
|
|
"Oboe fingering chart, right-hand 1st finger half-closed (left)",
|
|
|
|
"Oboe fingering chart, right-hand 1st finger half-closed (right)",
|
|
|
|
"Oboe fingering chart, right-hand 1st finger quarter-closed (left)",
|
|
|
|
"Oboe fingering chart, right-hand 1st finger quarter-closed (right)",
|
|
|
|
"Oboe fingering chart, right-hand 1st finger ring only",
|
|
|
|
"Oboe fingering chart, right-hand 1st finger trill",
|
|
|
|
"Oboe fingering chart, right-hand 2nd finger closed",
|
|
|
|
"Oboe fingering chart, right-hand 2nd finger half-closed (left)",
|
|
|
|
"Oboe fingering chart, right-hand 2nd finger half-closed right",
|
|
|
|
"Oboe fingering chart, right-hand 2nd finger quarter-closed (left)",
|
|
|
|
"Oboe fingering chart, right-hand 2nd finger quarter-closed (right)",
|
|
|
|
"Oboe fingering chart, right-hand 2nd finger ring only",
|
|
|
|
"Oboe fingering chart, right-hand 2nd finger trill",
|
|
|
|
"Oboe fingering chart, right-hand 3rd finger closed",
|
|
|
|
"Oboe fingering chart, right-hand 3rd finger half-closed (left)",
|
|
|
|
"Oboe fingering chart, right-hand 3rd finger half-closed (right)",
|
|
|
|
"Oboe fingering chart, right-hand 3rd finger quarter-closed (left)",
|
|
|
|
"Oboe fingering chart, right-hand 3rd finger quarter-closed (right)",
|
|
|
|
"Oboe fingering chart, right-hand 3rd finger ring only",
|
|
|
|
"Oboe fingering chart, right-hand 3rd finger trill",
|
|
|
|
"Oboe fingering chart, right-hand A closed",
|
|
|
|
"Oboe fingering chart, right-hand A trill",
|
|
|
|
"Oboe fingering chart, right-hand C banana closed",
|
|
|
|
"Oboe fingering chart, right-hand C banana trill",
|
|
|
|
"Oboe fingering chart, right-hand D trill closed",
|
|
|
|
"Oboe fingering chart, right-hand D trill key trill",
|
|
|
|
"Oboe fingering chart, right-hand F closed",
|
|
|
|
"Oboe fingering chart, right-hand F trill",
|
|
|
|
"Oboe fingering chart, right-hand G sharp closed",
|
|
|
|
"Oboe fingering chart, right-hand G sharp trill",
|
|
|
|
"Oboe fingering chart, right-hand low C closed",
|
|
|
|
"Oboe fingering chart, right-hand low C sharp closed",
|
|
|
|
"Oboe fingering chart, right-hand low C sharp trill",
|
|
|
|
"Oboe fingering chart, right-hand low C trill",
|
|
|
|
"Oboe fingering chart, right-hand low E flat key closed",
|
|
|
|
"Oboe fingering chart, right-hand low E flat key trill",
|
|
|
|
"Recorder fingering chart, all open",
|
|
|
|
"Recorder fingering chart, left-hand 1st finger closed",
|
|
|
|
"Recorder fingering chart, left-hand 1st finger half-closed (left)",
|
|
|
|
"Recorder fingering chart, left-hand 1st finger half-closed (right)",
|
|
|
|
"Recorder fingering chart, left-hand 1st finger quarter-closed (left)",
|
|
|
|
"Recorder fingering chart, left-hand 1st finger quarter-closed (right)",
|
|
|
|
"Recorder fingering chart, left-hand 1st finger trill",
|
|
|
|
"Recorder fingering chart, left-hand 2nd finger closed",
|
|
|
|
"Recorder fingering chart, left-hand 2nd finger half-closed (left)",
|
|
|
|
"Recorder fingering chart, left-hand 2nd finger half-closed (right)",
|
|
|
|
"Recorder fingering chart, left-hand 2nd finger quarter-closed (left)",
|
|
|
|
"Recorder fingering chart, left-hand 2nd finger quarter-closed (right)",
|
|
|
|
"Recorder fingering chart, left-hand 2nd finger trill",
|
|
|
|
"Recorder fingering chart, left-hand 3rd finger closed",
|
|
|
|
"Recorder fingering chart, left-hand 3rd finger half-closed (left)",
|
|
|
|
"Recorder fingering chart, left-hand 3rd finger half-closed (right)",
|
|
|
|
"Recorder fingering chart, left-hand 3rd finger quarter-closed (left)",
|
|
|
|
"Recorder fingering chart, left-hand 3rd finger quarter-closed (right)",
|
|
|
|
"Recorder fingering chart, left-hand 3rd finger trill",
|
|
|
|
"Recorder fingering chart, left-hand thumb closed",
|
|
|
|
"Recorder fingering chart, left-hand thumb half-closed (left)",
|
|
|
|
"Recorder fingering chart, left-hand thumb half-closed (right)",
|
|
|
|
"Recorder fingering chart, left-hand thumb quarter-closed (left)",
|
|
|
|
"Recorder fingering chart, left-hand thumb quarter-closed (right)",
|
|
|
|
"Recorder fingering chart, left-hand thumb trill",
|
|
|
|
"Recorder fingering chart, right-hand 1st double hole left closed",
|
|
|
|
"Recorder fingering chart, right-hand 1st double hole left half-closed (left)",
|
|
|
|
"Recorder fingering chart, right-hand 1st double hole left half-closed (right)",
|
|
|
|
"Recorder fingering chart, right-hand 1st double hole left quarter-closed (left)",
|
|
|
|
"Recorder fingering chart, right-hand 1st double hole left quarter-closed (right)",
|
|
|
|
"Recorder fingering chart, right-hand 1st double hole left trill",
|
|
|
|
"Recorder fingering chart, right-hand 1st double hole right closed",
|
|
|
|
"Recorder fingering chart, right-hand 1st double hole right half-closed (left)",
|
|
|
|
"Recorder fingering chart, right-hand 1st double hole right half-closed (right)",
|
|
|
|
"Recorder fingering chart, right-hand 1st double hole right quarter-closed (left)",
|
|
|
|
"Recorder fingering chart, right-hand 1st double hole right quarter-closed (right)",
|
|
|
|
"Recorder fingering chart, right-hand 1st double hole right trill",
|
|
|
|
"Recorder fingering chart, right-hand 1st finger closed",
|
|
|
|
"Recorder fingering chart, right-hand 1st finger half-closed (left)",
|
|
|
|
"Recorder fingering chart, right-hand 1st finger half-closed (right)",
|
|
|
|
"Recorder fingering chart, right-hand 1st finger quarter-closed (left)",
|
|
|
|
"Recorder fingering chart, right-hand 1st finger quarter-closed (right)",
|
|
|
|
"Recorder fingering chart, right-hand 1st finger trill",
|
|
|
|
"Recorder fingering chart, right-hand 2nd double hole left closed",
|
|
|
|
"Recorder fingering chart, right-hand 2nd double hole left half-closed (left)",
|
|
|
|
"Recorder fingering chart, right-hand 2nd double hole left half-closed (right)",
|
|
|
|
"Recorder fingering chart, right-hand 2nd double hole left quarter-closed (left)",
|
|
|
|
"Recorder fingering chart, right-hand 2nd double hole left quarter-closed (right)",
|
|
|
|
"Recorder fingering chart, right-hand 2nd double hole left trill",
|
|
|
|
"Recorder fingering chart, right-hand 2nd double hole right closed",
|
|
|
|
"Recorder fingering chart, right-hand 2nd double hole right half-closed (left)",
|
|
|
|
"Recorder fingering chart, right-hand 2nd double hole right half-closed (right)",
|
|
|
|
"Recorder fingering chart, right-hand 2nd double hole right quarter-closed (left)",
|
|
|
|
"Recorder fingering chart, right-hand 2nd double hole right quarter-closed (right)",
|
|
|
|
"Recorder fingering chart, right-hand 2nd double hole right trill",
|
|
|
|
"Saxophone fingering chart, baritone low A closed",
|
|
|
|
"Saxophone fingering chart, baritone low A open",
|
|
|
|
"Saxophone fingering chart, baritone low A trill",
|
|
|
|
"Saxophone fingering chart, all open",
|
|
|
|
"Saxophone fingering chart, left-hand 1st finger closed",
|
|
|
|
"Saxophone fingering chart, left-hand 1st finger half-closed",
|
|
|
|
"Saxophone fingering chart, left-hand 1st finger trill",
|
|
|
|
"Saxophone fingering chart, left-hand 2nd finger closed",
|
|
|
|
"Saxophone fingering chart, left-hand 2nd finger half-closed",
|
|
|
|
"Saxophone fingering chart, left-hand 2nd finger trill",
|
|
|
|
"Saxophone fingering chart, left-hand 3rd finger closed",
|
|
|
|
"Saxophone fingering chart, left-hand 3rd finger half-closed",
|
|
|
|
"Saxophone fingering chart, left-hand 3rd finger trill",
|
|
|
|
"Saxophone fingering chart, left-hand B flat closed",
|
|
|
|
"Saxophone fingering chart, left-hand B flat trill",
|
|
|
|
"Saxophone fingering chart, left-hand D palm closed",
|
|
|
|
"Saxophone fingering chart, left-hand D palm trill",
|
|
|
|
"Saxophone fingering chart, left-hand E flat palm closed",
|
|
|
|
"Saxophone fingering chart, left-hand E flat palm trill",
|
|
|
|
"Saxophone fingering chart, left-hand F palm closed",
|
|
|
|
"Saxophone fingering chart, left-hand F palm trill",
|
|
|
|
"Saxophone fingering chart, left-hand front F closed",
|
|
|
|
"Saxophone fingering chart, left-hand front F trill",
|
|
|
|
"Saxophone fingering chart, left-hand G sharp closed",
|
|
|
|
"Saxophone fingering chart, left-hand G sharp trill",
|
|
|
|
"Saxophone fingering chart, left-hand low B closed",
|
|
|
|
"Saxophone fingering chart, left-hand low B flat closed",
|
|
|
|
"Saxophone fingering chart, left-hand low B flat trill",
|
|
|
|
"Saxophone fingering chart, left-hand low B trill",
|
|
|
|
"Saxophone fingering chart, left-hand low C sharp closed",
|
|
|
|
"Saxophone fingering chart, left-hand low C sharp trill",
|
|
|
|
"Saxophone fingering chart, left-hand octave closed",
|
|
|
|
"Saxophone fingering chart, left-hand octave trill",
|
|
|
|
"Saxophone fingering chart, right-hand 1st finger closed",
|
|
|
|
"Saxophone fingering chart, right-hand 1st finger half-closed",
|
|
|
|
"Saxophone fingering chart, right-hand 1st finger trill",
|
|
|
|
"Saxophone fingering chart, right-hand 2nd finger closed",
|
|
|
|
"Saxophone fingering chart, right-hand 2nd finger half-closed",
|
|
|
|
"Saxophone fingering chart, right-hand 2nd finger trill",
|
|
|
|
"Saxophone fingering chart, right-hand 3rd finger closed",
|
|
|
|
"Saxophone fingering chart, right-hand 3rd finger half-closed",
|
|
|
|
"Saxophone fingering chart, right-hand 3rd finger trill",
|
|
|
|
"Saxophone fingering chart, right-hand B flat side closed",
|
|
|
|
"Saxophone fingering chart, right-hand B flat side trill",
|
|
|
|
"Saxophone fingering chart, right-hand C side closed",
|
|
|
|
"Saxophone fingering chart, right-hand C side trill",
|
|
|
|
"Saxophone fingering chart, right-hand E side closed",
|
|
|
|
"Saxophone fingering chart, right-hand E side trill",
|
|
|
|
"Saxophone fingering chart, right-hand F sharp alternate closed",
|
|
|
|
"Saxophone fingering chart, right-hand F sharp alternate trill",
|
|
|
|
"Saxophone fingering chart, right-hand high F sharp closed",
|
|
|
|
"Saxophone fingering chart, right-hand high F sharp trill",
|
|
|
|
"Saxophone fingering chart, right-hand low C closed",
|
|
|
|
"Saxophone fingering chart, right-hand low C trill",
|
|
|
|
"Saxophone fingering chart, right-hand low E flat closed",
|
|
|
|
"Saxophone fingering chart, right-hand low E flat trill",
|
|
|
|
"Combining flag 8 (1024th) below",
|
|
|
|
"Combining flag 8 (1024th) above",
|
|
|
|
"Combining flag 5 (128th) below",
|
|
|
|
"Combining flag 5 (128th) above",
|
|
|
|
"Combining flag 2 (16th) below",
|
|
|
|
"Combining flag 2 (16th) above",
|
|
|
|
"Combining flag 6 (256th) below",
|
|
|
|
"Combining flag 6 (256th) above",
|
|
|
|
"Combining flag 3 (32nd) below",
|
|
|
|
"Combining flag 3 (32nd) above",
|
|
|
|
"Combining flag 7 (512th) below",
|
|
|
|
"Combining flag 7 (512th) above",
|
|
|
|
"Combining flag 4 (64th) below",
|
|
|
|
"Combining flag 4 (64th) above",
|
|
|
|
"Combining flag 1 (8th) below",
|
|
|
|
"Combining flag 1 (8th) above",
|
|
|
|
"Internal combining flag below",
|
|
|
|
"Internal combining flag above",
|
|
|
|
"Flute fingering chart, left-hand G sharp closed",
|
|
|
|
"Flute fingering chart, left-hand G sharp trill",
|
|
|
|
"3-string fretboard",
|
|
|
|
"3-string fretboard at nut",
|
|
|
|
"4-string fretboard",
|
|
|
|
"4-string fretboard at nut",
|
|
|
|
"5-string fretboard",
|
|
|
|
"5-string fretboard at nut",
|
|
|
|
"6-string fretboard",
|
|
|
|
"6-string fretboard at nut",
|
|
|
|
"Fingered fret (filled circle)",
|
|
|
|
"Open string (O)",
|
|
|
|
"String not played (X)",
|
|
|
|
"Function theory angle bracket left",
|
|
|
|
"Function theory angle bracket right",
|
|
|
|
"Function theory bracket left",
|
|
|
|
"Function theory bracket right",
|
|
|
|
"Function theory dominant of dominant",
|
|
|
|
"Function theory minor dominant",
|
|
|
|
"Function theory major dominant",
|
|
|
|
"Function theory 8",
|
|
|
|
"Function theory 5",
|
|
|
|
"Function theory 4",
|
|
|
|
"Function theory g",
|
|
|
|
"Function theory G",
|
|
|
|
"Function theory greater than",
|
|
|
|
"Function theory less than",
|
|
|
|
"Function theory minus",
|
|
|
|
"Function theory n",
|
|
|
|
"Function theory N",
|
|
|
|
"Function theory 9",
|
|
|
|
"Function theory 1",
|
|
|
|
"Function theory p",
|
|
|
|
"Function theory P",
|
|
|
|
"Function theory parenthesis left",
|
|
|
|
"Function theory parenthesis right",
|
|
|
|
"Function theory prefix plus",
|
|
|
|
"Function theory repetition 1",
|
|
|
|
"Function theory repetition 2",
|
|
|
|
"Function theory prefix ring",
|
|
|
|
"Function theory minor subdominant",
|
|
|
|
"Function theory minor subdominant of subdominant",
|
|
|
|
"Function theory major subdominant of subdominant",
|
|
|
|
"Function theory major subdominant",
|
|
|
|
"Function theory 7",
|
|
|
|
"Function theory 6",
|
|
|
|
"Function theory double dominant seventh",
|
|
|
|
"Function theory minor tonic",
|
|
|
|
"Function theory tonic",
|
|
|
|
"Function theory 3",
|
|
|
|
"Function theory 2",
|
|
|
|
"Function theory v",
|
|
|
|
"Function theory V",
|
|
|
|
"Function theory 0",
|
|
|
|
"G clef",
|
|
|
|
"G clef quindicesima alta",
|
|
|
|
"G clef quindicesima bassa",
|
|
|
|
"G clef ottava alta",
|
|
|
|
"G clef ottava bassa",
|
|
|
|
"G clef ottava bassa with C clef",
|
|
|
|
"G clef ottava bassa (old style)",
|
|
|
|
"G clef, arrow down",
|
|
|
|
"G clef, arrow up",
|
|
|
|
"G clef change",
|
|
|
|
"Combining G clef, number above",
|
|
|
|
"Combining G clef, number below",
|
|
|
|
"Reversed G clef",
|
|
|
|
"Turned G clef",
|
|
|
|
"Glissando down",
|
|
|
|
"Glissando up",
|
|
|
|
"Slashed grace note stem down",
|
|
|
|
"Slashed grace note stem up",
|
|
|
|
"Grace note stem down",
|
|
|
|
"Grace note stem up",
|
|
|
|
"Slash for stem down grace note",
|
|
|
|
"Slash for stem up grace note",
|
|
|
|
"Closed wah/volume pedal",
|
|
|
|
"Fade in",
|
|
|
|
"Fade out",
|
|
|
|
"Golpe (tapping the pick guard)",
|
|
|
|
"Half-open wah/volume pedal",
|
|
|
|
"Left-hand tapping",
|
|
|
|
"Open wah/volume pedal",
|
|
|
|
"Right-hand tapping",
|
|
|
|
"Guitar shake",
|
|
|
|
"String number 0",
|
|
|
|
"String number 1",
|
|
|
|
"String number 2",
|
|
|
|
"String number 3",
|
|
|
|
"String number 4",
|
|
|
|
"String number 5",
|
|
|
|
"String number 6",
|
|
|
|
"String number 7",
|
|
|
|
"String number 8",
|
|
|
|
"String number 9",
|
|
|
|
"Guitar vibrato bar dip",
|
|
|
|
"Guitar vibrato bar scoop",
|
|
|
|
"Vibrato wiggle segment",
|
|
|
|
"Volume swell",
|
|
|
|
"Wide vibrato wiggle segment",
|
|
|
|
"Belltree",
|
|
|
|
"Damp 3",
|
|
|
|
"Echo",
|
|
|
|
"Echo 2",
|
|
|
|
"Gyro",
|
|
|
|
"Hand martellato",
|
|
|
|
"Mallet, bell on table",
|
|
|
|
"Mallet, bell suspended",
|
|
|
|
"Mallet lift",
|
|
|
|
"Martellato",
|
|
|
|
"Martellato lift",
|
|
|
|
"Muted martellato",
|
|
|
|
"Pluck lift",
|
|
|
|
"Swing",
|
|
|
|
"Swing down",
|
|
|
|
"Swing up",
|
|
|
|
"Table pair of handbells",
|
|
|
|
"Table single handbell",
|
|
|
|
"Metal rod pictogram",
|
|
|
|
"Harp pedal centered (natural)",
|
|
|
|
"Harp pedal divider",
|
|
|
|
"Harp pedal lowered (sharp)",
|
|
|
|
"Harp pedal raised (flat)",
|
|
|
|
"Fluidic sounds, left hand (Salzedo)",
|
|
|
|
"Fluidic sounds, right hand (Salzedo)",
|
|
|
|
"Metallic sounds (Salzedo)",
|
|
|
|
"Muffle totally (Salzedo)",
|
|
|
|
"Oboic flux (Salzedo)",
|
|
|
|
"Play at upper end of strings (Salzedo)",
|
|
|
|
"Slide with suppleness (Salzedo)",
|
|
|
|
"Tam-tam sounds (Salzedo)",
|
|
|
|
"Thunder effect (Salzedo)",
|
|
|
|
"Timpanic sounds (Salzedo)",
|
|
|
|
"Whistling sounds (Salzedo)",
|
|
|
|
"Combining string noise for stem",
|
|
|
|
"Tuning key pictogram",
|
|
|
|
"Retune strings for glissando",
|
|
|
|
"Use handle of tuning key pictogram",
|
|
|
|
"Use shank of tuning key pictogram",
|
|
|
|
"Clavichord bebung, 2 finger movements (above)",
|
|
|
|
"Clavichord bebung, 2 finger movements (below)",
|
|
|
|
"Clavichord bebung, 3 finger movements (above)",
|
|
|
|
"Clavichord bebung, 3 finger movements (below)",
|
|
|
|
"Clavichord bebung, 4 finger movements (above)",
|
|
|
|
"Clavichord bebung, 4 finger movements (below)",
|
|
|
|
"Left pedal pictogram",
|
|
|
|
"Middle pedal pictogram",
|
|
|
|
"Pedal d",
|
|
|
|
"Pedal dot",
|
|
|
|
"Pedal e",
|
|
|
|
"Half-pedal mark",
|
|
|
|
"Half pedal mark 1",
|
|
|
|
"Half pedal mark 2",
|
|
|
|
"Pedal heel 1",
|
|
|
|
"Pedal heel 2",
|
|
|
|
"Pedal heel 3 (Davis)",
|
|
|
|
"Pedal heel or toe",
|
|
|
|
"Pedal hyphen",
|
|
|
|
"Pedal P",
|
|
|
|
"Pedal mark",
|
|
|
|
"Pedal S",
|
|
|
|
"Sostenuto pedal mark",
|
|
|
|
"Pedal toe 1",
|
|
|
|
"Pedal toe 2",
|
|
|
|
"Pedal up mark",
|
|
|
|
"Pedal up notch",
|
|
|
|
"Pedal up special",
|
|
|
|
"Play with left hand",
|
|
|
|
"Play with left hand (end)",
|
|
|
|
"Play with right hand",
|
|
|
|
"Play with right hand (end)",
|
|
|
|
"Pluck strings inside piano (Maderna)",
|
|
|
|
"Right pedal pictogram",
|
|
|
|
"Kievan flat",
|
|
|
|
"Kievan sharp",
|
|
|
|
"Kievan augmentation dot",
|
|
|
|
"Kievan C clef (tse-fa-ut)",
|
|
|
|
"Kievan ending symbol",
|
|
|
|
"Kievan eighth note, stem down",
|
|
|
|
"Kievan eighth note, stem up",
|
|
|
|
"Kievan beam",
|
|
|
|
"Kievan half note (on staff line)",
|
|
|
|
"Kievan half note (in staff space)",
|
|
|
|
"Kievan quarter note, stem down",
|
|
|
|
"Kievan quarter note, stem up",
|
|
|
|
"Kievan reciting note",
|
|
|
|
"Kievan whole note",
|
|
|
|
"Kievan final whole note",
|
|
|
|
"Do hand sign",
|
|
|
|
"Fa hand sign",
|
|
|
|
"La hand sign",
|
|
|
|
"Mi hand sign",
|
|
|
|
"Re hand sign",
|
|
|
|
"So hand sign",
|
|
|
|
"Ti hand sign",
|
|
|
|
"Left repeat sign within bar",
|
|
|
|
"Leger line",
|
|
|
|
"Leger line (narrow)",
|
|
|
|
"Leger line (wide)",
|
|
|
|
"Lute tablature end repeat barline",
|
|
|
|
"Lute tablature final barline",
|
|
|
|
"Lute tablature start repeat barline",
|
|
|
|
"16th note (semiquaver) duration sign",
|
|
|
|
"32nd note (demisemiquaver) duration sign",
|
|
|
|
"Eighth note (quaver) duration sign",
|
|
|
|
"Double whole note (breve) duration sign",
|
|
|
|
"Half note (minim) duration sign",
|
|
|
|
"Quarter note (crotchet) duration sign",
|
|
|
|
"Whole note (semibreve) duration sign",
|
|
|
|
"Right-hand fingering, first finger",
|
|
|
|
"Right-hand fingering, second finger",
|
|
|
|
"Right-hand fingering, third finger",
|
|
|
|
"Right-hand fingering, thumb",
|
|
|
|
"10th course (diapason)",
|
|
|
|
"Seventh course (diapason)",
|
|
|
|
"Eighth course (diapason)",
|
|
|
|
"Ninth course (diapason)",
|
|
|
|
"Appoggiatura from above",
|
|
|
|
"Appoggiatura from below",
|
|
|
|
"Open string (a)",
|
|
|
|
"First fret (b)",
|
|
|
|
"Second fret (c)",
|
|
|
|
"Third fret (d)",
|
|
|
|
"Fourth fret (e)",
|
|
|
|
"Fifth fret (f)",
|
|
|
|
"Sixth fret (g)",
|
|
|
|
"Seventh fret (h)",
|
|
|
|
"Eighth fret (i)",
|
|
|
|
"Ninth fret (k)",
|
|
|
|
"10th fret (l)",
|
|
|
|
"11th fret (m)",
|
|
|
|
"12th fret (n)",
|
|
|
|
"Inverted mordent",
|
|
|
|
"Mordent with lower auxiliary",
|
|
|
|
"Mordent with upper auxiliary",
|
|
|
|
"5th course, 1st fret (a)",
|
|
|
|
"6th course, 1st fret (A)",
|
|
|
|
"4th course, 1st fret (b)",
|
|
|
|
"6th course, 2nd fret (B)",
|
|
|
|
"3rd course, 1st fret (c)",
|
|
|
|
"6th course, 3rd fret (C)",
|
|
|
|
"2nd course, 1st fret (d)",
|
|
|
|
"6th course, 4th fret (D)",
|
|
|
|
"1st course, 1st fret (e)",
|
|
|
|
"6th course, 5th fret (E)",
|
|
|
|
"5th course, 2nd fret (f)",
|
|
|
|
"6th course, 6th fret (F)",
|
|
|
|
"4th course, 2nd fret (g)",
|
|
|
|
"6th course, 7th fret (G)",
|
|
|
|
"3rd course, 2nd fret (h)",
|
|
|
|
"6th course, 8th fret (H)",
|
|
|
|
"2nd course, 2nd fret (i)",
|
|
|
|
"6th course, 9th fret (I)",
|
|
|
|
"1st course, 2nd fret (k)",
|
|
|
|
"6th course, 10th fret (K)",
|
|
|
|
"5th course, 3rd fret (l)",
|
|
|
|
"6th course, 11th fret (L)",
|
|
|
|
"4th course, 3rd fret (m)",
|
|
|
|
"6th course, 12th fret (M)",
|
|
|
|
"3rd course, 3rd fret (n)",
|
|
|
|
"6th course, 13th fret (N)",
|
|
|
|
"2nd course, 3rd fret (o)",
|
|
|
|
"1st course, 3rd fret (p)",
|
|
|
|
"5th course, 4th fret (q)",
|
|
|
|
"4th course, 4th fret (r)",
|
|
|
|
"3rd course, 4th fret (s)",
|
|
|
|
"2nd course, 4th fret (t)",
|
|
|
|
"1st course, 4th fret (v)",
|
|
|
|
"5th course, 5th fret (x)",
|
|
|
|
"4th course, 5th fret (y)",
|
|
|
|
"3rd course, 5th fret (z)",
|
|
|
|
"C sol fa ut clef",
|
|
|
|
"F fa ut clef",
|
|
|
|
"Open string (0)",
|
|
|
|
"First fret (1)",
|
|
|
|
"Second fret (2)",
|
|
|
|
"Third fret (3)",
|
|
|
|
"Fourth fret (4)",
|
|
|
|
"Fifth fret (5)",
|
|
|
|
"Sixth fret (6)",
|
|
|
|
"Seventh fret (7)",
|
|
|
|
"Eighth fret (8)",
|
|
|
|
"Ninth fret (9)",
|
|
|
|
"Hold finger in place",
|
|
|
|
"Hold note",
|
|
|
|
"Release finger",
|
|
|
|
"Fast tempo indication (de Mudarra)",
|
|
|
|
"Neither fast nor slow tempo indication (de Mudarra)",
|
|
|
|
"Slow tempo indication (de Mudarra)",
|
|
|
|
"Somewhat fast tempo indication (de Narvaez)",
|
|
|
|
"Very slow indication (de Narvaez)",
|
|
|
|
"Triple time indication",
|
|
|
|
"Single-finger tremolo or mordent",
|
|
|
|
"Vibrato (verre cass\u00e9)",
|
|
|
|
"Lute tablature staff, 6 courses",
|
|
|
|
"Lute tablature staff, 6 courses (narrow)",
|
|
|
|
"Lute tablature staff, 6 courses (wide)",
|
|
|
|
"Elision",
|
|
|
|
"Narrow elision",
|
|
|
|
"Wide elision",
|
|
|
|
"Baseline hyphen",
|
|
|
|
"Non-breaking baseline hyphen",
|
|
|
|
"Natural, hard b (mi)",
|
|
|
|
"Flat, soft b (fa)",
|
|
|
|
"Flat with dot",
|
|
|
|
"G clef (Corpus Monodicum)",
|
|
|
|
"Liquescence",
|
|
|
|
"Liquescent ascending (Corpus Monodicum)",
|
|
|
|
"Liquescent descending (Corpus Monodicum)",
|
|
|
|
"Natural",
|
|
|
|
"Natural with interrupted cross",
|
|
|
|
"Oriscus (Corpus Monodicum)",
|
|
|
|
"Plica",
|
|
|
|
"Punctum (Corpus Monodicum)",
|
|
|
|
"Quilisma (Corpus Monodicum)",
|
|
|
|
"Croix",
|
|
|
|
"Strophicus (Corpus Monodicum)",
|
|
|
|
"Alteration sign",
|
|
|
|
"Black mensural brevis",
|
|
|
|
"Black mensural void brevis",
|
|
|
|
"Black mensural dragma",
|
|
|
|
"Black mensural longa",
|
|
|
|
"Black mensural maxima",
|
|
|
|
"Black mensural minima",
|
|
|
|
"Black mensural void minima",
|
|
|
|
"Black mensural semibrevis",
|
|
|
|
"Black mensural semibrevis caudata",
|
|
|
|
"Black mensural oblique semibrevis",
|
|
|
|
"Black mensural void semibrevis",
|
|
|
|
"Black mensural semiminima",
|
|
|
|
"Mensural C clef",
|
|
|
|
"Petrucci C clef, high position",
|
|
|
|
"Petrucci C clef, highest position",
|
|
|
|
"Petrucci C clef, low position",
|
|
|
|
"Petrucci C clef, lowest position",
|
|
|
|
"Petrucci C clef, middle position",
|
|
|
|
"Coloration end, round",
|
|
|
|
"Coloration end, square",
|
|
|
|
"Coloration start, round",
|
|
|
|
"Coloration start, square",
|
|
|
|
"Combining stem diagonal",
|
|
|
|
"Combining stem down",
|
|
|
|
"Combining stem with extended flag down",
|
|
|
|
"Combining stem with flared flag down",
|
|
|
|
"Combining stem with fusa flag down",
|
|
|
|
"Combining stem with flag left down",
|
|
|
|
"Combining stem with flag right down",
|
|
|
|
"Combining stem with semiminima flag down",
|
|
|
|
"Combining stem up",
|
|
|
|
"Combining stem with extended flag up",
|
|
|
|
"Combining stem with flared flag up",
|
|
|
|
"Combining stem with fusa flag up",
|
|
|
|
"Combining stem with flag left up",
|
|
|
|
"Combining stem with flag right up",
|
|
|
|
"Combining stem with semiminima flag up",
|
|
|
|
"Checkmark custos",
|
|
|
|
"Mensural custos down",
|
|
|
|
"Turn-like custos",
|
|
|
|
"Mensural custos up",
|
|
|
|
"Mensural F clef",
|
|
|
|
"Petrucci F clef",
|
|
|
|
"Mensural G clef",
|
|
|
|
"Petrucci G clef",
|
|
|
|
"Modus imperfectum, vertical",
|
|
|
|
"Modus perfectum, vertical",
|
|
|
|
"Longa/brevis notehead, black",
|
|
|
|
"Longa/brevis notehead, black and void",
|
|
|
|
"Longa/brevis notehead, void",
|
|
|
|
"Longa/brevis notehead, white",
|
|
|
|
"Maxima notehead, black",
|
|
|
|
"Maxima notehead, black and void",
|
|
|
|
"Maxima notehead, void",
|
|
|
|
"Maxima notehead, white",
|
|
|
|
"Minima notehead, white",
|
|
|
|
"Semibrevis notehead, black",
|
|
|
|
"Semibrevis notehead, black and void",
|
|
|
|
"Semibrevis notehead, black and void (turned)",
|
|
|
|
"Semibrevis notehead, void",
|
|
|
|
"Semiminima/fusa notehead, white",
|
|
|
|
"Oblique form, ascending 2nd, black",
|
|
|
|
"Oblique form, ascending 2nd, black and void",
|
|
|
|
"Oblique form, ascending 2nd, void",
|
|
|
|
"Oblique form, ascending 2nd, white",
|
|
|
|
"Oblique form, ascending 3rd, black",
|
|
|
|
"Oblique form, ascending 3rd, black and void",
|
|
|
|
"Oblique form, ascending 3rd, void",
|
|
|
|
"Oblique form, ascending 3rd, white",
|
|
|
|
"Oblique form, ascending 4th, black",
|
|
|
|
"Oblique form, ascending 4th, black and void",
|
|
|
|
"Oblique form, ascending 4th, void",
|
|
|
|
"Oblique form, ascending 4th, white",
|
|
|
|
"Oblique form, ascending 5th, black",
|
|
|
|
"Oblique form, ascending 5th, black and void",
|
|
|
|
"Oblique form, ascending 5th, void",
|
|
|
|
"Oblique form, ascending 5th, white",
|
|
|
|
"Oblique form, descending 2nd, black",
|
|
|
|
"Oblique form, descending 2nd, black and void",
|
|
|
|
"Oblique form, descending 2nd, void",
|
|
|
|
"Oblique form, descending 2nd, white",
|
|
|
|
"Oblique form, descending 3rd, black",
|
|
|
|
"Oblique form, descending 3rd, black and void",
|
|
|
|
"Oblique form, descending 3rd, void",
|
|
|
|
"Oblique form, descending 3rd, white",
|
|
|
|
"Oblique form, descending 4th, black",
|
|
|
|
"Oblique form, descending 4th, black and void",
|
|
|
|
"Oblique form, descending 4th, void",
|
|
|
|
"Oblique form, descending 4th, white",
|
|
|
|
"Oblique form, descending 5th, black",
|
|
|
|
"Oblique form, descending 5th, black and void",
|
|
|
|
"Oblique form, descending 5th, void",
|
|
|
|
"Oblique form, descending 5th, white",
|
|
|
|
"Tempus perfectum cum prolatione perfecta (9/8)",
|
|
|
|
"Tempus imperfectum cum prolatione imperfecta diminution 4",
|
|
|
|
"Tempus imperfectum cum prolatione imperfecta diminution 5",
|
|
|
|
"Tempus perfectum cum prolatione imperfecta (3/4)",
|
|
|
|
"Tempus perfectum cum prolatione imperfecta diminution 1 (3/8)",
|
|
|
|
"Tempus perfectum cum prolatione perfecta diminution 2 (9/16)",
|
|
|
|
"Tempus imperfectum cum prolatione perfecta (6/8)",
|
|
|
|
"Tempus imperfectum cum prolatione imperfecta (2/4)",
|
|
|
|
"Tempus imperfectum cum prolatione imperfecta diminution 1 (2/2)",
|
|
|
|
"Tempus imperfectum cum prolatione imperfecta diminution 2 (6/16)",
|
|
|
|
"Tempus imperfectum cum prolatione imperfecta diminution 3 (2/2)",
|
|
|
|
"Combining dot",
|
|
|
|
"Combining void dot",
|
|
|
|
"Combining vertical stroke",
|
|
|
|
"Combining three dots horizontal",
|
|
|
|
"Combining three dots triangular",
|
|
|
|
"Combining two dots",
|
|
|
|
"Mensural proportion 1",
|
|
|
|
"Mensural proportion 2",
|
|
|
|
"Mensural proportion 3",
|
|
|
|
"Mensural proportion 4",
|
|
|
|
"Mensural proportion major",
|
|
|
|
"Mensural proportion minor",
|
|
|
|
"Proportio dupla 1",
|
|
|
|
"Proportio dupla 2",
|
|
|
|
"Proportio quadrupla",
|
|
|
|
"Proportio tripla",
|
|
|
|
"Tempus perfectum",
|
|
|
|
"Brevis rest",
|
|
|
|
"Fusa rest",
|
|
|
|
"Longa imperfecta rest",
|
|
|
|
"Longa perfecta rest",
|
|
|
|
"Maxima rest",
|
|
|
|
"Minima rest",
|
|
|
|
"Semibrevis rest",
|
|
|
|
"Semifusa rest",
|
|
|
|
"Semiminima rest",
|
|
|
|
"Signum congruentiae down",
|
|
|
|
"Signum congruentiae up",
|
|
|
|
"Tempus imperfectum, horizontal",
|
|
|
|
"Tempus perfectum, horizontal",
|
|
|
|
"White mensural brevis",
|
|
|
|
"White mensural fusa",
|
|
|
|
"White mensural longa",
|
|
|
|
"White mensural maxima",
|
|
|
|
"White mensural minima",
|
|
|
|
"White mensural semiminima",
|
|
|
|
"Do not copy",
|
|
|
|
"Do not photocopy",
|
|
|
|
"Eyeglasses",
|
|
|
|
"1024th note (semihemidemisemihemidemisemiquaver) stem down",
|
|
|
|
"1024th note (semihemidemisemihemidemisemiquaver) stem up",
|
|
|
|
"128th note (semihemidemisemiquaver) stem down",
|
|
|
|
"128th note (semihemidemisemiquaver) stem up",
|
|
|
|
"16th note (semiquaver) stem down",
|
|
|
|
"16th note (semiquaver) stem up",
|
|
|
|
"256th note (demisemihemidemisemiquaver) stem down",
|
|
|
|
"256th note (demisemihemidemisemiquaver) stem up",
|
|
|
|
"32nd note (demisemiquaver) stem down",
|
|
|
|
"32nd note (demisemiquaver) stem up",
|
|
|
|
"512th note (hemidemisemihemidemisemiquaver) stem down",
|
|
|
|
"512th note (hemidemisemihemidemisemiquaver) stem up",
|
|
|
|
"64th note (hemidemisemiquaver) stem down",
|
|
|
|
"64th note (hemidemisemiquaver) stem up",
|
|
|
|
"Eighth note (quaver) stem down",
|
|
|
|
"Eighth note (quaver) stem up",
|
|
|
|
"A (black note)",
|
|
|
|
"A flat (black note)",
|
|
|
|
"A flat (half note)",
|
|
|
|
"A flat (whole note)",
|
|
|
|
"A (half note)",
|
|
|
|
"A sharp (black note)",
|
|
|
|
"A sharp (half note)",
|
|
|
|
"A sharp (whole note)",
|
|
|
|
"A (whole note)",
|
|
|
|
"B (black note)",
|
|
|
|
"B flat (black note)",
|
|
|
|
"B flat (half note)",
|
|
|
|
"B flat (whole note)",
|
|
|
|
"B (half note)",
|
|
|
|
"B sharp (black note)",
|
|
|
|
"B sharp (half note)",
|
|
|
|
"B sharp (whole note)",
|
|
|
|
"B (whole note)",
|
|
|
|
"C (black note)",
|
|
|
|
"C flat (black note)",
|
|
|
|
"C flat (half note)",
|
|
|
|
"C flat (whole note)",
|
|
|
|
"C (half note)",
|
|
|
|
"C sharp (black note)",
|
|
|
|
"C sharp (half note)",
|
|
|
|
"C sharp (whole note)",
|
|
|
|
"C (whole note)",
|
|
|
|
"D (black note)",
|
|
|
|
"D flat (black note)",
|
|
|
|
"D flat (half note)",
|
|
|
|
"D flat (whole note)",
|
|
|
|
"D (half note)",
|
|
|
|
"D sharp (black note)",
|
|
|
|
"D sharp (half note)",
|
|
|
|
"D sharp (whole note)",
|
|
|
|
"D (whole note)",
|
|
|
|
"Do (black note)",
|
|
|
|
"Do (half note)",
|
|
|
|
"Do (whole note)",
|
|
|
|
"Double whole note (breve)",
|
|
|
|
"Double whole note (square)",
|
|
|
|
"E (black note)",
|
|
|
|
"E flat (black note)",
|
|
|
|
"E flat (half note)",
|
|
|
|
"E flat (whole note)",
|
|
|
|
"E (half note)",
|
|
|
|
"E sharp (black note)",
|
|
|
|
"E sharp (half note)",
|
|
|
|
"E sharp (whole note)",
|
|
|
|
"E (whole note)",
|
|
|
|
"Empty black note",
|
|
|
|
"Empty half note",
|
|
|
|
"Empty whole note",
|
|
|
|
"F (black note)",
|
|
|
|
"F flat (black note)",
|
|
|
|
"F flat (half note)",
|
|
|
|
"F flat (whole note)",
|
|
|
|
"F (half note)",
|
|
|
|
"F sharp (black note)",
|
|
|
|
"F sharp (half note)",
|
|
|
|
"F sharp (whole note)",
|
|
|
|
"F (whole note)",
|
|
|
|
"Fa (black note)",
|
|
|
|
"Fa (half note)",
|
|
|
|
"Fa (whole note)",
|
|
|
|
"G (black note)",
|
|
|
|
"G flat (black note)",
|
|
|
|
"G flat (half note)",
|
|
|
|
"G flat (whole note)",
|
|
|
|
"G (half note)",
|
|
|
|
"G sharp (black note)",
|
|
|
|
"G sharp (half note)",
|
|
|
|
"G sharp (whole note)",
|
|
|
|
"G (whole note)",
|
|
|
|
"H (black note)",
|
|
|
|
"H (half note)",
|
|
|
|
"H sharp (black note)",
|
|
|
|
"H sharp (half note)",
|
|
|
|
"H sharp (whole note)",
|
|
|
|
"H (whole note)",
|
|
|
|
"Half note (minim) stem down",
|
|
|
|
"Half note (minim) stem up",
|
|
|
|
"La (black note)",
|
|
|
|
"La (half note)",
|
|
|
|
"La (whole note)",
|
|
|
|
"Mi (black note)",
|
|
|
|
"Mi (half note)",
|
|
|
|
"Mi (whole note)",
|
|
|
|
"Quarter note (crotchet) stem down",
|
|
|
|
"Quarter note (crotchet) stem up",
|
|
|
|
"Re (black note)",
|
|
|
|
"Re (half note)",
|
|
|
|
"Re (whole note)",
|
|
|
|
"Arrowhead left black (Funk 7-shape re)",
|
|
|
|
"Arrowhead left white (Funk 7-shape re)",
|
|
|
|
"Diamond black (4-shape mi; 7-shape mi)",
|
|
|
|
"Diamond white (4-shape mi; 7-shape mi)",
|
|
|
|
"Isosceles triangle black (Walker 7-shape ti)",
|
|
|
|
"Isosceles triangle white (Walker 7-shape ti)",
|
|
|
|
"Inverted keystone black (Walker 7-shape do)",
|
|
|
|
"Inverted keystone white (Walker 7-shape do)",
|
|
|
|
"Moon black (Aikin 7-shape re)",
|
|
|
|
"Moon left black (Funk 7-shape do)",
|
|
|
|
"Moon left white (Funk 7-shape do)",
|
|
|
|
"Moon white (Aikin 7-shape re)",
|
|
|
|
"Quarter moon black (Walker 7-shape re)",
|
|
|
|
"Quarter moon white (Walker 7-shape re)",
|
|
|
|
"Round black (4-shape sol; 7-shape so)",
|
|
|
|
"Round white (4-shape sol; 7-shape so)",
|
|
|
|
"Square black (4-shape la; Aiken 7-shape la)",
|
|
|
|
"Square white (4-shape la; Aiken 7-shape la)",
|
|
|
|
"Triangle left black (stem up; 4-shape fa; 7-shape fa)",
|
|
|
|
"Triangle left white (stem up; 4-shape fa; 7-shape fa)",
|
|
|
|
"Triangle right black (stem down; 4-shape fa; 7-shape fa)",
|
|
|
|
"Triangle right white (stem down; 4-shape fa; 7-shape fa)",
|
|
|
|
"Triangle-round black (Aikin 7-shape ti)",
|
|
|
|
"Triangle-round left black (Funk 7-shape ti)",
|
|
|
|
"Triangle-round left white (Funk 7-shape ti)",
|
|
|
|
"Triangle-round white (Aikin 7-shape ti)",
|
|
|
|
"Triangle up black (Aikin 7-shape do)",
|
|
|
|
"Triangle up white (Aikin 7-shape do)",
|
|
|
|
"Si (black note)",
|
|
|
|
"Si (half note)",
|
|
|
|
"Si (whole note)",
|
|
|
|
"So (black note)",
|
|
|
|
"So (half note)",
|
|
|
|
"So (whole note)",
|
|
|
|
"Ti (black note)",
|
|
|
|
"Ti (half note)",
|
|
|
|
"Ti (whole note)",
|
|
|
|
"Whole note (semibreve)",
|
|
|
|
"Black notehead",
|
|
|
|
"Circle slash notehead",
|
|
|
|
"Circle X notehead",
|
|
|
|
"Circle X double whole",
|
|
|
|
"Circle X half",
|
|
|
|
"Circle X whole",
|
|
|
|
"Circled black notehead",
|
|
|
|
"Circled double whole notehead",
|
|
|
|
"Circled half notehead",
|
|
|
|
"Circled whole notehead",
|
|
|
|
"Double whole note cluster, 2nd",
|
|
|
|
"Double whole note cluster, 3rd",
|
|
|
|
"Combining double whole note cluster, bottom",
|
|
|
|
"Combining double whole note cluster, middle",
|
|
|
|
"Combining double whole note cluster, top",
|
|
|
|
"Half note cluster, 2nd",
|
|
|
|
"Half note cluster, 3rd",
|
|
|
|
"Combining half note cluster, bottom",
|
|
|
|
"Combining half note cluster, middle",
|
|
|
|
"Combining half note cluster, top",
|
|
|
|
"Quarter note cluster, 2nd",
|
|
|
|
"Quarter note cluster, 3rd",
|
|
|
|
"Combining quarter note cluster, bottom",
|
|
|
|
"Combining quarter note cluster, middle",
|
|
|
|
"Combining quarter note cluster, top",
|
|
|
|
"Cluster notehead black (round)",
|
|
|
|
"Cluster notehead white (round)",
|
|
|
|
"Cluster notehead black (square)",
|
|
|
|
"Cluster notehead white (square)",
|
|
|
|
"Whole note cluster, 2nd",
|
|
|
|
"Whole note cluster, 3rd",
|
|
|
|
"Combining whole note cluster, bottom",
|
|
|
|
"Combining whole note cluster, middle",
|
|
|
|
"Combining whole note cluster, top",
|
|
|
|
"Diamond black notehead",
|
|
|
|
"Diamond black notehead (old)",
|
|
|
|
"Diamond black notehead (wide)",
|
|
|
|
"Black diamond cluster, 2nd",
|
|
|
|
"Black diamond cluster, 3rd",
|
|
|
|
"Combining black diamond cluster, bottom",
|
|
|
|
"Combining black diamond cluster, middle",
|
|
|
|
"Combining black diamond cluster, top",
|
|
|
|
"White diamond cluster, 2nd",
|
|
|
|
"White diamond cluster, 3rd",
|
|
|
|
"Combining white diamond cluster, bottom",
|
|
|
|
"Combining white diamond cluster, middle",
|
|
|
|
"Combining white diamond cluster, top",
|
|
|
|
"Diamond double whole notehead",
|
|
|
|
"Diamond double whole notehead (old)",
|
|
|
|
"Diamond half notehead",
|
|
|
|
"Half-filled diamond notehead",
|
|
|
|
"Diamond half notehead (old)",
|
|
|
|
"Diamond half notehead (wide)",
|
|
|
|
"Open diamond notehead",
|
|
|
|
"Diamond white notehead",
|
|
|
|
"Diamond white notehead (wide)",
|
|
|
|
"Diamond whole notehead",
|
|
|
|
"Diamond whole notehead (old)",
|
|
|
|
"Double whole (breve) notehead",
|
|
|
|
"Double whole (breve) notehead (square)",
|
|
|
|
"Double whole notehead with X",
|
|
|
|
"Half (minim) notehead",
|
|
|
|
"Filled half (minim) notehead",
|
|
|
|
"Half notehead with X",
|
|
|
|
"Heavy X notehead",
|
|
|
|
"Heavy X with hat notehead",
|
|
|
|
"Large arrow down (lowest pitch) black notehead",
|
|
|
|
"Large arrow down (lowest pitch) double whole notehead",
|
|
|
|
"Large arrow down (lowest pitch) half notehead",
|
|
|
|
"Large arrow down (lowest pitch) whole notehead",
|
|
|
|
"Large arrow up (highest pitch) black notehead",
|
|
|
|
"Large arrow up (highest pitch) double whole notehead",
|
|
|
|
"Large arrow up (highest pitch) half notehead",
|
|
|
|
"Large arrow up (highest pitch) whole notehead",
|
|
|
|
"Moon notehead black",
|
|
|
|
"Moon notehead white",
|
|
|
|
"Null notehead",
|
|
|
|
"Parenthesis notehead",
|
|
|
|
"Opening parenthesis",
|
|
|
|
"Closing parenthesis",
|
|
|
|
"Plus notehead black",
|
|
|
|
"Plus notehead double whole",
|
|
|
|
"Plus notehead half",
|
|
|
|
"Plus notehead whole",
|
|
|
|
"Combining black rectangular cluster, bottom",
|
|
|
|
"Combining black rectangular cluster, middle",
|
|
|
|
"Combining black rectangular cluster, top",
|
|
|
|
"Combining white rectangular cluster, bottom",
|
|
|
|
"Combining white rectangular cluster, middle",
|
|
|
|
"Combining white rectangular cluster, top",
|
|
|
|
"Round black notehead",
|
|
|
|
"Large round black notehead",
|
|
|
|
"Round black notehead, slashed",
|
|
|
|
"Large round black notehead, slashed",
|
|
|
|
"Round white notehead",
|
|
|
|
"Large round white notehead",
|
|
|
|
"Round white notehead, slashed",
|
|
|
|
"Large round white notehead, slashed",
|
|
|
|
"Round white notehead with dot",
|
|
|
|
"Large round white notehead with dot",
|
|
|
|
"Large white diamond",
|
|
|
|
"Slash with horizontal ends",
|
|
|
|
"Muted slash with horizontal ends",
|
|
|
|
"Slash with vertical ends",
|
|
|
|
"Muted slash with vertical ends",
|
|
|
|
"Small slash with vertical ends",
|
|
|
|
"White slash half",
|
|
|
|
"Muted white slash",
|
|
|
|
"White slash whole",
|
|
|
|
"Large X notehead",
|
|
|
|
"Slashed black notehead (bottom left to top right)",
|
|
|
|
"Slashed black notehead (top left to bottom right)",
|
|
|
|
"Slashed double whole notehead (bottom left to top right)",
|
|
|
|
"Slashed double whole notehead (top left to bottom right)",
|
|
|
|
"Slashed half notehead (bottom left to top right)",
|
|
|
|
"Slashed half notehead (top left to bottom right)",
|
|
|
|
"Slashed whole notehead (bottom left to top right)",
|
|
|
|
"Slashed whole notehead (top left to bottom right)",
|
|
|
|
"Square notehead black",
|
|
|
|
"Large square black notehead",
|
|
|
|
"Large square white notehead",
|
|
|
|
"Square notehead white",
|
|
|
|
"Triangle notehead down black",
|
|
|
|
"Triangle notehead down double whole",
|
|
|
|
"Triangle notehead down half",
|
|
|
|
"Triangle notehead down white",
|
|
|
|
"Triangle notehead down whole",
|
|
|
|
"Triangle notehead left black",
|
|
|
|
"Triangle notehead left white",
|
|
|
|
"Triangle notehead right black",
|
|
|
|
"Triangle notehead right white",
|
|
|
|
"Triangle-round notehead down black",
|
|
|
|
"Triangle-round notehead down white",
|
|
|
|
"Triangle notehead up black",
|
|
|
|
"Triangle notehead up double whole",
|
|
|
|
"Triangle notehead up half",
|
|
|
|
"Triangle notehead up right black",
|
|
|
|
"Triangle notehead up right white",
|
|
|
|
"Triangle notehead up white",
|
|
|
|
"Triangle notehead up whole",
|
|
|
|
"Void notehead with X",
|
|
|
|
"Whole (semibreve) notehead",
|
|
|
|
"Filled whole (semibreve) notehead",
|
|
|
|
"Whole notehead with X",
|
|
|
|
"X notehead black",
|
|
|
|
"X notehead double whole",
|
|
|
|
"X notehead half",
|
|
|
|
"Ornate X notehead",
|
|
|
|
"X notehead whole",
|
|
|
|
"Left parenthesis for octave signs",
|
|
|
|
"Right parenthesis for octave signs",
|
|
|
|
"Ornament bottom left concave stroke",
|
|
|
|
"Ornament bottom left concave stroke, large",
|
|
|
|
"Ornament bottom left convex stroke",
|
|
|
|
"Ornament bottom right concave stroke",
|
|
|
|
"Ornament bottom right convex stroke",
|
|
|
|
"Comma",
|
|
|
|
"Double oblique straight lines NW-SE",
|
|
|
|
"Double oblique straight lines SW-NE",
|
|
|
|
"Curve below",
|
|
|
|
"Haydn ornament",
|
|
|
|
"Ornament high left concave stroke",
|
|
|
|
"Ornament high left convex stroke",
|
|
|
|
"Ornament high right concave stroke",
|
|
|
|
"Ornament high right convex stroke",
|
|
|
|
"Hook after note",
|
|
|
|
"Hook before note",
|
|
|
|
"Left-facing half circle",
|
|
|
|
"Left-facing hook",
|
|
|
|
"Ornament left +",
|
|
|
|
"Ornament left shake t",
|
|
|
|
"Ornament left vertical stroke",
|
|
|
|
"Ornament left vertical stroke with cross (+)",
|
|
|
|
"Ornament low left concave stroke",
|
|
|
|
"Ornament low left convex stroke",
|
|
|
|
"Ornament low right concave stroke",
|
|
|
|
"Ornament low right convex stroke",
|
|
|
|
"Ornament middle vertical stroke",
|
|
|
|
"Mordent",
|
|
|
|
"Inverted mordent",
|
|
|
|
"Oblique straight line NW-SE",
|
|
|
|
"Oblique straight line SW-NE",
|
|
|
|
"Oblique straight line tilted NW-SE",
|
|
|
|
"Oblique straight line tilted SW-NE",
|
|
|
|
"Oriscus",
|
|
|
|
"Port de voix",
|
|
|
|
"Supported appoggiatura trill",
|
|
|
|
"Supported appoggiatura trill with two-note suffix",
|
|
|
|
"Cadence",
|
|
|
|
"Cadence with upper prefix",
|
|
|
|
"Cadence with upper prefix and turn",
|
|
|
|
"Cadence with turn",
|
|
|
|
"Descending slide",
|
|
|
|
"Double cadence with lower prefix",
|
|
|
|
"Double cadence with upper prefix",
|
|
|
|
"Double cadence with upper prefix and turn",
|
|
|
|
"Inverted mordent with upper prefix",
|
|
|
|
"Mordent with release",
|
|
|
|
"Mordent with upper prefix",
|
|
|
|
"Pre-beat port de voix follwed by multiple mordent (Dandrieu)",
|
|
|
|
"Slide",
|
|
|
|
"Slide-trill with two-note suffix (J.S. Bach)",
|
|
|
|
"Slide-trill (D'Anglebert)",
|
|
|
|
"Slide-trill with one-note suffix (Marpurg)",
|
|
|
|
"Slide-trill (Muffat)",
|
|
|
|
"Slide-trill with two-note suffix (Muffat)",
|
|
|
|
"Trill with lower suffix",
|
|
|
|
"Trill with two-note suffix (Dandrieu)",
|
|
|
|
"Trill with mordent",
|
|
|
|
"Turn-trill with two-note suffix (J.S. Bach)",
|
|
|
|
"Turn-trill (D'Anglebert)",
|
|
|
|
"Quilisma",
|
|
|
|
"Right-facing half circle",
|
|
|
|
"Right-facing hook",
|
|
|
|
"Ornament right vertical stroke",
|
|
|
|
"Schleifer (long mordent)",
|
|
|
|
"Shake",
|
|
|
|
"Shake (Muffat)",
|
|
|
|
"Short oblique straight line NW-SE",
|
|
|
|
"Short oblique straight line SW-NE",
|
|
|
|
"Ornament top left concave stroke",
|
|
|
|
"Ornament top left convex stroke",
|
|
|
|
"Ornament top right concave stroke",
|
|
|
|
"Ornament top right convex stroke",
|
|
|
|
"Tremblement",
|
|
|
|
"Trill",
|
|
|
|
"Turn",
|
|
|
|
"Inverted turn",
|
|
|
|
"Turn with slash",
|
|
|
|
"Turn up",
|
|
|
|
"Inverted turn up",
|
|
|
|
"Curve above",
|
|
|
|
"Vertical line",
|
|
|
|
"Ornament zig-zag line without right-hand end",
|
|
|
|
"Ornament zig-zag line with right-hand end",
|
|
|
|
"Ottava",
|
|
|
|
"Ottava alta",
|
|
|
|
"Ottava bassa",
|
|
|
|
"Ottava bassa (ba)",
|
|
|
|
"Penderecki unmeasured tremolo",
|
|
|
|
"Agogo",
|
|
|
|
"Almglocken",
|
|
|
|
"Anvil",
|
|
|
|
"Bamboo tube chimes",
|
|
|
|
"Bamboo scraper",
|
|
|
|
"Bass drum",
|
|
|
|
"Bass drum on side",
|
|
|
|
"Bow",
|
|
|
|
"Brass mallets down",
|
|
|
|
"Brass mallets up",
|
|
|
|
"Combining dashed circle for round beaters (plated)",
|
|
|
|
"Combining parentheses for round beaters (padded)",
|
|
|
|
"Double bass drum stick down",
|
|
|
|
"Double bass drum stick up",
|
|
|
|
"Finger",
|
|
|
|
"Fingernails",
|
|
|
|
"Fist",
|
|
|
|
"Guiro scraper",
|
|
|
|
"Hammer",
|
|
|
|
"Metal hammer, down",
|
|
|
|
"Metal hammer, up",
|
|
|
|
"Plastic hammer, down",
|
|
|
|
"Plastic hammer, up",
|
|
|
|
"Wooden hammer, down",
|
|
|
|
"Wooden hammer, up",
|
|
|
|
"Hand",
|
|
|
|
"Hard bass drum stick down",
|
|
|
|
"Hard bass drum stick up",
|
|
|
|
"Hard glockenspiel stick down",
|
|
|
|
"Hard glockenspiel stick left",
|
|
|
|
"Hard glockenspiel stick right",
|
|
|
|
"Hard glockenspiel stick up",
|
|
|
|
"Hard timpani stick down",
|
|
|
|
"Hard timpani stick left",
|
|
|
|
"Hard timpani stick right",
|
|
|
|
"Hard timpani stick up",
|
|
|
|
"Hard xylophone stick down",
|
|
|
|
"Hard xylophone stick left",
|
|
|
|
"Hard xylophone stick right",
|
|
|
|
"Hard xylophone stick up",
|
|
|
|
"Hard yarn beater down",
|
|
|
|
"Hard yarn beater left",
|
|
|
|
"Hard yarn beater right",
|
|
|
|
"Hard yarn beater up",
|
|
|
|
"Jazz sticks down",
|
|
|
|
"Jazz sticks up",
|
|
|
|
"Knitting needle",
|
|
|
|
"Chime hammer",
|
|
|
|
"Medium bass drum stick down",
|
|
|
|
"Medium bass drum stick up",
|
|
|
|
"Medium timpani stick down",
|
|
|
|
"Medium timpani stick left",
|
|
|
|
"Medium timpani stick right",
|
|
|
|
"Medium timpani stick up",
|
|
|
|
"Medium xylophone stick down",
|
|
|
|
"Medium xylophone stick left",
|
|
|
|
"Medium xylophone stick right",
|
|
|
|
"Medium xylophone stick up",
|
|
|
|
"Medium yarn beater down",
|
|
|
|
"Medium yarn beater left",
|
|
|
|
"Medium yarn beater right",
|
|
|
|
"Medium yarn beater up",
|
|
|
|
"Metal bass drum stick down",
|
|
|
|
"Metal bass drum stick up",
|
|
|
|
"Metal beater down",
|
|
|
|
"Metal hammer",
|
|
|
|
"Metal beater, left",
|
|
|
|
"Metal beater, right",
|
|
|
|
"Metal beater, up",
|
|
|
|
"Snare sticks down",
|
|
|
|
"Snare sticks up",
|
|
|
|
"Soft bass drum stick down",
|
|
|
|
"Soft bass drum stick up",
|
|
|
|
"Soft glockenspiel stick down",
|
|
|
|
"Soft glockenspiel stick left",
|
|
|
|
"Soft glockenspiel stick right",
|
|
|
|
"Soft glockenspiel stick up",
|
|
|
|
"Soft timpani stick down",
|
|
|
|
"Soft timpani stick left",
|
|
|
|
"Soft timpani stick right",
|
|
|
|
"Soft timpani stick up",
|
|
|
|
"Soft xylophone beaters",
|
|
|
|
"Soft xylophone stick down",
|
|
|
|
"Soft xylophone stick left",
|
|
|
|
"Soft xylophone stick right",
|
|
|
|
"Soft xylophone stick up",
|
|
|
|
"Soft yarn beater down",
|
|
|
|
"Soft yarn beater left",
|
|
|
|
"Soft yarn beater right",
|
|
|
|
"Soft yarn beater up",
|
|
|
|
"Spoon-shaped wooden mallet",
|
|
|
|
"Superball beater down",
|
|
|
|
"Superball beater left",
|
|
|
|
"Superball beater right",
|
|
|
|
"Superball beater up",
|
|
|
|
"Triangle beater down",
|
|
|
|
"Triangle beater up",
|
|
|
|
"Wire brushes down",
|
|
|
|
"Wire brushes up",
|
|
|
|
"Wood timpani stick down",
|
|
|
|
"Wood timpani stick left",
|
|
|
|
"Wood timpani stick right",
|
|
|
|
"Wood timpani stick up",
|
|
|
|
"Wood xylophone stick down",
|
|
|
|
"Wood xylophone stick left",
|
|
|
|
"Wood xylophone stick right",
|
|
|
|
"Wood xylophone stick up",
|
|
|
|
"Bell",
|
|
|
|
"Edge of cymbal",
|
|
|
|
"Bell plate",
|
|
|
|
"Bell tree",
|
|
|
|
"Bird whistle",
|
|
|
|
"Board clapper",
|
|
|
|
"Bongos",
|
|
|
|
"Brake drum",
|
|
|
|
"Cabasa",
|
|
|
|
"Cannon",
|
|
|
|
"Car horn",
|
|
|
|
"Castanets",
|
|
|
|
"Castanets with handle",
|
|
|
|
"Celesta",
|
|
|
|
"Cencerro",
|
|
|
|
"Center (Weinberg)",
|
|
|
|
"Center (Ghent)",
|
|
|
|
"Center (Caltabiano)",
|
|
|
|
"Chain rattle",
|
|
|
|
"Chimes",
|
|
|
|
"Chinese cymbal",
|
|
|
|
"Choke (Weinberg)",
|
|
|
|
"Claves",
|
|
|
|
"Coins",
|
|
|
|
"Conga",
|
|
|
|
"Cow bell",
|
|
|
|
"Crash cymbals",
|
|
|
|
"Crotales",
|
|
|
|
"Combining crush for stem",
|
|
|
|
"Cuica",
|
|
|
|
"Cymbal tongs",
|
|
|
|
"Damp",
|
|
|
|
"Damp 2",
|
|
|
|
"Damp 3",
|
|
|
|
"Damp 4",
|
|
|
|
"Combining X for stem (dead note)",
|
|
|
|
"Drum stick",
|
|
|
|
"Duck call",
|
|
|
|
"Bell of cymbal",
|
|
|
|
"Empty trapezoid",
|
|
|
|
"Finger cymbals",
|
|
|
|
"Flexatone",
|
|
|
|
"Football rattle",
|
|
|
|
"Glass harmonica",
|
|
|
|
"Glass harp",
|
|
|
|
"Glass plate chimes",
|
|
|
|
"Glass tube chimes",
|
|
|
|
"Glockenspiel",
|
|
|
|
"Glockenspiel (Smith Brindle)",
|
|
|
|
"Goblet drum (djembe, dumbek)",
|
|
|
|
"Gong",
|
|
|
|
"Gong with button (nipple)",
|
|
|
|
"Guiro",
|
|
|
|
"Hard gum beater, down",
|
|
|
|
"Hard gum beater, left",
|
|
|
|
"Hard gum beater, right",
|
|
|
|
"Hard gum beater, up",
|
|
|
|
"Medium gum beater, down",
|
|
|
|
"Medium gum beater, left",
|
|
|
|
"Medium gum beater, right",
|
|
|
|
"Medium gum beater, up",
|
|
|
|
"Soft gum beater, down",
|
|
|
|
"Soft gum beater, left",
|
|
|
|
"Soft gum beater, right",
|
|
|
|
"Soft gum beater, up",
|
|
|
|
"Half-open",
|
|
|
|
"Half-open 2 (Weinberg)",
|
|
|
|
"Handbell",
|
|
|
|
"Hi-hat",
|
|
|
|
"Hi-hat cymbals on stand",
|
|
|
|
"Jaw harp",
|
|
|
|
"Jingle bells",
|
|
|
|
"Klaxon horn",
|
|
|
|
"Right hand (Agostini)",
|
|
|
|
"Lion's roar",
|
|
|
|
"Lithophone",
|
|
|
|
"Log drum",
|
|
|
|
"Lotus flute",
|
|
|
|
"Marimba",
|
|
|
|
"Marimba (Smith Brindle)",
|
|
|
|
"Maraca",
|
|
|
|
"Maracas",
|
|
|
|
"Megaphone",
|
|
|
|
"Metal plate chimes",
|
|
|
|
"Metal tube chimes",
|
|
|
|
"Musical saw",
|
|
|
|
"Normal position (Caltabiano)",
|
|
|
|
"On rim",
|
|
|
|
"Open",
|
|
|
|
"Closed / rim shot",
|
|
|
|
"Pistol shot",
|
|
|
|
"Police whistle",
|
|
|
|
"Quijada (jawbone)",
|
|
|
|
"Rainstick",
|
|
|
|
"Ratchet",
|
|
|
|
"Reco-reco",
|
|
|
|
"Left hand (Agostini)",
|
|
|
|
"Rim or edge (Weinberg)",
|
|
|
|
"Rim (Ghent)",
|
|
|
|
"Rim (Caltabiano)",
|
|
|
|
"Rim shot (on stem)",
|
|
|
|
"Sandpaper blocks",
|
|
|
|
"Scrape around rim",
|
|
|
|
"Scrape from center to edge",
|
|
|
|
"Scrape from edge to center",
|
|
|
|
"Shell bells",
|
|
|
|
"Shell chimes",
|
|
|
|
"Siren",
|
|
|
|
"Sistrum",
|
|
|
|
"Sizzle cymbal",
|
|
|
|
"Sleigh bell",
|
|
|
|
"Slide brush on gong",
|
|
|
|
"Slide whistle",
|
|
|
|
"Slit drum",
|
|
|
|
"Snare drum",
|
|
|
|
"Military snare drum",
|
|
|
|
"Snare drum, snares off",
|
|
|
|
"Steel drums",
|
|
|
|
"Stick shot",
|
|
|
|
"Superball",
|
|
|
|
"Suspended cymbal",
|
|
|
|
"Combining swish for stem",
|
|
|
|
"Indian tabla",
|
|
|
|
"Tam-tam",
|
|
|
|
"Tam-tam with beater (Smith Brindle)",
|
|
|
|
"Tambourine",
|
|
|
|
"Temple blocks",
|
|
|
|
"Tenor drum",
|
|
|
|
"Thundersheet",
|
|
|
|
"Timbales",
|
|
|
|
"Timpani",
|
|
|
|
"Tom-tom",
|
|
|
|
"Chinese tom-tom",
|
|
|
|
"Indo-American tom tom",
|
|
|
|
"Japanese tom-tom",
|
|
|
|
"Triangle",
|
|
|
|
"Tubaphone",
|
|
|
|
"Tubular bells",
|
|
|
|
"Combining turn left for stem",
|
|
|
|
"Combining turn left or right for stem",
|
|
|
|
"Combining turn right for stem",
|
|
|
|
"Vibraphone",
|
|
|
|
"Metallophone (vibraphone motor off)",
|
|
|
|
"Vibraphone (Smith Brindle)",
|
|
|
|
"Vibraslap",
|
|
|
|
"Vietnamese hat cymbal",
|
|
|
|
"Whip",
|
|
|
|
"Wind chimes (glass)",
|
|
|
|
"Wind machine",
|
|
|
|
"Wind whistle (or mouth siren)",
|
|
|
|
"Wood block",
|
|
|
|
"Wound beater, hard core down",
|
|
|
|
"Wound beater, hard core left",
|
|
|
|
"Wound beater, hard core right",
|
|
|
|
"Wound beater, hard core up",
|
|
|
|
"Wound beater, soft core down",
|
|
|
|
"Wound beater, soft core left",
|
|
|
|
"Wound beater, soft core right",
|
|
|
|
"Wound beater, soft core up",
|
|
|
|
"Xylophone",
|
|
|
|
"Bass xylophone",
|
|
|
|
"Xylophone (Smith Brindle)",
|
|
|
|
"Tenor xylophone",
|
|
|
|
"Trough tenor xylophone",
|
|
|
|
"Trough xylophone",
|
|
|
|
"Buzz pizzicato",
|
|
|
|
"Damp",
|
|
|
|
"Damp all",
|
|
|
|
"Damp (on stem)",
|
|
|
|
"Fingernail flick",
|
|
|
|
"Left-hand pizzicato",
|
|
|
|
"Plectrum",
|
|
|
|
"Snap pizzicato above",
|
|
|
|
"Snap pizzicato below",
|
|
|
|
"With fingernails",
|
|
|
|
"Quindicesima",
|
|
|
|
"Quindicesima alta",
|
|
|
|
"Quindicesima bassa",
|
|
|
|
"Repeat last bar",
|
|
|
|
"Repeat last two bars",
|
|
|
|
"Repeat last four bars",
|
|
|
|
"Single repeat dot",
|
|
|
|
"Repeat dots",
|
|
|
|
"Left (start) repeat sign",
|
|
|
|
"Right (end) repeat sign",
|
|
|
|
"Right and left repeat sign",
|
|
|
|
"1024th rest",
|
|
|
|
"128th (semihemidemisemiquaver) rest",
|
|
|
|
"16th (semiquaver) rest",
|
|
|
|
"256th rest",
|
|
|
|
"32nd (demisemiquaver) rest",
|
|
|
|
"512th rest",
|
|
|
|
"64th (hemidemisemiquaver) rest",
|
|
|
|
"Eighth (quaver) rest",
|
|
|
|
"Double whole (breve) rest",
|
|
|
|
"Double whole rest on leger lines",
|
|
|
|
"Multiple measure rest",
|
|
|
|
"H-bar, left half",
|
|
|
|
"H-bar, middle",
|
|
|
|
"H-bar, right half",
|
|
|
|
"Half (minim) rest",
|
|
|
|
"Half rest on leger line",
|
|
|
|
"Longa rest",
|
|
|
|
"Maxima rest",
|
|
|
|
"Quarter (crotchet) rest",
|
|
|
|
"Old-style quarter (crotchet) rest",
|
|
|
|
"Whole (semibreve) rest",
|
|
|
|
"Whole rest on leger line",
|
|
|
|
"Reversed brace",
|
|
|
|
"Reversed bracket bottom",
|
|
|
|
"Reversed bracket top",
|
|
|
|
"Right repeat sign within bar",
|
|
|
|
"Segno",
|
|
|
|
"Segno (serpent)",
|
|
|
|
"Segno (serpent with vertical lines)",
|
|
|
|
"Semi-pitched percussion clef 1",
|
|
|
|
"Semi-pitched percussion clef 2",
|
|
|
|
"Flat",
|
|
|
|
"Flat (white)",
|
|
|
|
"Double flat history sign",
|
|
|
|
"Double sharp history sign",
|
|
|
|
"Flat history sign",
|
|
|
|
"Sharp history sign",
|
|
|
|
"Natural (N)",
|
|
|
|
"Sharp",
|
|
|
|
"Sharp (white)",
|
|
|
|
"Split bar divider (bar spans a system break)",
|
|
|
|
"1-line staff",
|
|
|
|
"1-line staff (narrow)",
|
|
|
|
"1-line staff (wide)",
|
|
|
|
"2-line staff",
|
|
|
|
"2-line staff (narrow)",
|
|
|
|
"2-line staff (wide)",
|
|
|
|
"3-line staff",
|
|
|
|
"3-line staff (narrow)",
|
|
|
|
"3-line staff (wide)",
|
|
|
|
"4-line staff",
|
|
|
|
"4-line staff (narrow)",
|
|
|
|
"4-line staff (wide)",
|
|
|
|
"5-line staff",
|
|
|
|
"5-line staff (narrow)",
|
|
|
|
"5-line staff (wide)",
|
|
|
|
"6-line staff",
|
|
|
|
"6-line staff (narrow)",
|
|
|
|
"6-line staff (wide)",
|
|
|
|
"Staff divide arrow down",
|
|
|
|
"Staff divide arrow up",
|
|
|
|
"Staff divide arrows",
|
|
|
|
"Lower 1 staff position",
|
|
|
|
"Lower 2 staff positions",
|
|
|
|
"Lower 3 staff positions",
|
|
|
|
"Lower 4 staff positions",
|
|
|
|
"Lower 5 staff positions",
|
|
|
|
"Lower 6 staff positions",
|
|
|
|
"Lower 7 staff positions",
|
|
|
|
"Lower 8 staff positions",
|
|
|
|
"Raise 1 staff position",
|
|
|
|
"Raise 2 staff positions",
|
|
|
|
"Raise 3 staff positions",
|
|
|
|
"Raise 4 staff positions",
|
|
|
|
"Raise 5 staff positions",
|
|
|
|
"Raise 6 staff positions",
|
|
|
|
"Raise 7 staff positions",
|
|
|
|
"Raise 8 staff positions",
|
|
|
|
"Combining stem",
|
|
|
|
"Combining bow on bridge stem",
|
|
|
|
"Combining bow on tailpiece stem",
|
|
|
|
"Combining buzz roll stem",
|
|
|
|
"Combining damp stem",
|
|
|
|
"Combining harp string noise stem",
|
|
|
|
"Combining multiphonics (black) stem",
|
|
|
|
"Combining multiphonics (black and white) stem",
|
|
|
|
"Combining multiphonics (white) stem",
|
|
|
|
"Combining Penderecki unmeasured tremolo stem",
|
|
|
|
"Combining rim shot stem",
|
|
|
|
"Combining sprechgesang stem",
|
|
|
|
"Combining sul ponticello (bow behind bridge) stem",
|
|
|
|
"Combining sussurando stem",
|
|
|
|
"Combining swished stem",
|
|
|
|
"Combining vibrato pulse accent (Saunders) stem",
|
|
|
|
"Bow behind bridge (sul ponticello)",
|
|
|
|
"Bow on top of bridge",
|
|
|
|
"Bow on tailpiece",
|
|
|
|
"Change bow direction, indeterminate",
|
|
|
|
"Down bow",
|
|
|
|
"Turned down bow",
|
|
|
|
"Fouett\u00e9",
|
|
|
|
"Half-harmonic",
|
|
|
|
"Harmonic",
|
|
|
|
"Jet\u00e9 (gettato) above",
|
|
|
|
"Jet\u00e9 (gettato) below",
|
|
|
|
"Mute off",
|
|
|
|
"Mute on",
|
|
|
|
"Overpressure, down bow",
|
|
|
|
"Overpressure, no bow direction",
|
|
|
|
"Overpressure possibile, down bow",
|
|
|
|
"Overpressure possibile, up bow",
|
|
|
|
"Overpressure, up bow",
|
|
|
|
"Thumb position",
|
|
|
|
"Up bow",
|
|
|
|
"Turned up bow",
|
|
|
|
"Vibrato pulse accent (Saunders) for stem",
|
|
|
|
"System divider",
|
|
|
|
"Extra long system divider",
|
|
|
|
"Long system divider",
|
|
|
|
"Augmentation dot",
|
|
|
|
"Black note, fractional 16th beam, long stem",
|
|
|
|
"Black note, fractional 16th beam, short stem",
|
|
|
|
"Black note, fractional 32nd beam, long stem",
|
|
|
|
"Black note, fractional 8th beam, long stem",
|
|
|
|
"Black note, fractional 8th beam, short stem",
|
|
|
|
"Black note, long stem",
|
|
|
|
"Black note, short stem",
|
|
|
|
"Continuing 16th beam for long stem",
|
|
|
|
"Continuing 16th beam for short stem",
|
|
|
|
"Continuing 32nd beam for long stem",
|
|
|
|
"Continuing 8th beam for long stem",
|
|
|
|
"Continuing 8th beam for short stem",
|
|
|
|
"Tie",
|
|
|
|
"Tuplet number 3 for long stem",
|
|
|
|
"Tuplet number 3 for short stem",
|
|
|
|
"Tuplet bracket end for long stem",
|
|
|
|
"Tuplet bracket end for short stem",
|
|
|
|
"Tuplet bracket start for long stem",
|
|
|
|
"Tuplet bracket start for short stem",
|
|
|
|
"Time signature 0",
|
|
|
|
"Time signature 1",
|
|
|
|
"Time signature 2",
|
|
|
|
"Time signature 3",
|
|
|
|
"Time signature 4",
|
|
|
|
"Time signature 5",
|
|
|
|
"Time signature 6",
|
|
|
|
"Time signature 7",
|
|
|
|
"Time signature 8",
|
|
|
|
"Time signature 9",
|
|
|
|
"Control character for denominator digit",
|
|
|
|
"Control character for numerator digit",
|
|
|
|
"Time signature comma",
|
|
|
|
"Common time",
|
|
|
|
"Cut time",
|
|
|
|
"Time signature equals",
|
|
|
|
"Time signature fraction \u00bd",
|
|
|
|
"Time signature fraction \u2153",
|
|
|
|
"Time signature fraction \u00bc",
|
|
|
|
"Time signature fraction \u00be",
|
|
|
|
"Time signature fraction \u2154",
|
|
|
|
"Time signature fraction slash",
|
|
|
|
"Time signature minus",
|
|
|
|
"Time signature multiply",
|
|
|
|
"Open time signature (Penderecki)",
|
|
|
|
"Left parenthesis for whole time signature",
|
|
|
|
"Left parenthesis for numerator only",
|
|
|
|
"Right parenthesis for whole time signature",
|
|
|
|
"Right parenthesis for numerator only",
|
|
|
|
"Time signature +",
|
|
|
|
"Time signature + (for numerators)",
|
|
|
|
"Open time signature",
|
|
|
|
"Combining tremolo 1",
|
|
|
|
"Combining tremolo 2",
|
|
|
|
"Combining tremolo 3",
|
|
|
|
"Combining tremolo 4",
|
|
|
|
"Combining tremolo 5",
|
|
|
|
"Divide measured tremolo by 2",
|
|
|
|
"Divide measured tremolo by 3",
|
|
|
|
"Divide measured tremolo by 4",
|
|
|
|
"Divide measured tremolo by 6",
|
|
|
|
"Fingered tremolo 1",
|
|
|
|
"Fingered tremolo 2",
|
|
|
|
"Fingered tremolo 3",
|
|
|
|
"Fingered tremolo 4",
|
|
|
|
"Fingered tremolo 5",
|
|
|
|
"Triple-tongue above",
|
|
|
|
"Triple-tongue below",
|
|
|
|
"Tuplet 0",
|
|
|
|
"Tuplet 1",
|
|
|
|
"Tuplet 2",
|
|
|
|
"Tuplet 3",
|
|
|
|
"Tuplet 4",
|
|
|
|
"Tuplet 5",
|
|
|
|
"Tuplet 6",
|
|
|
|
"Tuplet 7",
|
|
|
|
"Tuplet 8",
|
|
|
|
"Tuplet 9",
|
|
|
|
"Tuplet colon",
|
|
|
|
"Wieniawski unmeasured tremolo",
|
|
|
|
"Wieniawski unmeasured tremolo (simpler)",
|
|
|
|
"Unpitched percussion clef 1",
|
|
|
|
"Unpitched percussion clef 2",
|
|
|
|
"Ventiduesima",
|
|
|
|
"Ventiduesima alta",
|
|
|
|
"Ventiduesima bassa",
|
|
|
|
"Mouth closed",
|
|
|
|
"Mouth open",
|
|
|
|
"Mouth pursed",
|
|
|
|
"Mouth slightly open",
|
|
|
|
"Mouth wide open",
|
|
|
|
"Sprechgesang",
|
|
|
|
"Combining sussurando for stem",
|
|
|
|
"Arpeggiato wiggle segment, downwards",
|
|
|
|
"Arpeggiato arrowhead down",
|
|
|
|
"Arpeggiato downward swash",
|
|
|
|
"Arpeggiato wiggle segment, upwards",
|
|
|
|
"Arpeggiato arrowhead up",
|
|
|
|
"Arpeggiato upward swash",
|
|
|
|
"Circular motion segment",
|
|
|
|
"Constant circular motion segment",
|
|
|
|
"Constant circular motion segment (flipped)",
|
|
|
|
"Constant circular motion segment (flipped, large)",
|
|
|
|
"Constant circular motion segment (large)",
|
|
|
|
"Circular motion end",
|
|
|
|
"Circular motion segment, large",
|
|
|
|
"Circular motion segment, larger",
|
|
|
|
"Circular motion segment, larger still",
|
|
|
|
"Circular motion segment, largest",
|
|
|
|
"Circular motion segment, small",
|
|
|
|
"Circular motion start",
|
|
|
|
"Glissando wiggle segment",
|
|
|
|
"Group glissando 1",
|
|
|
|
"Group glissando 2",
|
|
|
|
"Group glissando 3",
|
|
|
|
"Quasi-random squiggle 1",
|
|
|
|
"Quasi-random squiggle 2",
|
|
|
|
"Quasi-random squiggle 3",
|
|
|
|
"Quasi-random squiggle 4",
|
|
|
|
"Sawtooth line segment",
|
|
|
|
"Narrow sawtooth line segment",
|
|
|
|
"Wide sawtooth line segment",
|
|
|
|
"Square wave line segment",
|
|
|
|
"Narrow square wave line segment",
|
|
|
|
"Wide square wave line segment",
|
|
|
|
"Trill wiggle segment",
|
|
|
|
"Trill wiggle segment, fast",
|
|
|
|
"Trill wiggle segment, faster",
|
|
|
|
"Trill wiggle segment, faster still",
|
|
|
|
"Trill wiggle segment, fastest",
|
|
|
|
"Trill wiggle segment, slow",
|
|
|
|
"Trill wiggle segment, slower",
|
|
|
|
"Trill wiggle segment, slower still",
|
|
|
|
"Trill wiggle segment, slowest",
|
|
|
|
"Vibrato largest, slower",
|
|
|
|
"Vibrato medium, slower",
|
|
|
|
"Vibrato / shake wiggle segment",
|
|
|
|
"Vibrato large, fast",
|
|
|
|
"Vibrato large, faster",
|
|
|
|
"Vibrato large, faster still",
|
|
|
|
"Vibrato large, fastest",
|
|
|
|
"Vibrato large, slow",
|
|
|
|
"Vibrato large, slower",
|
|
|
|
"Vibrato large, slowest",
|
|
|
|
"Vibrato largest, fast",
|
|
|
|
"Vibrato largest, faster",
|
|
|
|
"Vibrato largest, faster still",
|
|
|
|
"Vibrato largest, fastest",
|
|
|
|
"Vibrato largest, slow",
|
|
|
|
"Vibrato largest, slowest",
|
|
|
|
"Vibrato medium, fast",
|
|
|
|
"Vibrato medium, faster",
|
|
|
|
"Vibrato medium, faster still",
|
|
|
|
"Vibrato medium, fastest",
|
|
|
|
"Vibrato medium, slow",
|
|
|
|
"Vibrato medium, slowest",
|
|
|
|
"Vibrato small, fast",
|
|
|
|
"Vibrato small, faster",
|
|
|
|
"Vibrato small, faster still",
|
|
|
|
"Vibrato small, fastest",
|
|
|
|
"Vibrato small, slow",
|
|
|
|
"Vibrato small, slower",
|
|
|
|
"Vibrato small, slowest",
|
|
|
|
"Vibrato smallest, fast",
|
|
|
|
"Vibrato smallest, faster",
|
|
|
|
"Vibrato smallest, faster still",
|
|
|
|
"Vibrato smallest, fastest",
|
|
|
|
"Vibrato smallest, slow",
|
|
|
|
"Vibrato smallest, slower",
|
|
|
|
"Vibrato smallest, slowest",
|
|
|
|
"Vibrato start",
|
|
|
|
"Wide vibrato / shake wiggle segment",
|
|
|
|
"Wavy line segment",
|
|
|
|
"Narrow wavy line segment",
|
|
|
|
"Wide wavy line segment",
|
|
|
|
"Closed hole",
|
|
|
|
"Sharper embouchure",
|
|
|
|
"Half-closed hole",
|
|
|
|
"Half-closed hole 2",
|
|
|
|
"Half-open hole",
|
|
|
|
"Somewhat relaxed embouchure",
|
|
|
|
"Somewhat tight embouchure",
|
|
|
|
"Combining multiphonics (black) for stem",
|
|
|
|
"Combining multiphonics (black and white) for stem",
|
|
|
|
"Combining multiphonics (white) for stem",
|
|
|
|
"Open hole",
|
|
|
|
"Much more reed (push inwards)",
|
|
|
|
"Normal reed position",
|
|
|
|
"Very little reed (pull outwards)",
|
|
|
|
"Relaxed embouchure",
|
|
|
|
"Flatter embouchure",
|
|
|
|
"Very tight embouchure / strong air pressure",
|
|
|
|
"Three-quarters closed hole",
|
|
|
|
"Tight embouchure",
|
|
|
|
"Trill key",
|
|
|
|
"Very tight embouchure",
|
|
|
|
"Very relaxed embouchure / weak air-pressure",
|
2014-03-15 12:31:29 +01:00
|
|
|
|
2013-11-29 00:37:48 +01:00
|
|
|
// EXTENSIONS
|
|
|
|
// SMuFL stylistic alternates which we need to access directly
|
|
|
|
|
|
|
|
"noteheadDoubleWholeAlt", // double whole with double side bars
|
|
|
|
"6StringTabClefSerif", // TAB clef in script style
|
|
|
|
|
|
|
|
// MuseScore local symbols, precomposed symbols to mimic some emmentaler glyphs
|
2012-05-26 14:26:10 +02:00
|
|
|
|
2013-11-12 15:15:48 +01:00
|
|
|
"ornamentPrallMordent",
|
2013-11-11 15:11:28 +01:00
|
|
|
"ornamentUpPrall",
|
|
|
|
"ornamentUpMordent",
|
|
|
|
"ornamentPrallDown",
|
|
|
|
"ornamentDownPrall",
|
|
|
|
"ornamentDownMordent",
|
|
|
|
"ornamentPrallUp",
|
2013-11-29 00:37:48 +01:00
|
|
|
"ornamentLinePrall",
|
|
|
|
|
|
|
|
// additional symbols
|
|
|
|
|
|
|
|
"noteLongaUp",
|
|
|
|
"noteLongaDown",
|
|
|
|
"noteLongaSquareUp",
|
|
|
|
"noteLongaSquareDown",
|
2013-11-11 15:11:28 +01:00
|
|
|
};
|
2012-05-26 14:26:10 +02:00
|
|
|
|
2013-11-18 00:57:35 +01:00
|
|
|
//---------------------------------------------------------
|
|
|
|
// Conversion table of old symbol names (1.3)
|
|
|
|
// The mapping corresponds to fonts/mscore/glyphnames.json and must be in sync with it
|
|
|
|
// symNames must be in sync with enum class SymId
|
|
|
|
//---------------------------------------------------------
|
|
|
|
|
|
|
|
struct oldName {
|
|
|
|
const char* name;
|
|
|
|
SymId symId;
|
|
|
|
};
|
|
|
|
|
|
|
|
QHash<QString, SymId> Sym::lonhash;
|
|
|
|
QVector<oldName> oldNames = {
|
2014-04-29 18:27:55 +02:00
|
|
|
{"whole rest", SymId::restWhole }, // rests.0
|
|
|
|
{"half rest", SymId::restHalf }, // rests.1
|
|
|
|
{"outside whole rest", SymId::restWholeLegerLine }, // rests.0o
|
|
|
|
{"outside half rest", SymId::restHalfLegerLine }, // rests.1o
|
|
|
|
{"rest M3", SymId::restMaxima }, // rests.M3
|
|
|
|
{"breve rest", SymId::restDoubleWhole }, // rests.M1
|
|
|
|
{"longa rest", SymId::restLonga }, // rests.M2
|
|
|
|
{"quart rest", SymId::restQuarter }, // rests.2
|
|
|
|
{"clas quart rest", SymId::restQuarterOld }, // rests.2classical
|
|
|
|
{"eight rest", SymId::rest8th }, // rests.3
|
|
|
|
{"16' rest", SymId::rest16th }, // rests.4
|
|
|
|
{"32' rest", SymId::rest32nd }, // rests.5
|
|
|
|
{"64' rest", SymId::rest64th }, // rests.6
|
|
|
|
{"128' rest", SymId::rest128th }, // rests.7
|
2013-11-18 00:57:35 +01:00
|
|
|
|
2014-04-29 18:27:55 +02:00
|
|
|
{"sharp", SymId::accidentalSharp }, // accidentals.sharp
|
|
|
|
{"sharp arrow up", SymId::accidentalThreeQuarterTonesSharpArrowUp }, // accidentals.sharp.arrowup - typo in 1.3
|
|
|
|
{"sharp arrow both", SymId::accidentalQuarterToneSharpArrowDown }, // accidentals.sharp.arrowdown
|
|
|
|
// {"sharp arrow both", SymId::noSym }, // accidentals.sharp.arrowboth sharp with both arrows missing in SMuFL
|
|
|
|
{"sharp slash", SymId::accidentalQuarterToneSharpStein }, // accidentals.sharp.slashslash.stem
|
|
|
|
{"sharp slash2", SymId::accidentalBuyukMucennebSharp }, // accidentals.sharp.slashslashslash.stemstem
|
|
|
|
{"sharp slash3", SymId::accidentalKomaSharp }, // accidentals.sharp.slashslashslash.stem
|
|
|
|
{"sharp slash4", SymId::accidentalThreeQuarterTonesSharpStein }, // accidentals.sharp.slashslash.stemstemstem
|
|
|
|
{"natural", SymId::accidentalNatural }, // accidentals.natural
|
|
|
|
{"natural arrow up", SymId::accidentalQuarterToneSharpNaturalArrowUp }, // accidentals.natural.arrowup
|
|
|
|
{"natural arrow down", SymId::accidentalQuarterToneFlatNaturalArrowDown }, // accidentals.natural.arrowdown
|
|
|
|
// {"natural arrow both", SymId::noSym }, // accidentals.natural.arrowboth natural with both arrows missing in SMuFL
|
|
|
|
{"flat", SymId::accidentalFlat }, // accidentals.flat
|
|
|
|
{"flat arrow up", SymId::accidentalQuarterToneFlatArrowUp }, // accidentals.flat.arrowup
|
|
|
|
{"flat arrow both", SymId::accidentalThreeQuarterTonesFlatArrowDown }, // accidentals.flat.arrowdown - typo in 1.3
|
|
|
|
// {"flat arrow both", SymId::noSym }, // accidentals.flat.arrowboth flat with both arrows missing in SMuFL
|
|
|
|
{"flat slash", SymId::accidentalBakiyeFlat }, // accidentals.flat.slash
|
|
|
|
{"flat slash2", SymId::accidentalBuyukMucennebFlat }, // accidentals.flat.slashslash
|
|
|
|
{"mirrored flat2", SymId::accidentalThreeQuarterTonesFlatZimmermann }, // accidentals.mirroredflat.flat
|
|
|
|
{"mirrored flat", SymId::accidentalQuarterToneFlatStein }, // accidentals.mirroredflat more than one candidate in SMuFL: first occurring chosen
|
|
|
|
// {"mirrored flat slash", SymId::noSym }, // accidentals.mirroredflat.backslash - mirrored-slashed flat missing in SMuFL
|
|
|
|
{"flat flat", SymId::accidentalDoubleFlat }, // accidentals.flatflat
|
|
|
|
// {"flat flat slash", SymId::noSym }, // slashes double flat missing in SMuFL
|
|
|
|
{"sharp sharp", SymId::accidentalDoubleSharp }, // accidentals.doublesharp
|
|
|
|
{"sori", SymId::accidentalSori }, // accidentals.sori
|
|
|
|
{"koron", SymId::accidentalKoron }, // accidentals.koron
|
|
|
|
{"right parenthesis", SymId::noteheadParenthesisRight }, // accidentals.rightparen SMULF parenth. for note heads used instead
|
|
|
|
{"left parenthesis", SymId::noteheadParenthesisLeft }, // accidentals.leftparen
|
2013-11-18 00:57:35 +01:00
|
|
|
|
2014-04-29 18:27:55 +02:00
|
|
|
{"arrowheads.open.01", SymId::arrowheadWhiteRight }, // arrowheads.open.01 imilar, not identical in SMuFL
|
|
|
|
{"arrowheads.open.0M1", SymId::arrowheadWhiteLeft }, // arrowheads.open.0M1
|
|
|
|
{"arrowheads.open.11", SymId::arrowheadWhiteUp }, // arrowheads.open.11
|
|
|
|
{"arrowheads.open.1M1", SymId::arrowheadWhiteDown }, // arrowheads.open.1M1
|
|
|
|
{"arrowheads.close.01", SymId::arrowheadBlackRight }, // arrowheads.close.01
|
|
|
|
{"arrowheads.close.0M1", SymId::arrowheadBlackLeft }, // arrowheads.close.0M1
|
|
|
|
{"arrowheads.close.11", SymId::arrowheadBlackUp }, // arrowheads.close.11
|
|
|
|
{"arrowheads.close.1M1", SymId::arrowheadBlackDown }, // arrowheads.close.1M1
|
2013-11-18 00:57:35 +01:00
|
|
|
|
2014-04-29 18:27:55 +02:00
|
|
|
{"dot", SymId::augmentationDot }, // dots.dot
|
|
|
|
{"longa up", SymId::noteLongaUp }, // noteheads.uM2
|
|
|
|
{"longa down", SymId::noteLongaDown }, // noteheads.dM2
|
|
|
|
{"brevis head", SymId::noteheadDoubleWhole }, // noteheads.sM1
|
|
|
|
{"brevis double head", SymId::noSym }, // noteheads.sM1double, stylistic alternate in SMuFL
|
|
|
|
{"whole head", SymId::noteheadWhole }, // noteheads.s0
|
|
|
|
{"half head", SymId::noteheadHalf }, // noteheads.s1
|
|
|
|
{"quart head", SymId::noteheadBlack }, // noteheads.s2
|
|
|
|
{"whole diamond head", SymId::noteheadDiamondWhole }, // noteheads.s0diamond
|
|
|
|
{"half diamond head", SymId::noteheadDiamondHalf }, // noteheads.s1diamond
|
|
|
|
{"diamond head", SymId::noteheadDiamondBlack }, // noteheads.s2diamond
|
|
|
|
{"whole triangle head", SymId::noteheadTriangleDownWhole }, // noteheads.s0triangle
|
|
|
|
{"down half triangle head", SymId::noteheadTriangleDownHalf }, // noteheads.d1triangle
|
|
|
|
{"up half triangle head", SymId::noteheadTriangleDownHalf }, // noteheads.u1triangle
|
|
|
|
{"up quart triangle head", SymId::noteheadTriangleDownBlack }, // noteheads.u2triangle
|
|
|
|
{"down quart triangle head", SymId::noteheadTriangleDownBlack }, // noteheads.d2triangle
|
|
|
|
{"whole slash head", SymId::noteheadSlashWhiteWhole }, // noteheads.s0slash
|
|
|
|
{"half slash head", SymId::noteheadSlashWhiteHalf }, // noteheads.s1slash
|
|
|
|
{"quart slash head", SymId::noteheadSlashHorizontalEnds }, // noteheads.s2slash
|
|
|
|
{"whole cross head", SymId::noteheadXWhole }, // noteheads.s0cross
|
|
|
|
{"half cross head", SymId::noteheadXHalf }, // noteheads.s1cross
|
|
|
|
{"cross head", SymId::noteheadXBlack }, // noteheads.s2cross
|
|
|
|
{"x circle head", SymId::noteheadCircleX }, // noteheads.s2xcircle
|
|
|
|
// {"s0do head", SymId::noSym }, // noteheads.s0do Whole DO triangle up missing in SMuFL
|
|
|
|
{"d1do head", SymId::noteShapeTriangleUpWhite }, // noteheads.d1do
|
|
|
|
{"u1do head", SymId::noteShapeTriangleUpWhite }, // noteheads.u1do
|
|
|
|
{"d2do head", SymId::noteShapeTriangleUpBlack }, // noteheads.d2do
|
|
|
|
{"u2do head", SymId::noteShapeTriangleUpBlack }, // noteheads.u2do
|
|
|
|
// {"s0re head", SymId::noSym }, // noteheads.s0re Whole moon-shaped RE missing in SMuFL
|
|
|
|
{"u1re head", SymId::noteShapeMoonWhite }, // noteheads.u1re
|
|
|
|
{"d1re head", SymId::noteShapeMoonWhite }, // noteheads.d1re
|
|
|
|
{"u2re head", SymId::noteShapeMoonBlack }, // noteheads.u2re
|
|
|
|
{"d2re head", SymId::noteShapeMoonBlack }, // noteheads.d2re
|
|
|
|
// {"s0mi head", SymId::noSym }, // noteheads.s0mi Whole diamond-shaped MI missing in SMuFL
|
|
|
|
{"s1mi head", SymId::noteShapeDiamondWhite }, // noteheads.s1mi
|
|
|
|
{"s2mi head", SymId::noteShapeDiamondBlack }, // noteheads.s2mi
|
|
|
|
// {"u0fa head", SymId::noSym }, // noteheads.u0fa Whole triangle-left shaped (up) FA missing in SMuFL
|
|
|
|
// {"d0fa head", SymId::noSym }, // noteheads.d0fa Whole triangle-left shaped (dn) FA missing in SMuFL
|
|
|
|
{"u1fa head", SymId::noteheadTriangleUpRightWhite }, // noteheads.u1fa
|
|
|
|
{"d1fa head", SymId::noteShapeTriangleRightWhite }, // noteheads.d1fa
|
|
|
|
{"u2fa head", SymId::noteheadTriangleUpRightBlack }, // noteheads.u2fa
|
|
|
|
{"d2fa head", SymId::noteheadTriangleLeftBlack }, // noteheads.d2fa
|
|
|
|
// {"s0la head", SymId::noSym }, // noteheads.s0la Whole rectangle shaped LA missing in SMuFL
|
|
|
|
{"s1la head", SymId::noteShapeSquareWhite }, // noteheads.s1la
|
|
|
|
{"s2la head", SymId::noteShapeSquareBlack }, // noteheads.s2la
|
|
|
|
// {"s0ti head", SymId::noSym }, // Whole rounded-triangle shaped TI missing in SMuFL
|
|
|
|
{"u1ti head", SymId::noteShapeTriangleRoundWhite }, // noteheads.u1ti
|
|
|
|
{"d1ti head", SymId::noteShapeTriangleRoundWhite }, // noteheads.d1ti
|
|
|
|
{"u2ti head", SymId::noteShapeTriangleRoundBlack }, // noteheads.u2ti
|
|
|
|
{"d2ti head", SymId::noteShapeTriangleRoundBlack }, // noteheads.d2ti
|
|
|
|
// {"s0sol head", SymId::noSym }, // noteheads.s0sol Whole rounded shaped SOL missing in SMuFL
|
|
|
|
{"s1sol head", SymId::noteShapeRoundWhite }, // noteheads.s1sol
|
|
|
|
{"s2sol head", SymId::noteShapeRoundBlack }, // noteheads.s2sol
|
2013-11-18 00:57:35 +01:00
|
|
|
|
2014-04-29 18:27:55 +02:00
|
|
|
{"ufermata", SymId::fermataAbove }, // scripts.ufermata
|
|
|
|
{"dfermata", SymId::fermataBelow }, // scripts.dfermata
|
|
|
|
{"snappizzicato", SymId::pluckedSnapPizzicatoAbove }, // scripts.snappizzicato
|
|
|
|
{"ushortfermata", SymId::fermataShortAbove }, // scripts.ushortfermata
|
|
|
|
{"dshortfermata", SymId::fermataShortBelow }, // scripts.dshortfermata
|
|
|
|
{"ulongfermata", SymId::fermataLongAbove }, // scripts.ulongfermata
|
|
|
|
{"dlongfermata", SymId::fermataLongBelow }, // scripts.dlongfermata
|
|
|
|
{"uverylongfermata", SymId::fermataVeryLongAbove }, // scripts.uverylongfermata
|
|
|
|
{"dverylongfermata", SymId::fermataVeryLongBelow }, // scripts.dverylongfermata
|
|
|
|
{"thumb", SymId::stringsThumbPosition }, // scripts.thumb
|
|
|
|
{"sforza to accent", SymId::articAccentAbove }, // scripts.sforzato
|
|
|
|
// {"espressivo", SymId::noSym }, // scripts.espr <> 'espressivo' removed and not present in SMuFL
|
|
|
|
{"staccato", SymId::articStaccatoAbove }, // scripts.staccato
|
|
|
|
{"ustaccatissimo", SymId::articStaccatissimoAbove }, // scripts.ustaccatissimo
|
|
|
|
{"dstaccatissimo", SymId::articStaccatissimoBelow }, // scripts.dstaccatissimo
|
|
|
|
{"tenuto", SymId::articTenutoAbove }, // scripts.tenuto
|
|
|
|
{"uportato", SymId::articTenutoStaccatoAbove }, // scripts.uportato
|
|
|
|
{"dportato", SymId::articTenutoStaccatoBelow }, // scripts.dportato
|
|
|
|
{"umarcato", SymId::articMarcatoAbove }, // scripts.umarcato
|
|
|
|
{"dmarcato", SymId::articMarcatoBelow }, // scripts.dmarcato
|
|
|
|
{"ouvert", SymId::brassMuteOpen }, // scripts.open
|
|
|
|
{"halfopen", SymId::brassMuteHalfClosed }, // scripts.halfopen CHECK!!! pre 2.0 only
|
|
|
|
{"plus stop", SymId::brassMuteClosed }, // scripts.stopped
|
|
|
|
{"up bow", SymId::stringsUpBow }, // scripts.upbow
|
|
|
|
{"down bow", SymId::stringsDownBow }, // scripts.downbow
|
|
|
|
{"reverse turn", SymId::ornamentTurnInverted }, // scripts.reverseturn
|
|
|
|
{"turn", SymId::ornamentTurn }, // scripts.turn
|
|
|
|
{"trill", SymId::ornamentTrill }, // scripts.trill
|
|
|
|
{"upedal heel", SymId::keyboardPedalHeel1 }, // scripts.upedalheel
|
|
|
|
{"dpedalheel", SymId::keyboardPedalHeel2 }, // scripts.dpedalheel
|
|
|
|
{"upedal toe", SymId::keyboardPedalToe1 }, // scripts.upedaltoe
|
|
|
|
{"dpedal toe", SymId::keyboardPedalToe2 }, // scripts.dpedaltoe
|
|
|
|
{"flageolet", SymId::stringsHarmonic }, // scripts.flageolet
|
2013-11-18 00:57:35 +01:00
|
|
|
|
2014-04-29 18:27:55 +02:00
|
|
|
{"segno", SymId::segno }, // scripts.segno
|
|
|
|
{"varsegno", SymId::segnoSerpent1 }, // not identical to SMuFL, but very similar
|
|
|
|
{"coda", SymId::coda }, // scripts.coda
|
|
|
|
{"varied coda", SymId::codaSquare }, // scripts.varcoda
|
|
|
|
{"rcomma", SymId::breathMarkSalzedo }, // scripts.rcomma
|
|
|
|
// {"lcomma", SymId::noSym }, // reversed breath missing in SMuFL
|
|
|
|
// {"rvarcomma", SymId::noSym }, // straight breath missing in SMuFL
|
|
|
|
// {"lvarcomma", SymId::noSym }, // reversed straight breath missing in SMuFL
|
|
|
|
{"arpeggio", SymId::wiggleArpeggiatoUp }, // scripts.arpeggio
|
|
|
|
{"trillelement", SymId::wiggleTrill }, // scripts.trill_element
|
|
|
|
{"arpeggio arrow down", SymId::wiggleArpeggiatoDownArrow }, // scripts.arpeggio.arrow.M1
|
|
|
|
{"arpeggio arrow up", SymId::wiggleArpeggiatoUpArrow }, // scripts.arpeggio.arrow.1
|
|
|
|
{"trill element", SymId::wiggleTrillFastest }, // scripts.trilelement
|
|
|
|
{"prall", SymId::ornamentMordent }, // scripts.prall
|
|
|
|
{"mordent", SymId::ornamentMordentInverted }, // scripts.mordent
|
|
|
|
{"prall prall", SymId::ornamentTremblement }, // scripts.prallprall
|
|
|
|
{"prall mordent", SymId::ornamentPrallMordent }, // scripts.prallmordent
|
|
|
|
{"up prall", SymId::ornamentUpPrall }, // scripts.upprall
|
|
|
|
{"up mordent", SymId::ornamentUpMordent }, // scripts.upmordent
|
|
|
|
{"prall down", SymId::ornamentPrallDown }, // scripts.pralldown
|
|
|
|
{"down prall", SymId::ornamentDownPrall }, // scripts.downprall
|
|
|
|
{"down mordent", SymId::ornamentDownMordent }, // scripts.downmordent
|
|
|
|
{"prall up", SymId::ornamentPrallUp }, // scripts.prallup
|
|
|
|
{"line prall", SymId::ornamentLinePrall }, // scripts.lineprall
|
|
|
|
{"schleifer", SymId::ornamentPrecompSlide }, // scripts.schleifer
|
|
|
|
{"caesura straight", SymId::caesura }, // scripts.caesura.straight
|
|
|
|
{"caesura curved", SymId::caesuraCurved }, // scripts.caesura.curved
|
2013-11-18 00:57:35 +01:00
|
|
|
|
2014-04-29 18:27:55 +02:00
|
|
|
{"eight flag", SymId::flag8thUp }, // flags.u3
|
|
|
|
{"sixteenth flag", SymId::flag16thUp }, // flags.u4
|
|
|
|
{"thirtysecond flag", SymId::flag32ndUp }, // flags.u5
|
|
|
|
{"sixtyfour flag", SymId::flag64thUp }, // flags.u6
|
|
|
|
{"128flag", SymId::flag128thUp }, // flags.u7
|
|
|
|
{"deight flag", SymId::flag8thDown }, // flags.d3
|
|
|
|
{"grace dash", SymId::graceNoteSlashStemUp }, // flags.ugrace
|
|
|
|
{"dgrace dash", SymId::graceNoteSlashStemDown }, // flags.dgrace
|
|
|
|
{"dsixteenth flag", SymId::flag16thDown }, // flags.d4
|
|
|
|
{"dthirtysecond flag", SymId::flag32ndDown }, // flags.d5
|
|
|
|
{"dsixtyfourth flag", SymId::flag16thDown }, // flags.d6
|
|
|
|
{"d128flag", SymId::flag128thDown }, // flags.d7
|
2013-11-18 00:57:35 +01:00
|
|
|
|
2014-04-29 18:27:55 +02:00
|
|
|
{"alto clef", SymId::cClef }, // clefs.C
|
|
|
|
{"calto clef", SymId::cClef }, // clefs.C_change stylistic alternate in SMuFL, better use the large one than nothing
|
|
|
|
{"bass clef", SymId::fClef }, // clefs.F
|
|
|
|
{"cbass clef", SymId::fClef }, // clefs.F_change stylistic alternate in SMuFL
|
|
|
|
{"trebleclef", SymId::gClef }, // clefs.G
|
|
|
|
{"ctrebleclef", SymId::gClef }, // clefs.G_change stylistic alternate in SMuFL
|
|
|
|
{"percussion clef", SymId::unpitchedPercussionClef1 }, // clefs.percussion
|
|
|
|
{"cpercussion clef", SymId::unpitchedPercussionClef1 }, // clefs.percussion_change stylistic alternate in SMuFL
|
|
|
|
{"tab clef", SymId::sixStringTabClef }, // clefs.tab
|
|
|
|
{"ctab clef", SymId::sixStringTabClef }, // clefs.tab_change stylistic alternate in SMuFL
|
|
|
|
{"four four meter", SymId::timeSigCommon }, // timesig.C44
|
|
|
|
{"allabreve", SymId::timeSigCutCommon }, // timesig.C22
|
|
|
|
{"pedalasterisk", SymId::keyboardPedalUp }, // pedal.*
|
|
|
|
{"pedaldash", SymId::keyboardPedalHyphen }, // pedal.M
|
|
|
|
{"pedaldot", SymId::keyboardPedalDot }, // pedal..
|
|
|
|
{"pedalP", SymId::keyboardPedalP }, // pedal.P
|
|
|
|
{"pedald", SymId::keyboardPedalD }, // pedal.d
|
|
|
|
{"pedale", SymId::keyboardPedalE }, // pedal.e
|
|
|
|
{"pedal ped", SymId::keyboardPedalPed }, // pedal.Ped
|
|
|
|
{"bracket tips up", SymId::bracketTop }, // brackettips.uright
|
|
|
|
{"bracket tips down", SymId::bracketBottom }, // brackettips.dright
|
|
|
|
{"bracket tips left up", SymId::reversedBracketTop }, // brackettips.uleft
|
|
|
|
{"bracket tips left down", SymId::reversedBracketBottom }, // brackettips.dleft
|
|
|
|
{"acc dot", SymId::accdnCombDot }, // accordion.accDot
|
|
|
|
{"acc freebase", SymId::accdnCombLH2RanksEmpty }, // accordion.accFreebase
|
|
|
|
{"acc stdbase", SymId::accdnCombRH4RanksEmpty }, // accordion.accStdbase
|
|
|
|
{"acc bayanbase", SymId::accdnCombLH3RanksEmptySquare }, // accordion.accBayanbase
|
|
|
|
// {"acc old ee", SymId::noSym }, // accordion.accOldEE missing in SMuFL
|
|
|
|
{"acc discant", SymId::accdnCombRH3RanksEmpty }, // accordion.accDiscant
|
|
|
|
// {"push", SymId::???? }, // accordion.push
|
|
|
|
// {"pull", SymId::???? }, // accordion.pull
|
|
|
|
// {"space", SymId::noSym }, // space punctuation missing in SMuFL?
|
|
|
|
// {"plus", SymId::noSym }, // plus "
|
|
|
|
// {"comma", SymId::noSym }, // comma "
|
|
|
|
// {"hyphen", SymId::noSym }, // hyphen "
|
|
|
|
// {"period", SymId::noSym }, // period "
|
|
|
|
{"zero", SymId::timeSig0 }, // zero
|
|
|
|
{"one", SymId::timeSig1 }, // one
|
|
|
|
{"two", SymId::timeSig2 }, // two
|
|
|
|
{"three", SymId::timeSig3 }, // three
|
|
|
|
{"four", SymId::timeSig4 }, // four
|
|
|
|
{"five", SymId::timeSig5 }, // five
|
|
|
|
{"six", SymId::timeSig6 }, // six
|
|
|
|
{"seven", SymId::timeSig7 }, // seven
|
|
|
|
{"eight", SymId::timeSig8 }, // eight
|
|
|
|
{"nine", SymId::timeSig9 }, // nine
|
|
|
|
{"f", SymId::dynamicForte }, // f
|
|
|
|
{"m", SymId::dynamicMezzo }, // m
|
|
|
|
{"p", SymId::dynamicPiano }, // p
|
|
|
|
{"r", SymId::dynamicRinforzando }, // r
|
|
|
|
{"s", SymId::dynamicSforzando }, // s
|
|
|
|
{"z", SymId::dynamicZ }, // z
|
|
|
|
{"longa up alt", SymId::noteLongaSquareUp }, // noteheads.uM2alt
|
|
|
|
{"longa down alt", SymId::noteLongaSquareDown }, // noteheads.dM2alt
|
|
|
|
{"brevis head alt", SymId::noteheadDoubleWholeSquare}, // noteheads.sM1alt
|
|
|
|
{"time sig C dot", SymId::mensuralProlation5 }, // timesig.Cdot
|
|
|
|
{"time sig O", SymId::mensuralProlation2 }, // timesig.O
|
|
|
|
{"time sig O cut", SymId::mensuralProlation3 }, // timesig.Ocut
|
|
|
|
{"time sig O dot", SymId::mensuralProlation1 }, // timesig.Odot
|
|
|
|
{"clefs.tab2", SymId::sixStringTabClefSerif }, // clefs.tab2 -- pre 2.0 only
|
2013-11-18 00:57:35 +01:00
|
|
|
};
|
|
|
|
|
2012-05-26 14:26:10 +02:00
|
|
|
//---------------------------------------------------------
|
2013-11-06 15:58:05 +01:00
|
|
|
// sym2pixmap
|
2012-05-26 14:26:10 +02:00
|
|
|
//---------------------------------------------------------
|
|
|
|
|
2013-11-06 15:58:05 +01:00
|
|
|
QPixmap ScoreFont::sym2pixmap(SymId id, qreal mag)
|
2012-05-26 14:26:10 +02:00
|
|
|
{
|
2013-11-06 15:58:05 +01:00
|
|
|
QString string = toString(id);
|
2013-11-11 15:11:28 +01:00
|
|
|
QRectF bb(bbox(id, mag));
|
2013-11-06 15:58:05 +01:00
|
|
|
bb.setRect(bb.x() * mag, bb.y() * mag, bb.width() * mag, bb.height() * mag);
|
|
|
|
|
|
|
|
bb.adjust(-5, -5, 5, 5);
|
|
|
|
int w = lrint(bb.width());
|
|
|
|
int h = lrint(bb.height());
|
|
|
|
QPixmap pm(w, h);
|
|
|
|
pm.fill(QColor(0, 0, 0, 0));
|
|
|
|
QPainter painter;
|
|
|
|
painter.begin(&pm);
|
|
|
|
painter.setPen(Qt::black);
|
|
|
|
draw(id, &painter, mag, -bb.topLeft() + QPointF(2.0, 2.0));
|
|
|
|
painter.end();
|
|
|
|
return pm;
|
2012-05-26 14:26:10 +02:00
|
|
|
}
|
|
|
|
|
2013-02-13 14:04:03 +01:00
|
|
|
//---------------------------------------------------------
|
|
|
|
// draw
|
|
|
|
//---------------------------------------------------------
|
|
|
|
|
2014-01-22 15:50:01 +01:00
|
|
|
void ScoreFont::draw(const QString& s, QPainter* painter, qreal mag, const QPointF& pos) const
|
2013-02-13 14:04:03 +01:00
|
|
|
{
|
|
|
|
qreal imag = 1.0 / mag;
|
|
|
|
painter->scale(mag, mag);
|
2014-02-28 12:00:32 +01:00
|
|
|
painter->setFont(font());
|
2014-01-22 15:50:01 +01:00
|
|
|
painter->drawText(pos * imag, s);
|
2013-02-13 14:04:03 +01:00
|
|
|
painter->scale(imag, imag);
|
|
|
|
}
|
|
|
|
|
2014-01-22 15:50:01 +01:00
|
|
|
void ScoreFont::draw(SymId id, QPainter* painter, qreal mag, const QPointF& pos) const
|
2013-11-19 12:12:07 +01:00
|
|
|
{
|
2014-01-22 15:50:01 +01:00
|
|
|
draw(toString(id), painter, mag, pos);
|
2013-11-19 12:12:07 +01:00
|
|
|
}
|
|
|
|
|
2013-11-06 15:58:05 +01:00
|
|
|
void ScoreFont::draw(SymId id, QPainter* painter, qreal mag, const QPointF& pos, int n) const
|
2012-05-26 14:26:10 +02:00
|
|
|
{
|
2013-11-11 15:11:28 +01:00
|
|
|
QString s = toString(id);
|
|
|
|
QString d;
|
|
|
|
for (int i = 0; i < n; ++i)
|
|
|
|
d += s;
|
2014-01-22 15:50:01 +01:00
|
|
|
draw(d, painter, mag, pos);
|
2012-05-26 14:26:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------
|
|
|
|
// symToHtml
|
|
|
|
// transform symbol into html code suitable
|
|
|
|
// for QDocument->setHtml()
|
|
|
|
//---------------------------------------------------------
|
|
|
|
|
2013-11-06 15:58:05 +01:00
|
|
|
QString ScoreFont::symToHtml(SymId s, int leftMargin, const TextStyle* ts, qreal _spatium)
|
2012-05-26 14:26:10 +02:00
|
|
|
{
|
|
|
|
qreal size;
|
|
|
|
if (ts) {
|
|
|
|
size = ts->font(_spatium).pointSizeF();
|
|
|
|
}
|
|
|
|
else {
|
2014-02-28 12:00:32 +01:00
|
|
|
size = _font->pixelSize();
|
2012-05-26 14:26:10 +02:00
|
|
|
}
|
|
|
|
|
2014-02-28 12:00:32 +01:00
|
|
|
QString family = _font->family();
|
2012-05-26 14:26:10 +02:00
|
|
|
return QString(
|
|
|
|
"<data>"
|
|
|
|
"<html>"
|
|
|
|
"<head>"
|
|
|
|
"<meta name=\"qrichtext\" content=\"1\" >"
|
|
|
|
"<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf8\" />"
|
|
|
|
"<style type=\"text/css\">"
|
|
|
|
"p, li { white-space: pre-wrap; }"
|
|
|
|
"</style>"
|
|
|
|
"</head>"
|
|
|
|
"<body style=\" font-family:'%1'; font-size:%2pt;\">"
|
|
|
|
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:%3px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">"
|
|
|
|
"&#%4;"
|
|
|
|
"</p>"
|
|
|
|
"</body>"
|
|
|
|
"</html>"
|
2013-11-11 15:11:28 +01:00
|
|
|
"</data>").arg(family).arg(size).arg(leftMargin).arg(toString(s));
|
2012-05-26 14:26:10 +02:00
|
|
|
}
|
|
|
|
|
2013-11-06 15:58:05 +01:00
|
|
|
QString ScoreFont::symToHtml(SymId s1, SymId s2, int leftMargin)
|
2012-05-26 14:26:10 +02:00
|
|
|
{
|
2014-02-28 12:00:32 +01:00
|
|
|
qreal size = _font->pixelSize();
|
|
|
|
QString family = _font->family();
|
2012-05-26 14:26:10 +02:00
|
|
|
|
|
|
|
return QString(
|
|
|
|
"<data>"
|
|
|
|
"<html>"
|
|
|
|
"<head>"
|
|
|
|
"<meta name=\"qrichtext\" content=\"1\" >"
|
|
|
|
"<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf8\" />"
|
|
|
|
"<style type=\"text/css\">"
|
|
|
|
"p, li { white-space: pre-wrap; }"
|
|
|
|
"</style>"
|
|
|
|
"</head>"
|
|
|
|
"<body style=\" font-family:'%1'; font-size:%2pt;\">"
|
|
|
|
"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:%3px; margin-right:0px; -qt-block-indent:0; text-indent:0px;\">"
|
|
|
|
"&#%4;&#%5;"
|
|
|
|
"</p>"
|
|
|
|
"</body>"
|
|
|
|
"</html>"
|
2013-11-11 15:11:28 +01:00
|
|
|
"</data>").arg(family).arg(size).arg(leftMargin).arg(toString(s1)).arg(toString(s2));
|
2012-05-26 14:26:10 +02:00
|
|
|
}
|
|
|
|
|
2013-08-30 12:46:15 +02:00
|
|
|
//---------------------------------------------------------
|
|
|
|
// id2name
|
|
|
|
//---------------------------------------------------------
|
|
|
|
|
|
|
|
const char* Sym::id2name(SymId id)
|
|
|
|
{
|
2013-11-06 15:58:05 +01:00
|
|
|
return symNames[int(id)];
|
2013-08-30 12:46:15 +02:00
|
|
|
}
|
2012-09-08 11:33:46 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------
|
2013-11-06 15:58:05 +01:00
|
|
|
// initScoreFonts
|
|
|
|
// load default score font
|
2012-09-08 11:33:46 +02:00
|
|
|
//---------------------------------------------------------
|
|
|
|
|
2013-11-06 15:58:05 +01:00
|
|
|
void initScoreFonts()
|
2012-09-08 11:33:46 +02:00
|
|
|
{
|
2013-11-06 15:58:05 +01:00
|
|
|
int index = 0;
|
2013-11-12 15:15:48 +01:00
|
|
|
for (auto i : Sym::symNames)
|
|
|
|
Sym::lnhash.insert(i, SymId(index++));
|
2013-11-06 15:58:05 +01:00
|
|
|
ScoreFont::fontFactory("Bravura"); // load reference font
|
2013-11-18 00:57:35 +01:00
|
|
|
for (oldName i : oldNames)
|
|
|
|
Sym::lonhash.insert(i.name, SymId(i.symId));
|
2012-09-08 11:33:46 +02:00
|
|
|
}
|
|
|
|
|
2012-05-26 14:26:10 +02:00
|
|
|
//---------------------------------------------------------
|
2013-11-11 15:11:28 +01:00
|
|
|
// codeToString
|
2012-05-26 14:26:10 +02:00
|
|
|
//---------------------------------------------------------
|
|
|
|
|
2013-11-11 15:11:28 +01:00
|
|
|
static QString codeToString(int code)
|
2012-05-26 14:26:10 +02:00
|
|
|
{
|
2013-11-11 15:11:28 +01:00
|
|
|
QString s;
|
|
|
|
if (code & 0xffff0000) {
|
|
|
|
s = QChar(QChar::highSurrogate(code));
|
|
|
|
s += QChar(QChar::lowSurrogate(code));
|
2012-05-26 14:26:10 +02:00
|
|
|
}
|
2013-11-11 15:11:28 +01:00
|
|
|
else
|
|
|
|
s = QChar(code);
|
|
|
|
return s;
|
|
|
|
}
|
2013-11-06 15:58:05 +01:00
|
|
|
|
2013-11-11 15:11:28 +01:00
|
|
|
//---------------------------------------------------------
|
|
|
|
// load
|
|
|
|
//---------------------------------------------------------
|
2013-11-06 15:58:05 +01:00
|
|
|
|
2013-11-11 15:11:28 +01:00
|
|
|
void ScoreFont::load()
|
|
|
|
{
|
2014-03-15 12:31:29 +01:00
|
|
|
//qDebug() << "load" << _filename;
|
2013-11-12 18:07:35 +01:00
|
|
|
#if !defined(Q_OS_MAC) && !defined(Q_OS_IOS)
|
2013-11-19 16:06:08 +01:00
|
|
|
if (-1 == QFontDatabase::addApplicationFont(_fontPath + _filename)) {
|
|
|
|
qDebug("ScoreFont: fatal error: cannot load internal font <%s>", qPrintable(_fontPath + _filename));
|
|
|
|
if (!QFile(_fontPath + _filename).exists())
|
2013-11-12 15:15:48 +01:00
|
|
|
qDebug(" file not found");
|
2013-11-11 15:11:28 +01:00
|
|
|
if (!MScore::debugMode)
|
|
|
|
exit(-1);
|
|
|
|
}
|
2013-11-12 18:07:35 +01:00
|
|
|
#endif
|
2014-02-28 12:00:32 +01:00
|
|
|
_font = new QFont();
|
|
|
|
_font->setWeight(QFont::Normal); // if not set we get system default
|
|
|
|
_font->setItalic(false);
|
|
|
|
_font->setFamily(_family);
|
|
|
|
_font->setStyleStrategy(QFont::NoFontMerging);
|
2013-11-06 15:58:05 +01:00
|
|
|
|
2013-11-11 15:11:28 +01:00
|
|
|
// horizontal hinting is bad as note hooks do not attach to stems
|
|
|
|
// properly at some magnifications
|
2014-02-28 12:00:32 +01:00
|
|
|
_font->setHintingPreference(QFont::PreferVerticalHinting);
|
2013-11-06 15:58:05 +01:00
|
|
|
|
2013-11-11 15:11:28 +01:00
|
|
|
qreal size = 20.0 * MScore::DPI / PPI;
|
2014-05-28 22:14:24 +02:00
|
|
|
QFont font2(font());
|
2014-02-28 12:00:32 +01:00
|
|
|
_font->setPixelSize(lrint(size));
|
2014-05-28 22:14:24 +02:00
|
|
|
font2.setPixelSize(lrint(size)*100);
|
2013-11-06 15:58:05 +01:00
|
|
|
|
2013-11-19 16:06:08 +01:00
|
|
|
QFile fi(_fontPath + "glyphnames.json");
|
2013-11-11 15:11:28 +01:00
|
|
|
if (!fi.open(QIODevice::ReadOnly))
|
|
|
|
qDebug("ScoreFont: open glyph names file <%s> failed", qPrintable(fi.fileName()));
|
|
|
|
QJsonParseError error;
|
|
|
|
QJsonObject o = QJsonDocument::fromJson(fi.readAll(), &error).object();
|
|
|
|
if (error.error != QJsonParseError::NoError)
|
2014-01-13 12:52:29 +01:00
|
|
|
qDebug("Json parse error in <%s>(offset: %d): %s", qPrintable(fi.fileName()),
|
|
|
|
error.offset, qPrintable(error.errorString()));
|
2013-11-11 15:11:28 +01:00
|
|
|
|
2014-02-28 12:00:32 +01:00
|
|
|
_fm = new QFontMetricsF(font());
|
2014-05-28 22:14:24 +02:00
|
|
|
QFontMetrics fm2(font2);
|
2013-11-11 15:11:28 +01:00
|
|
|
for (auto i : o.keys()) {
|
|
|
|
bool ok;
|
|
|
|
int code = o.value(i).toObject().value("codepoint").toString().mid(2).toInt(&ok, 16);
|
|
|
|
if (!ok)
|
|
|
|
qDebug("codepoint not recognized for glyph %s", qPrintable(i));
|
|
|
|
if (Sym::lnhash.contains(i)) {
|
|
|
|
SymId symId = Sym::lnhash.value(i);
|
|
|
|
Sym* sym = &_symbols[int(symId)];
|
|
|
|
sym->setString(codeToString(code));
|
2014-05-28 22:14:24 +02:00
|
|
|
sym->setWidth((fm2.width(sym->string()))/100.0);
|
2014-02-13 15:32:57 +01:00
|
|
|
sym->setBbox(QRectF(_fm->tightBoundingRect(sym->string())));
|
2012-05-26 14:26:10 +02:00
|
|
|
}
|
2014-03-15 12:31:29 +01:00
|
|
|
//else
|
|
|
|
// qDebug("unknown glyph: %s", qPrintable(i));
|
2013-11-11 15:11:28 +01:00
|
|
|
}
|
|
|
|
fi.close();
|
2013-11-19 16:06:08 +01:00
|
|
|
fi.setFileName(_fontPath + "metadata.json");
|
2013-11-11 15:11:28 +01:00
|
|
|
if (!fi.open(QIODevice::ReadOnly))
|
|
|
|
qDebug("ScoreFont: open glyph metadata file <%s> failed", qPrintable(fi.fileName()));
|
|
|
|
o = QJsonDocument::fromJson(fi.readAll(), &error).object();
|
|
|
|
if (error.error != QJsonParseError::NoError)
|
2014-01-13 12:52:29 +01:00
|
|
|
qDebug("Json parse error in <%s>(offset: %d): %s", qPrintable(fi.fileName()),
|
|
|
|
error.offset, qPrintable(error.errorString()));
|
2014-05-12 05:00:54 +02:00
|
|
|
|
2014-05-14 05:39:02 +02:00
|
|
|
QJsonObject oo = o.value("glyphsWithAnchors").toObject();
|
2013-11-11 15:11:28 +01:00
|
|
|
for (auto i : oo.keys()) {
|
2014-05-14 05:39:02 +02:00
|
|
|
qreal scale = MScore::DPI * SPATIUM20;
|
2013-11-11 15:11:28 +01:00
|
|
|
QJsonObject ooo = oo.value(i).toObject();
|
|
|
|
SymId symId = Sym::lnhash.value(i, SymId::noSym);
|
2014-05-14 05:39:02 +02:00
|
|
|
if (symId == SymId::noSym) {
|
|
|
|
// currently, Bravura contains a bunch of entries in glyphsWithAnchors
|
|
|
|
// for glyph names that will not be found - flag32ndUpStraight, etc.
|
|
|
|
//qDebug("ScoreFont: symId not found <%s> in <%s>", qPrintable(i), qPrintable(fi.fileName()));
|
|
|
|
continue;
|
|
|
|
}
|
2013-11-11 15:11:28 +01:00
|
|
|
Sym* sym = &_symbols[int(symId)];
|
|
|
|
for (auto i : ooo.keys()) {
|
|
|
|
if (i == "stemDownNW") {
|
|
|
|
//qreal x = ooo.value(i).toArray().at(0).toDouble();
|
|
|
|
//qreal y = ooo.value(i).toArray().at(1).toDouble();
|
|
|
|
}
|
|
|
|
else if (i == "stemUpSE") {
|
|
|
|
qreal x = ooo.value(i).toArray().at(0).toDouble();
|
|
|
|
qreal y = ooo.value(i).toArray().at(1).toDouble();
|
|
|
|
sym->setAttach(QPointF(4.0 * x * MScore::DPI/PPI, 4.0 * -y * MScore::DPI/PPI));
|
2013-05-03 09:58:33 +02:00
|
|
|
}
|
2014-05-14 05:39:02 +02:00
|
|
|
else if (i == "cutOutNE") {
|
2014-05-12 05:00:54 +02:00
|
|
|
qreal x = ooo.value(i).toArray().at(0).toDouble() * scale;
|
|
|
|
qreal y = ooo.value(i).toArray().at(1).toDouble() * scale;
|
|
|
|
sym->setCutOutNE(QPointF(x, -y));
|
|
|
|
}
|
|
|
|
else if (i == "cutOutNW") {
|
|
|
|
qreal x = ooo.value(i).toArray().at(0).toDouble() * scale;
|
|
|
|
qreal y = ooo.value(i).toArray().at(1).toDouble() * scale;
|
|
|
|
sym->setCutOutNW(QPointF(x, -y));
|
|
|
|
}
|
|
|
|
else if (i == "cutOutSE") {
|
|
|
|
qreal x = ooo.value(i).toArray().at(0).toDouble() * scale;
|
|
|
|
qreal y = ooo.value(i).toArray().at(1).toDouble() * scale;
|
|
|
|
sym->setCutOutSE(QPointF(x, -y));
|
|
|
|
}
|
|
|
|
else if (i == "cutOutSW") {
|
|
|
|
qreal x = ooo.value(i).toArray().at(0).toDouble() * scale;
|
|
|
|
qreal y = ooo.value(i).toArray().at(1).toDouble() * scale;
|
|
|
|
sym->setCutOutSW(QPointF(x, -y));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-11 15:11:28 +01:00
|
|
|
// create missing composed glyphs
|
|
|
|
|
|
|
|
struct Composed {
|
|
|
|
SymId id;
|
|
|
|
std::vector<SymId> rids;
|
|
|
|
} composed[] = {
|
|
|
|
|
|
|
|
{ SymId::ornamentPrallMordent,
|
|
|
|
{
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentMiddleVerticalStroke,
|
|
|
|
SymId::ornamentZigZagLineWithRightEnd
|
|
|
|
} },
|
2013-11-13 15:08:08 +01:00
|
|
|
{ SymId::ornamentUpPrall,
|
|
|
|
{
|
|
|
|
SymId::ornamentBottomLeftConcaveStroke,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineWithRightEnd
|
|
|
|
}},
|
|
|
|
{ SymId::ornamentUpMordent,
|
|
|
|
{
|
|
|
|
SymId::ornamentBottomLeftConcaveStroke,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentMiddleVerticalStroke,
|
|
|
|
SymId::ornamentZigZagLineWithRightEnd
|
|
|
|
}},
|
|
|
|
{ SymId::ornamentPrallDown,
|
|
|
|
{
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentBottomRightConcaveStroke,
|
|
|
|
}},
|
|
|
|
{ SymId::ornamentDownPrall,
|
|
|
|
{
|
|
|
|
SymId::ornamentLeftVerticalStroke,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineWithRightEnd
|
|
|
|
}},
|
|
|
|
{ SymId::ornamentDownMordent,
|
|
|
|
{
|
|
|
|
SymId::ornamentLeftVerticalStroke,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentMiddleVerticalStroke,
|
|
|
|
SymId::ornamentZigZagLineWithRightEnd
|
|
|
|
}},
|
|
|
|
{ SymId::ornamentPrallUp,
|
|
|
|
{
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentTopRightConvexStroke,
|
|
|
|
}},
|
|
|
|
{ SymId::ornamentLinePrall,
|
|
|
|
{
|
|
|
|
SymId::ornamentLeftVerticalStroke,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineNoRightEnd,
|
|
|
|
SymId::ornamentZigZagLineWithRightEnd
|
|
|
|
}}
|
2013-11-11 15:11:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
for (const Composed& c : composed) {
|
|
|
|
if (!_symbols[int(c.id)].isValid()) {
|
|
|
|
Sym* sym = &_symbols[int(c.id)];
|
|
|
|
QString s;
|
|
|
|
for (SymId id : c.rids)
|
|
|
|
s += _symbols[int(id)].string();
|
|
|
|
sym->setString(s);
|
2014-05-12 05:00:54 +02:00
|
|
|
sym->setBbox(QRectF(_fm->tightBoundingRect(s)));
|
2013-11-11 15:11:28 +01:00
|
|
|
}
|
|
|
|
}
|
2014-03-15 12:31:29 +01:00
|
|
|
|
|
|
|
/*for (int i = 1; i < int(SymId::lastSym); ++i) {
|
|
|
|
Sym sym = _symbols[i];
|
|
|
|
if (!sym.isValid())
|
|
|
|
qDebug("invalid symbol %s", Sym::id2name(SymId(i)));
|
|
|
|
}*/
|
2013-11-11 15:11:28 +01:00
|
|
|
loaded = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------
|
|
|
|
// fontFactory
|
|
|
|
//---------------------------------------------------------
|
|
|
|
|
|
|
|
ScoreFont* ScoreFont::fontFactory(QString s)
|
|
|
|
{
|
|
|
|
ScoreFont* f = 0;
|
|
|
|
for (ScoreFont& sf : _scoreFonts) {
|
|
|
|
if (sf.name().toLower() == s.toLower()) { // ignore letter case
|
|
|
|
f = &sf;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Q_ASSERT(f);
|
|
|
|
|
|
|
|
if (!f->loaded)
|
|
|
|
f->load();
|
2013-11-06 15:58:05 +01:00
|
|
|
return f;
|
2012-05-26 14:26:10 +02:00
|
|
|
}
|
2013-11-08 10:33:08 +01:00
|
|
|
|
2014-01-23 18:49:07 +01:00
|
|
|
//---------------------------------------------------------
|
|
|
|
// fallbackFont
|
|
|
|
//---------------------------------------------------------
|
|
|
|
|
|
|
|
ScoreFont* ScoreFont::fallbackFont()
|
|
|
|
{
|
|
|
|
ScoreFont* f = &_scoreFonts[FALLBACK_FONT];
|
|
|
|
if (!f->loaded)
|
|
|
|
f->load();
|
|
|
|
return f;
|
|
|
|
}
|
|
|
|
|
2013-11-11 15:11:28 +01:00
|
|
|
//---------------------------------------------------------
|
|
|
|
// bbox
|
|
|
|
//---------------------------------------------------------
|
|
|
|
|
|
|
|
const QRectF ScoreFont::bbox(SymId id, qreal mag) const
|
|
|
|
{
|
2014-02-13 15:32:57 +01:00
|
|
|
QRectF r = sym(id).bbox();
|
2013-11-11 15:11:28 +01:00
|
|
|
return QRectF(r.x() * mag, r.y() * mag, r.width() * mag, r.height() * mag);
|
|
|
|
}
|
|
|
|
|
2013-11-19 12:12:07 +01:00
|
|
|
const QRectF ScoreFont::bbox(const QString& s, qreal mag) const
|
|
|
|
{
|
|
|
|
QRectF r(_fm->tightBoundingRect(s));
|
|
|
|
return QRectF(r.x() * mag, r.y() * mag, r.width() * mag, r.height() * mag);
|
|
|
|
}
|
|
|
|
|
2013-05-13 18:49:17 +02:00
|
|
|
}
|
|
|
|
|