_lilypond_builtins.py 112 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184
  1. """
  2. pygments.lexers._lilypond_builtins
  3. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  4. LilyPond builtins.
  5. :copyright: Copyright 2006-present by the Pygments team, see AUTHORS.
  6. :license: BSD, see LICENSE for details.
  7. """
  8. # Contents generated by the script `lilypond-builtins-generator.ly`
  9. # found in the `external/` directory of the source tree.
  10. keywords = [
  11. "accepts",
  12. "addlyrics",
  13. "alias",
  14. "book",
  15. "bookpart",
  16. "chordmode",
  17. "chords",
  18. "consists",
  19. "context",
  20. "defaultchild",
  21. "denies",
  22. "description",
  23. "drummode",
  24. "drums",
  25. "etc",
  26. "figuremode",
  27. "figures",
  28. "header",
  29. "include",
  30. "inherit-acceptability",
  31. "language",
  32. "layout",
  33. "lyricmode",
  34. "lyricsto",
  35. "midi",
  36. "name",
  37. "new",
  38. "notemode",
  39. "paper",
  40. "remove",
  41. "score",
  42. "type",
  43. "version",
  44. "with",
  45. ]
  46. clefs = [
  47. "C",
  48. "F",
  49. "G",
  50. "G2",
  51. "GG",
  52. "alto",
  53. "altovarC",
  54. "baritone",
  55. "baritonevarC",
  56. "baritonevarF",
  57. "bass",
  58. "blackmensural-c1",
  59. "blackmensural-c2",
  60. "blackmensural-c3",
  61. "blackmensural-c4",
  62. "blackmensural-c5",
  63. "french",
  64. "hufnagel-do-fa",
  65. "hufnagel-do1",
  66. "hufnagel-do2",
  67. "hufnagel-do3",
  68. "hufnagel-fa1",
  69. "hufnagel-fa2",
  70. "kievan-do",
  71. "medicaea-do1",
  72. "medicaea-do2",
  73. "medicaea-do3",
  74. "medicaea-fa1",
  75. "medicaea-fa2",
  76. "mensural-c1",
  77. "mensural-c2",
  78. "mensural-c3",
  79. "mensural-c4",
  80. "mensural-c5",
  81. "mensural-f",
  82. "mensural-f2",
  83. "mensural-f3",
  84. "mensural-f4",
  85. "mensural-f5",
  86. "mensural-g",
  87. "mensural-g1",
  88. "mensural-g2",
  89. "mezzosoprano",
  90. "moderntab",
  91. "neomensural-c1",
  92. "neomensural-c2",
  93. "neomensural-c3",
  94. "neomensural-c4",
  95. "neomensural-c5",
  96. "percussion",
  97. "petrucci-c1",
  98. "petrucci-c2",
  99. "petrucci-c3",
  100. "petrucci-c4",
  101. "petrucci-c5",
  102. "petrucci-f",
  103. "petrucci-f2",
  104. "petrucci-f3",
  105. "petrucci-f4",
  106. "petrucci-f5",
  107. "petrucci-g",
  108. "petrucci-g1",
  109. "petrucci-g2",
  110. "soprano",
  111. "subbass",
  112. "tab",
  113. "tenor",
  114. "tenorG",
  115. "tenorvarC",
  116. "treble",
  117. "varC",
  118. "varbaritone",
  119. "varpercussion",
  120. "vaticana-do1",
  121. "vaticana-do2",
  122. "vaticana-do3",
  123. "vaticana-fa1",
  124. "vaticana-fa2",
  125. "violin",
  126. ]
  127. scales = [
  128. "aeolian",
  129. "dorian",
  130. "ionian",
  131. "locrian",
  132. "lydian",
  133. "major",
  134. "minor",
  135. "mixolydian",
  136. "phrygian",
  137. ]
  138. repeat_types = [
  139. "percent",
  140. "segno",
  141. "tremolo",
  142. "unfold",
  143. "volta",
  144. ]
  145. units = [
  146. "cm",
  147. "in",
  148. "mm",
  149. "pt",
  150. "staff-space",
  151. ]
  152. chord_modifiers = [
  153. "aug",
  154. "dim",
  155. "m",
  156. "maj",
  157. ]
  158. pitch_language_names = [
  159. "catalan",
  160. "català",
  161. "deutsch",
  162. "english",
  163. "espanol",
  164. "español",
  165. "français",
  166. "italiano",
  167. "nederlands",
  168. "norsk",
  169. "portugues",
  170. "português",
  171. "suomi",
  172. "svenska",
  173. "vlaams",
  174. ]
  175. pitches = [
  176. "R",
  177. "a",
  178. "a-flat",
  179. "a-flatflat",
  180. "a-natural",
  181. "a-sharp",
  182. "a-sharpsharp",
  183. "acousticbassdrum",
  184. "acousticsnare",
  185. "aeh",
  186. "aes",
  187. "aeseh",
  188. "aeses",
  189. "aess",
  190. "aesseh",
  191. "aessess",
  192. "af",
  193. "aff",
  194. "agh",
  195. "agl",
  196. "ah",
  197. "aih",
  198. "ais",
  199. "aisih",
  200. "aisis",
  201. "aiss",
  202. "aissih",
  203. "aississ",
  204. "aqf",
  205. "aqs",
  206. "as",
  207. "asah",
  208. "asas",
  209. "aseh",
  210. "ases",
  211. "ass",
  212. "asseh",
  213. "assess",
  214. "atqf",
  215. "atqs",
  216. "ax",
  217. "b",
  218. "b-flat",
  219. "b-flatflat",
  220. "b-natural",
  221. "b-sharp",
  222. "b-sharpsharp",
  223. "bassdrum",
  224. "bb",
  225. "bd",
  226. "bda",
  227. "beh",
  228. "bes",
  229. "beseh",
  230. "beses",
  231. "bess",
  232. "bf",
  233. "bff",
  234. "bih",
  235. "bis",
  236. "bisih",
  237. "bisis",
  238. "boh",
  239. "bohm",
  240. "boho",
  241. "bol",
  242. "bolm",
  243. "bolo",
  244. "bqf",
  245. "bqs",
  246. "bs",
  247. "bss",
  248. "btqf",
  249. "btqs",
  250. "bx",
  251. "c",
  252. "c-flat",
  253. "c-flatflat",
  254. "c-natural",
  255. "c-sharp",
  256. "c-sharpsharp",
  257. "cab",
  258. "cabasa",
  259. "cb",
  260. "ceh",
  261. "ces",
  262. "ceseh",
  263. "ceses",
  264. "cess",
  265. "cesseh",
  266. "cessess",
  267. "cf",
  268. "cff",
  269. "cgh",
  270. "cghm",
  271. "cgho",
  272. "cgl",
  273. "cglm",
  274. "cglo",
  275. "chinesecymbal",
  276. "cih",
  277. "cis",
  278. "cisih",
  279. "cisis",
  280. "ciss",
  281. "cissih",
  282. "cississ",
  283. "cl",
  284. "claves",
  285. "closedhihat",
  286. "cowbell",
  287. "cqf",
  288. "cqs",
  289. "crashcymbal",
  290. "crashcymbala",
  291. "crashcymbalb",
  292. "cs",
  293. "css",
  294. "ctqf",
  295. "ctqs",
  296. "cuim",
  297. "cuio",
  298. "cx",
  299. "cymc",
  300. "cymca",
  301. "cymcb",
  302. "cymch",
  303. "cymr",
  304. "cymra",
  305. "cymrb",
  306. "cyms",
  307. "d",
  308. "d-flat",
  309. "d-flatflat",
  310. "d-natural",
  311. "d-sharp",
  312. "d-sharpsharp",
  313. "deh",
  314. "des",
  315. "deseh",
  316. "deses",
  317. "dess",
  318. "desseh",
  319. "dessess",
  320. "df",
  321. "dff",
  322. "dih",
  323. "dis",
  324. "disih",
  325. "disis",
  326. "diss",
  327. "dissih",
  328. "dississ",
  329. "do",
  330. "dob",
  331. "dobb",
  332. "dobhb",
  333. "dobqt",
  334. "dobsb",
  335. "dobtqt",
  336. "docb",
  337. "docs",
  338. "dod",
  339. "dodd",
  340. "dodsd",
  341. "dohb",
  342. "dohk",
  343. "dok",
  344. "dokhk",
  345. "dokk",
  346. "doqb",
  347. "doqd",
  348. "doqs",
  349. "dos",
  350. "dosb",
  351. "dosd",
  352. "dosqt",
  353. "doss",
  354. "dostqt",
  355. "dotcb",
  356. "dotcs",
  357. "dotqb",
  358. "dotqd",
  359. "dotqs",
  360. "dox",
  361. "dqf",
  362. "dqs",
  363. "ds",
  364. "dss",
  365. "dtqf",
  366. "dtqs",
  367. "dx",
  368. "e",
  369. "e-flat",
  370. "e-flatflat",
  371. "e-natural",
  372. "e-sharp",
  373. "e-sharpsharp",
  374. "eeh",
  375. "ees",
  376. "eeseh",
  377. "eeses",
  378. "eess",
  379. "eesseh",
  380. "eessess",
  381. "ef",
  382. "eff",
  383. "eh",
  384. "eih",
  385. "eis",
  386. "eisih",
  387. "eisis",
  388. "eiss",
  389. "eissih",
  390. "eississ",
  391. "electricsnare",
  392. "eqf",
  393. "eqs",
  394. "es",
  395. "eseh",
  396. "eses",
  397. "ess",
  398. "esseh",
  399. "essess",
  400. "etqf",
  401. "etqs",
  402. "ex",
  403. "f",
  404. "f-flat",
  405. "f-flatflat",
  406. "f-natural",
  407. "f-sharp",
  408. "f-sharpsharp",
  409. "fa",
  410. "fab",
  411. "fabb",
  412. "fabhb",
  413. "fabqt",
  414. "fabsb",
  415. "fabtqt",
  416. "facb",
  417. "facs",
  418. "fad",
  419. "fadd",
  420. "fadsd",
  421. "fahb",
  422. "fahk",
  423. "fak",
  424. "fakhk",
  425. "fakk",
  426. "faqb",
  427. "faqd",
  428. "faqs",
  429. "fas",
  430. "fasb",
  431. "fasd",
  432. "fasqt",
  433. "fass",
  434. "fastqt",
  435. "fatcb",
  436. "fatcs",
  437. "fatqb",
  438. "fatqd",
  439. "fatqs",
  440. "fax",
  441. "feh",
  442. "fes",
  443. "feseh",
  444. "feses",
  445. "fess",
  446. "fesseh",
  447. "fessess",
  448. "ff",
  449. "fff",
  450. "fih",
  451. "fis",
  452. "fisih",
  453. "fisis",
  454. "fiss",
  455. "fissih",
  456. "fississ",
  457. "fqf",
  458. "fqs",
  459. "fs",
  460. "fss",
  461. "ftqf",
  462. "ftqs",
  463. "fx",
  464. "g",
  465. "g-flat",
  466. "g-flatflat",
  467. "g-natural",
  468. "g-sharp",
  469. "g-sharpsharp",
  470. "geh",
  471. "ges",
  472. "geseh",
  473. "geses",
  474. "gess",
  475. "gesseh",
  476. "gessess",
  477. "gf",
  478. "gff",
  479. "gih",
  480. "gis",
  481. "gisih",
  482. "gisis",
  483. "giss",
  484. "gissih",
  485. "gississ",
  486. "gqf",
  487. "gqs",
  488. "gs",
  489. "gss",
  490. "gtqf",
  491. "gtqs",
  492. "gui",
  493. "guil",
  494. "guiro",
  495. "guis",
  496. "gx",
  497. "h",
  498. "halfopenhihat",
  499. "handclap",
  500. "hc",
  501. "heh",
  502. "heseh",
  503. "heses",
  504. "hesseh",
  505. "hessess",
  506. "hh",
  507. "hhc",
  508. "hhho",
  509. "hho",
  510. "hhp",
  511. "hhs",
  512. "hiagogo",
  513. "hibongo",
  514. "hiconga",
  515. "highfloortom",
  516. "hightom",
  517. "hih",
  518. "hihat",
  519. "himidtom",
  520. "his",
  521. "hisidestick",
  522. "hisih",
  523. "hisis",
  524. "hiss",
  525. "hissih",
  526. "hississ",
  527. "hitimbale",
  528. "hiwoodblock",
  529. "la",
  530. "lab",
  531. "labb",
  532. "labhb",
  533. "labqt",
  534. "labsb",
  535. "labtqt",
  536. "lacb",
  537. "lacs",
  538. "lad",
  539. "ladd",
  540. "ladsd",
  541. "lahb",
  542. "lahk",
  543. "lak",
  544. "lakhk",
  545. "lakk",
  546. "laqb",
  547. "laqd",
  548. "laqs",
  549. "las",
  550. "lasb",
  551. "lasd",
  552. "lasqt",
  553. "lass",
  554. "lastqt",
  555. "latcb",
  556. "latcs",
  557. "latqb",
  558. "latqd",
  559. "latqs",
  560. "lax",
  561. "loagogo",
  562. "lobongo",
  563. "loconga",
  564. "longguiro",
  565. "longwhistle",
  566. "losidestick",
  567. "lotimbale",
  568. "lowfloortom",
  569. "lowmidtom",
  570. "lowoodblock",
  571. "lowtom",
  572. "mar",
  573. "maracas",
  574. "mi",
  575. "mib",
  576. "mibb",
  577. "mibhb",
  578. "mibqt",
  579. "mibsb",
  580. "mibtqt",
  581. "micb",
  582. "mics",
  583. "mid",
  584. "midd",
  585. "midsd",
  586. "mihb",
  587. "mihk",
  588. "mik",
  589. "mikhk",
  590. "mikk",
  591. "miqb",
  592. "miqd",
  593. "miqs",
  594. "mis",
  595. "misb",
  596. "misd",
  597. "misqt",
  598. "miss",
  599. "mistqt",
  600. "mitcb",
  601. "mitcs",
  602. "mitqb",
  603. "mitqd",
  604. "mitqs",
  605. "mix",
  606. "mutecuica",
  607. "mutehibongo",
  608. "mutehiconga",
  609. "mutelobongo",
  610. "muteloconga",
  611. "mutetriangle",
  612. "opencuica",
  613. "openhibongo",
  614. "openhiconga",
  615. "openhihat",
  616. "openlobongo",
  617. "openloconga",
  618. "opentriangle",
  619. "pedalhihat",
  620. "r",
  621. "rb",
  622. "re",
  623. "reb",
  624. "rebb",
  625. "rebhb",
  626. "rebqt",
  627. "rebsb",
  628. "rebtqt",
  629. "recb",
  630. "recs",
  631. "red",
  632. "redd",
  633. "redsd",
  634. "rehb",
  635. "rehk",
  636. "rek",
  637. "rekhk",
  638. "rekk",
  639. "reqb",
  640. "reqd",
  641. "reqs",
  642. "res",
  643. "resb",
  644. "resd",
  645. "resqt",
  646. "ress",
  647. "restqt",
  648. "retcb",
  649. "retcs",
  650. "retqb",
  651. "retqd",
  652. "retqs",
  653. "rex",
  654. "ridebell",
  655. "ridecymbal",
  656. "ridecymbala",
  657. "ridecymbalb",
  658. "ré",
  659. "réb",
  660. "rébb",
  661. "rébsb",
  662. "réd",
  663. "rédd",
  664. "rédsd",
  665. "résb",
  666. "résd",
  667. "réx",
  668. "shortguiro",
  669. "shortwhistle",
  670. "si",
  671. "sib",
  672. "sibb",
  673. "sibhb",
  674. "sibqt",
  675. "sibsb",
  676. "sibtqt",
  677. "sicb",
  678. "sics",
  679. "sid",
  680. "sidd",
  681. "sidestick",
  682. "sidsd",
  683. "sihb",
  684. "sihk",
  685. "sik",
  686. "sikhk",
  687. "sikk",
  688. "siqb",
  689. "siqd",
  690. "siqs",
  691. "sis",
  692. "sisb",
  693. "sisd",
  694. "sisqt",
  695. "siss",
  696. "sistqt",
  697. "sitcb",
  698. "sitcs",
  699. "sitqb",
  700. "sitqd",
  701. "sitqs",
  702. "six",
  703. "sn",
  704. "sna",
  705. "snare",
  706. "sne",
  707. "sol",
  708. "solb",
  709. "solbb",
  710. "solbhb",
  711. "solbqt",
  712. "solbsb",
  713. "solbtqt",
  714. "solcb",
  715. "solcs",
  716. "sold",
  717. "soldd",
  718. "soldsd",
  719. "solhb",
  720. "solhk",
  721. "solk",
  722. "solkhk",
  723. "solkk",
  724. "solqb",
  725. "solqd",
  726. "solqs",
  727. "sols",
  728. "solsb",
  729. "solsd",
  730. "solsqt",
  731. "solss",
  732. "solstqt",
  733. "soltcb",
  734. "soltcs",
  735. "soltqb",
  736. "soltqd",
  737. "soltqs",
  738. "solx",
  739. "splashcymbal",
  740. "splashhihat",
  741. "ss",
  742. "ssh",
  743. "ssl",
  744. "tamb",
  745. "tambourine",
  746. "timh",
  747. "timl",
  748. "tomfh",
  749. "tomfl",
  750. "tomh",
  751. "toml",
  752. "tommh",
  753. "tomml",
  754. "tri",
  755. "triangle",
  756. "trim",
  757. "trio",
  758. "tt",
  759. "vibraslap",
  760. "vibs",
  761. "wbh",
  762. "wbl",
  763. "whl",
  764. "whs",
  765. ]
  766. music_functions = [
  767. "=",
  768. "absolute",
  769. "acciaccatura",
  770. "accidentalStyle",
  771. "addChordShape",
  772. "addInstrumentDefinition",
  773. "addQuote",
  774. "after",
  775. "afterGrace",
  776. "allowPageTurn",
  777. "allowVoltaHook",
  778. "alterBroken",
  779. "alternative",
  780. "ambitusAfter",
  781. "appendToTag",
  782. "appendToTagMarkup",
  783. "applyContext",
  784. "applyMusic",
  785. "applyOutput",
  786. "appoggiatura",
  787. "assertBeamQuant",
  788. "assertBeamSlope",
  789. "atLeft",
  790. "atRight",
  791. "augmentum",
  792. "autoChange",
  793. "balloonGrobText",
  794. "balloonText",
  795. "bar",
  796. "barNumberCheck",
  797. "beamExceptions",
  798. "bendAfter",
  799. "bendHold",
  800. "bendStartLevel",
  801. "bookOutputName",
  802. "bookOutputSuffix",
  803. "breathe",
  804. "caesura",
  805. "change",
  806. "chordRepeats",
  807. "clef",
  808. "codaMark",
  809. "compoundMeter",
  810. "compressMMRests",
  811. "contextPropertyCheck",
  812. "crossStaff",
  813. "cueClef",
  814. "cueClefUnset",
  815. "cueDuring",
  816. "cueDuringWithClef",
  817. "deadNote",
  818. "defineBarLine",
  819. "displayLilyMusic",
  820. "displayMusic",
  821. "displayScheme",
  822. "dropNote",
  823. "enablePolymeter",
  824. "endSpanners",
  825. "eventChords",
  826. "featherDurations",
  827. "finger",
  828. "fixed",
  829. "footnote",
  830. "grace",
  831. "grobdescriptions",
  832. "harmonicByFret",
  833. "harmonicByRatio",
  834. "harmonicNote",
  835. "harmonicsOn",
  836. "hide",
  837. "inStaffSegno",
  838. "incipit",
  839. "inherit-acceptability",
  840. "initialContextFrom",
  841. "instrumentSwitch",
  842. "inversion",
  843. "invertChords",
  844. "jump",
  845. "keepWithTag",
  846. "key",
  847. "killCues",
  848. "label",
  849. "language",
  850. "languageRestore",
  851. "languageSaveAndChange",
  852. "ligature",
  853. "magnifyMusic",
  854. "magnifyStaff",
  855. "makeClusters",
  856. "makeDefaultStringTuning",
  857. "mark",
  858. "markupMap",
  859. "modalInversion",
  860. "modalTranspose",
  861. "musicLength",
  862. "musicMap",
  863. "noPageBreak",
  864. "noPageTurn",
  865. "octaveCheck",
  866. "offset",
  867. "omit",
  868. "once",
  869. "ottava",
  870. "override",
  871. "overrideProperty",
  872. "overrideTimeSignatureSettings",
  873. "pageBreak",
  874. "pageTurn",
  875. "palmMute",
  876. "palmMuteOn",
  877. "parallelMusic",
  878. "parenthesize",
  879. "partCombine",
  880. "partCombineDown",
  881. "partCombineForce",
  882. "partCombineUp",
  883. "partial",
  884. "phrasingSlurDashPattern",
  885. "pitchedTrill",
  886. "pointAndClickOff",
  887. "pointAndClickOn",
  888. "pointAndClickTypes",
  889. "popContextProperty",
  890. "preBend",
  891. "preBendHold",
  892. "propertyOverride",
  893. "propertyRevert",
  894. "propertySet",
  895. "propertyTweak",
  896. "propertyUnset",
  897. "pushContextProperty",
  898. "pushToTag",
  899. "pushToTagMarkup",
  900. "quoteDuring",
  901. "raiseNote",
  902. "reduceChords",
  903. "relative",
  904. "removeWithTag",
  905. "repeat",
  906. "resetRelativeOctave",
  907. "responsum",
  908. "retrograde",
  909. "revert",
  910. "revertTimeSignatureSettings",
  911. "rightHandFinger",
  912. "scaleDurations",
  913. "sectionLabel",
  914. "segnoMark",
  915. "set",
  916. "settingsFrom",
  917. "shape",
  918. "shiftDurations",
  919. "single",
  920. "skip",
  921. "slashedGrace",
  922. "slurDashPattern",
  923. "staffHighlight",
  924. "storePredefinedDiagram",
  925. "stringTuning",
  926. "styledNoteHeads",
  927. "tabChordRepeats",
  928. "tabChordRepetition",
  929. "tag",
  930. "tagGroup",
  931. "tempo",
  932. "temporary",
  933. "textEndMark",
  934. "textMark",
  935. "tieDashPattern",
  936. "time",
  937. "times",
  938. "tocItem",
  939. "transpose",
  940. "transposedCueDuring",
  941. "transposition",
  942. "tuplet",
  943. "tupletSpan",
  944. "tweak",
  945. "undo",
  946. "unfoldRepeats",
  947. "unfolded",
  948. "unset",
  949. "versus",
  950. "voices",
  951. "void",
  952. "volta",
  953. "vshape",
  954. "withMusicProperty",
  955. "withRelativeDir",
  956. "xNote",
  957. ]
  958. dynamics = [
  959. "!",
  960. "<",
  961. ">",
  962. "cr",
  963. "cresc",
  964. "decr",
  965. "decresc",
  966. "dim",
  967. "endcr",
  968. "endcresc",
  969. "enddecr",
  970. "enddecresc",
  971. "enddim",
  972. "f",
  973. "ff",
  974. "fff",
  975. "ffff",
  976. "fffff",
  977. "fp",
  978. "fz",
  979. "mf",
  980. "mp",
  981. "n",
  982. "p",
  983. "pp",
  984. "ppp",
  985. "pppp",
  986. "ppppp",
  987. "rfz",
  988. "sf",
  989. "sff",
  990. "sfp",
  991. "sfz",
  992. "sp",
  993. "spp",
  994. ]
  995. articulations = [
  996. "(",
  997. ")",
  998. "-",
  999. "[",
  1000. "]",
  1001. "^",
  1002. "accent",
  1003. "accentus",
  1004. "arpeggio",
  1005. "bachschleifer",
  1006. "breakDynamicSpan",
  1007. "circulus",
  1008. "coda",
  1009. "dashBang",
  1010. "dashDash",
  1011. "dashDot",
  1012. "dashHat",
  1013. "dashLarger",
  1014. "dashPlus",
  1015. "dashUnderscore",
  1016. "downbow",
  1017. "downmordent",
  1018. "downprall",
  1019. "episemFinis",
  1020. "episemInitium",
  1021. "espressivo",
  1022. "fermata",
  1023. "flageolet",
  1024. "glide",
  1025. "glissando",
  1026. "halfopen",
  1027. "harmonic",
  1028. "haydnturn",
  1029. "henzelongfermata",
  1030. "henzeshortfermata",
  1031. "ictus",
  1032. "laissezVibrer",
  1033. "lheel",
  1034. "lineprall",
  1035. "longfermata",
  1036. "ltoe",
  1037. "marcato",
  1038. "mordent",
  1039. "noBeam",
  1040. "open",
  1041. "portato",
  1042. "prall",
  1043. "pralldown",
  1044. "prallmordent",
  1045. "prallprall",
  1046. "prallup",
  1047. "repeatTie",
  1048. "reverseturn",
  1049. "rheel",
  1050. "rtoe",
  1051. "segno",
  1052. "semicirculus",
  1053. "shortfermata",
  1054. "signumcongruentiae",
  1055. "slashturn",
  1056. "snappizzicato",
  1057. "sostenutoOff",
  1058. "sostenutoOn",
  1059. "staccatissimo",
  1060. "staccato",
  1061. "startGraceSlur",
  1062. "startGroup",
  1063. "startTextSpan",
  1064. "startTrillSpan",
  1065. "stopGraceSlur",
  1066. "stopGroup",
  1067. "stopTextSpan",
  1068. "stopTrillSpan",
  1069. "stopped",
  1070. "sustainOff",
  1071. "sustainOn",
  1072. "tenuto",
  1073. "thumb",
  1074. "treCorde",
  1075. "trill",
  1076. "turn",
  1077. "unaCorda",
  1078. "upbow",
  1079. "upmordent",
  1080. "upprall",
  1081. "varcoda",
  1082. "verylongfermata",
  1083. "veryshortfermata",
  1084. "vowelTransition",
  1085. "~",
  1086. ]
  1087. music_commands = [
  1088. "IIJ",
  1089. "IJ",
  1090. "[",
  1091. "]",
  1092. "aikenHeads",
  1093. "aikenHeadsMinor",
  1094. "aikenThinHeads",
  1095. "aikenThinHeadsMinor",
  1096. "allowBreak",
  1097. "arabicStringNumbers",
  1098. "arpeggioArrowDown",
  1099. "arpeggioArrowUp",
  1100. "arpeggioBracket",
  1101. "arpeggioNormal",
  1102. "arpeggioParenthesis",
  1103. "arpeggioParenthesisDashed",
  1104. "ascendens",
  1105. "auctum",
  1106. "autoBeamOff",
  1107. "autoBeamOn",
  1108. "autoBreaksOff",
  1109. "autoBreaksOn",
  1110. "autoLineBreaksOff",
  1111. "autoLineBreaksOn",
  1112. "autoPageBreaksOff",
  1113. "autoPageBreaksOn",
  1114. "balloonLengthOff",
  1115. "balloonLengthOn",
  1116. "bassFigureExtendersOff",
  1117. "bassFigureExtendersOn",
  1118. "bassFigureStaffAlignmentDown",
  1119. "bassFigureStaffAlignmentNeutral",
  1120. "bassFigureStaffAlignmentUp",
  1121. "break",
  1122. "cadenzaOff",
  1123. "cadenzaOn",
  1124. "cavum",
  1125. "compressEmptyMeasures",
  1126. "crescHairpin",
  1127. "crescTextCresc",
  1128. "deadNotesOff",
  1129. "deadNotesOn",
  1130. "defaultNoteHeads",
  1131. "defaultTimeSignature",
  1132. "deminutum",
  1133. "deprecatedcresc",
  1134. "deprecateddim",
  1135. "deprecatedendcresc",
  1136. "deprecatedenddim",
  1137. "descendens",
  1138. "dimHairpin",
  1139. "dimTextDecr",
  1140. "dimTextDecresc",
  1141. "dimTextDim",
  1142. "divisioMaior",
  1143. "divisioMaxima",
  1144. "divisioMinima",
  1145. "dotsDown",
  1146. "dotsNeutral",
  1147. "dotsUp",
  1148. "dynamicDown",
  1149. "dynamicNeutral",
  1150. "dynamicUp",
  1151. "easyHeadsOff",
  1152. "easyHeadsOn",
  1153. "endSkipNCs",
  1154. "expandEmptyMeasures",
  1155. "finalis",
  1156. "fine",
  1157. "flagStyleDefault",
  1158. "flagStyleStacked",
  1159. "flexa",
  1160. "frenchChords",
  1161. "funkHeads",
  1162. "funkHeadsMinor",
  1163. "germanChords",
  1164. "harmonicsOff",
  1165. "hideNotes",
  1166. "hideSplitTiedTabNotes",
  1167. "hideStaffSwitch",
  1168. "huge",
  1169. "ignatzekExceptionMusic",
  1170. "iij",
  1171. "ij",
  1172. "improvisationOff",
  1173. "improvisationOn",
  1174. "inclinatum",
  1175. "italianChords",
  1176. "kievanOff",
  1177. "kievanOn",
  1178. "large",
  1179. "linea",
  1180. "markLengthOff",
  1181. "markLengthOn",
  1182. "medianChordGridStyle",
  1183. "melisma",
  1184. "melismaEnd",
  1185. "mergeDifferentlyDottedOff",
  1186. "mergeDifferentlyDottedOn",
  1187. "mergeDifferentlyHeadedOff",
  1188. "mergeDifferentlyHeadedOn",
  1189. "newSpacingSection",
  1190. "noBreak",
  1191. "normalsize",
  1192. "numericTimeSignature",
  1193. "oneVoice",
  1194. "oriscus",
  1195. "palmMuteOff",
  1196. "partCombineApart",
  1197. "partCombineAutomatic",
  1198. "partCombineChords",
  1199. "partCombineSoloI",
  1200. "partCombineSoloII",
  1201. "partCombineUnisono",
  1202. "pes",
  1203. "phrasingSlurDashed",
  1204. "phrasingSlurDotted",
  1205. "phrasingSlurDown",
  1206. "phrasingSlurHalfDashed",
  1207. "phrasingSlurHalfSolid",
  1208. "phrasingSlurNeutral",
  1209. "phrasingSlurSolid",
  1210. "phrasingSlurUp",
  1211. "predefinedFretboardsOff",
  1212. "predefinedFretboardsOn",
  1213. "quilisma",
  1214. "romanStringNumbers",
  1215. "sacredHarpHeads",
  1216. "sacredHarpHeadsMinor",
  1217. "section",
  1218. "semiGermanChords",
  1219. "senzaMisuraTimeSignatureOff",
  1220. "senzaMisuraTimeSignatureX",
  1221. "setDefaultDurationToQuarter",
  1222. "shiftOff",
  1223. "shiftOn",
  1224. "shiftOnn",
  1225. "shiftOnnn",
  1226. "showSplitTiedTabNotes",
  1227. "showStaffSwitch",
  1228. "skipNC",
  1229. "skipNCs",
  1230. "slurDashed",
  1231. "slurDotted",
  1232. "slurDown",
  1233. "slurHalfDashed",
  1234. "slurHalfSolid",
  1235. "slurNeutral",
  1236. "slurSolid",
  1237. "slurUp",
  1238. "small",
  1239. "southernHarmonyHeads",
  1240. "southernHarmonyHeadsMinor",
  1241. "startAcciaccaturaMusic",
  1242. "startAppoggiaturaMusic",
  1243. "startGraceMusic",
  1244. "startMeasureCount",
  1245. "startMeasureSpanner",
  1246. "startOptionalMaterial",
  1247. "startSlashedGraceMusic",
  1248. "startStaff",
  1249. "stemDown",
  1250. "stemNeutral",
  1251. "stemUp",
  1252. "stopAcciaccaturaMusic",
  1253. "stopAppoggiaturaMusic",
  1254. "stopGraceMusic",
  1255. "stopMeasureCount",
  1256. "stopMeasureSpanner",
  1257. "stopOptionalMaterial",
  1258. "stopSlashedGraceMusic",
  1259. "stopStaff",
  1260. "stopStaffHighlight",
  1261. "stropha",
  1262. "tabFullNotation",
  1263. "teeny",
  1264. "textLengthOff",
  1265. "textLengthOn",
  1266. "textSpannerDown",
  1267. "textSpannerNeutral",
  1268. "textSpannerUp",
  1269. "tieDashed",
  1270. "tieDotted",
  1271. "tieDown",
  1272. "tieHalfDashed",
  1273. "tieHalfSolid",
  1274. "tieNeutral",
  1275. "tieSolid",
  1276. "tieUp",
  1277. "tiny",
  1278. "tupletDown",
  1279. "tupletNeutral",
  1280. "tupletUp",
  1281. "unHideNotes",
  1282. "virga",
  1283. "virgula",
  1284. "voiceFour",
  1285. "voiceFourStyle",
  1286. "voiceNeutralStyle",
  1287. "voiceOne",
  1288. "voiceOneStyle",
  1289. "voiceThree",
  1290. "voiceThreeStyle",
  1291. "voiceTwo",
  1292. "voiceTwoStyle",
  1293. "walkerHeads",
  1294. "walkerHeadsMinor",
  1295. "xNotesOff",
  1296. "xNotesOn",
  1297. "|",
  1298. "~",
  1299. ]
  1300. markup_commands = [
  1301. "abs-fontsize",
  1302. "abs-hspace",
  1303. "abs-vspace",
  1304. "accidental",
  1305. "align-on-other",
  1306. "annotate-moving",
  1307. "append-to-tag",
  1308. "arrow-head",
  1309. "auto-footnote",
  1310. "backslashed-digit",
  1311. "bar-line",
  1312. "beam",
  1313. "bold",
  1314. "box",
  1315. "bracket",
  1316. "caps",
  1317. "center-align",
  1318. "center-column",
  1319. "char",
  1320. "circle",
  1321. "coda",
  1322. "column",
  1323. "column-lines",
  1324. "combine",
  1325. "compound-meter",
  1326. "concat",
  1327. "conditional-trill-markup",
  1328. "customTabClef",
  1329. "dir-column",
  1330. "discant",
  1331. "doubleflat",
  1332. "doublesharp",
  1333. "draw-circle",
  1334. "draw-dashed-line",
  1335. "draw-dotted-line",
  1336. "draw-hline",
  1337. "draw-line",
  1338. "draw-squiggle-line",
  1339. "dynamic",
  1340. "ellipse",
  1341. "epsfile",
  1342. "eyeglasses",
  1343. "fermata",
  1344. "figured-bass",
  1345. "fill-line",
  1346. "fill-with-pattern",
  1347. "filled-box",
  1348. "finger",
  1349. "first-visible",
  1350. "flat",
  1351. "fontCaps",
  1352. "fontsize",
  1353. "footnote",
  1354. "fraction",
  1355. "freeBass",
  1356. "fret-diagram",
  1357. "fret-diagram-terse",
  1358. "fret-diagram-verbose",
  1359. "fromproperty",
  1360. "general-align",
  1361. "halign",
  1362. "harp-pedal",
  1363. "hbracket",
  1364. "hcenter-in",
  1365. "hspace",
  1366. "huge",
  1367. "if",
  1368. "image",
  1369. "italic",
  1370. "justified-lines",
  1371. "justify",
  1372. "justify-field",
  1373. "justify-line",
  1374. "justify-string",
  1375. "keep-with-tag",
  1376. "large",
  1377. "larger",
  1378. "left-align",
  1379. "left-brace",
  1380. "left-column",
  1381. "line",
  1382. "lookup",
  1383. "lower",
  1384. "magnify",
  1385. "map-markup-commands",
  1386. "markalphabet",
  1387. "markletter",
  1388. "markup",
  1389. "markuplist",
  1390. "multi-measure-rest-by-number",
  1391. "musicglyph",
  1392. "natural",
  1393. "normal-size-sub",
  1394. "normal-size-super",
  1395. "normal-text",
  1396. "normal-weight",
  1397. "normalsize",
  1398. "note",
  1399. "note-by-number",
  1400. "null",
  1401. "number",
  1402. "on-the-fly",
  1403. "oval",
  1404. "overlay",
  1405. "override",
  1406. "override-lines",
  1407. "overtie",
  1408. "pad-around",
  1409. "pad-markup",
  1410. "pad-to-box",
  1411. "pad-x",
  1412. "page-link",
  1413. "page-ref",
  1414. "parenthesize",
  1415. "path",
  1416. "pattern",
  1417. "polygon",
  1418. "postscript",
  1419. "property-recursive",
  1420. "push-to-tag",
  1421. "put-adjacent",
  1422. "qr-code",
  1423. "raise",
  1424. "remove-with-tag",
  1425. "replace",
  1426. "rest",
  1427. "rest-by-number",
  1428. "rhythm",
  1429. "right-align",
  1430. "right-brace",
  1431. "right-column",
  1432. "rotate",
  1433. "rounded-box",
  1434. "sans",
  1435. "scale",
  1436. "score",
  1437. "score-lines",
  1438. "segno",
  1439. "semiflat",
  1440. "semisharp",
  1441. "serif",
  1442. "sesquiflat",
  1443. "sesquisharp",
  1444. "sharp",
  1445. "simple",
  1446. "slashed-digit",
  1447. "small",
  1448. "smallCaps",
  1449. "smaller",
  1450. "stdBass",
  1451. "stdBassIV",
  1452. "stdBassV",
  1453. "stdBassVI",
  1454. "stencil",
  1455. "string-lines",
  1456. "strut",
  1457. "sub",
  1458. "super",
  1459. "table",
  1460. "table-of-contents",
  1461. "tag",
  1462. "tag-list",
  1463. "teeny",
  1464. "text-accidental",
  1465. "text-doubleflat",
  1466. "text-doublesharp",
  1467. "text-flat",
  1468. "text-natural",
  1469. "text-sharp",
  1470. "tie",
  1471. "tied-lyric",
  1472. "tiny",
  1473. "translate",
  1474. "translate-scaled",
  1475. "transparent",
  1476. "triangle",
  1477. "typewriter",
  1478. "underline",
  1479. "undertie",
  1480. "unless",
  1481. "upright",
  1482. "varcoda",
  1483. "vcenter",
  1484. "verbatim-file",
  1485. "volta-number",
  1486. "vspace",
  1487. "whiteout",
  1488. "with-color",
  1489. "with-dimension",
  1490. "with-dimension-from",
  1491. "with-dimensions",
  1492. "with-dimensions-from",
  1493. "with-link",
  1494. "with-outline",
  1495. "with-string-transformer",
  1496. "with-true-dimension",
  1497. "with-true-dimensions",
  1498. "with-url",
  1499. "woodwind-diagram",
  1500. "wordwrap",
  1501. "wordwrap-field",
  1502. "wordwrap-internal",
  1503. "wordwrap-lines",
  1504. "wordwrap-string",
  1505. "wordwrap-string-internal",
  1506. ]
  1507. grobs = [
  1508. "Accidental",
  1509. "AccidentalCautionary",
  1510. "AccidentalPlacement",
  1511. "AccidentalSuggestion",
  1512. "Ambitus",
  1513. "AmbitusAccidental",
  1514. "AmbitusLine",
  1515. "AmbitusNoteHead",
  1516. "Arpeggio",
  1517. "BalloonText",
  1518. "BarLine",
  1519. "BarNumber",
  1520. "BassFigure",
  1521. "BassFigureAlignment",
  1522. "BassFigureAlignmentPositioning",
  1523. "BassFigureBracket",
  1524. "BassFigureContinuation",
  1525. "BassFigureLine",
  1526. "Beam",
  1527. "BendAfter",
  1528. "BendSpanner",
  1529. "BreakAlignGroup",
  1530. "BreakAlignment",
  1531. "BreathingSign",
  1532. "CaesuraScript",
  1533. "CenteredBarNumber",
  1534. "CenteredBarNumberLineSpanner",
  1535. "ChordName",
  1536. "ChordSquare",
  1537. "Clef",
  1538. "ClefModifier",
  1539. "ClusterSpanner",
  1540. "ClusterSpannerBeacon",
  1541. "CodaMark",
  1542. "CombineTextScript",
  1543. "ControlPoint",
  1544. "ControlPolygon",
  1545. "CueClef",
  1546. "CueEndClef",
  1547. "Custos",
  1548. "Divisio",
  1549. "DotColumn",
  1550. "Dots",
  1551. "DoublePercentRepeat",
  1552. "DoublePercentRepeatCounter",
  1553. "DoubleRepeatSlash",
  1554. "DurationLine",
  1555. "DynamicLineSpanner",
  1556. "DynamicText",
  1557. "DynamicTextSpanner",
  1558. "Episema",
  1559. "FingerGlideSpanner",
  1560. "Fingering",
  1561. "FingeringColumn",
  1562. "Flag",
  1563. "Footnote",
  1564. "FretBoard",
  1565. "Glissando",
  1566. "GraceSpacing",
  1567. "GridChordName",
  1568. "GridLine",
  1569. "GridPoint",
  1570. "Hairpin",
  1571. "HorizontalBracket",
  1572. "HorizontalBracketText",
  1573. "InstrumentName",
  1574. "InstrumentSwitch",
  1575. "JumpScript",
  1576. "KeyCancellation",
  1577. "KeySignature",
  1578. "KievanLigature",
  1579. "LaissezVibrerTie",
  1580. "LaissezVibrerTieColumn",
  1581. "LedgerLineSpanner",
  1582. "LeftEdge",
  1583. "LigatureBracket",
  1584. "LyricExtender",
  1585. "LyricHyphen",
  1586. "LyricRepeatCount",
  1587. "LyricSpace",
  1588. "LyricText",
  1589. "MeasureCounter",
  1590. "MeasureGrouping",
  1591. "MeasureSpanner",
  1592. "MelodyItem",
  1593. "MensuralLigature",
  1594. "MetronomeMark",
  1595. "MultiMeasureRest",
  1596. "MultiMeasureRestNumber",
  1597. "MultiMeasureRestScript",
  1598. "MultiMeasureRestText",
  1599. "NonMusicalPaperColumn",
  1600. "NoteCollision",
  1601. "NoteColumn",
  1602. "NoteHead",
  1603. "NoteName",
  1604. "NoteSpacing",
  1605. "OptionalMaterialBracket",
  1606. "OttavaBracket",
  1607. "PaperColumn",
  1608. "Parentheses",
  1609. "PercentRepeat",
  1610. "PercentRepeatCounter",
  1611. "PhrasingSlur",
  1612. "PianoPedalBracket",
  1613. "RehearsalMark",
  1614. "RepeatSlash",
  1615. "RepeatTie",
  1616. "RepeatTieColumn",
  1617. "Rest",
  1618. "RestCollision",
  1619. "Script",
  1620. "ScriptColumn",
  1621. "ScriptRow",
  1622. "SectionLabel",
  1623. "SegnoMark",
  1624. "SignumRepetitionis",
  1625. "Slur",
  1626. "SostenutoPedal",
  1627. "SostenutoPedalLineSpanner",
  1628. "SpacingSpanner",
  1629. "SpanBar",
  1630. "SpanBarStub",
  1631. "StaffEllipsis",
  1632. "StaffGrouper",
  1633. "StaffHighlight",
  1634. "StaffSpacing",
  1635. "StaffSymbol",
  1636. "StanzaNumber",
  1637. "Stem",
  1638. "StemStub",
  1639. "StemTremolo",
  1640. "StringNumber",
  1641. "StrokeFinger",
  1642. "SustainPedal",
  1643. "SustainPedalLineSpanner",
  1644. "System",
  1645. "SystemStartBar",
  1646. "SystemStartBrace",
  1647. "SystemStartBracket",
  1648. "SystemStartSquare",
  1649. "TabNoteHead",
  1650. "TextMark",
  1651. "TextScript",
  1652. "TextSpanner",
  1653. "Tie",
  1654. "TieColumn",
  1655. "TimeSignature",
  1656. "TrillPitchAccidental",
  1657. "TrillPitchGroup",
  1658. "TrillPitchHead",
  1659. "TrillPitchParentheses",
  1660. "TrillSpanner",
  1661. "TupletBracket",
  1662. "TupletNumber",
  1663. "UnaCordaPedal",
  1664. "UnaCordaPedalLineSpanner",
  1665. "VaticanaLigature",
  1666. "VerticalAlignment",
  1667. "VerticalAxisGroup",
  1668. "VoiceFollower",
  1669. "VoltaBracket",
  1670. "VoltaBracketSpanner",
  1671. "VowelTransition",
  1672. ]
  1673. contexts = [
  1674. "ChoirStaff",
  1675. "ChordGrid",
  1676. "ChordGridScore",
  1677. "ChordNames",
  1678. "CueVoice",
  1679. "Devnull",
  1680. "DrumStaff",
  1681. "DrumVoice",
  1682. "Dynamics",
  1683. "FiguredBass",
  1684. "FretBoards",
  1685. "Global",
  1686. "GrandStaff",
  1687. "GregorianTranscriptionLyrics",
  1688. "GregorianTranscriptionStaff",
  1689. "GregorianTranscriptionVoice",
  1690. "InternalGregorianStaff",
  1691. "InternalMensuralStaff",
  1692. "KievanStaff",
  1693. "KievanVoice",
  1694. "Lyrics",
  1695. "MensuralStaff",
  1696. "MensuralVoice",
  1697. "NoteNames",
  1698. "NullVoice",
  1699. "OneStaff",
  1700. "PetrucciStaff",
  1701. "PetrucciVoice",
  1702. "PianoStaff",
  1703. "RhythmicStaff",
  1704. "Score",
  1705. "Staff",
  1706. "StaffGroup",
  1707. "StandaloneRhythmScore",
  1708. "StandaloneRhythmStaff",
  1709. "StandaloneRhythmVoice",
  1710. "TabStaff",
  1711. "TabVoice",
  1712. "Timing",
  1713. "VaticanaLyrics",
  1714. "VaticanaScore",
  1715. "VaticanaStaff",
  1716. "VaticanaVoice",
  1717. "Voice",
  1718. ]
  1719. translators = [
  1720. "Accidental_engraver",
  1721. "Alteration_glyph_engraver",
  1722. "Ambitus_engraver",
  1723. "Arpeggio_engraver",
  1724. "Auto_beam_engraver",
  1725. "Axis_group_engraver",
  1726. "Balloon_engraver",
  1727. "Bar_engraver",
  1728. "Bar_number_engraver",
  1729. "Beam_collision_engraver",
  1730. "Beam_engraver",
  1731. "Beam_performer",
  1732. "Beat_engraver",
  1733. "Beat_performer",
  1734. "Bend_engraver",
  1735. "Bend_spanner_engraver",
  1736. "Break_align_engraver",
  1737. "Breathing_sign_engraver",
  1738. "Caesura_engraver",
  1739. "Centered_bar_number_align_engraver",
  1740. "Chord_name_engraver",
  1741. "Chord_square_engraver",
  1742. "Chord_tremolo_engraver",
  1743. "Clef_engraver",
  1744. "Cluster_spanner_engraver",
  1745. "Collision_engraver",
  1746. "Completion_heads_engraver",
  1747. "Completion_rest_engraver",
  1748. "Concurrent_hairpin_engraver",
  1749. "Control_track_performer",
  1750. "Cue_clef_engraver",
  1751. "Current_chord_text_engraver",
  1752. "Custos_engraver",
  1753. "Divisio_engraver",
  1754. "Dot_column_engraver",
  1755. "Dots_engraver",
  1756. "Double_percent_repeat_engraver",
  1757. "Drum_note_performer",
  1758. "Drum_notes_engraver",
  1759. "Duration_line_engraver",
  1760. "Dynamic_align_engraver",
  1761. "Dynamic_engraver",
  1762. "Dynamic_performer",
  1763. "Episema_engraver",
  1764. "Extender_engraver",
  1765. "Figured_bass_engraver",
  1766. "Figured_bass_position_engraver",
  1767. "Finger_glide_engraver",
  1768. "Fingering_column_engraver",
  1769. "Fingering_engraver",
  1770. "Font_size_engraver",
  1771. "Footnote_engraver",
  1772. "Forbid_line_break_engraver",
  1773. "Fretboard_engraver",
  1774. "Glissando_engraver",
  1775. "Grace_auto_beam_engraver",
  1776. "Grace_beam_engraver",
  1777. "Grace_engraver",
  1778. "Grace_spacing_engraver",
  1779. "Grid_chord_name_engraver",
  1780. "Grid_line_span_engraver",
  1781. "Grid_point_engraver",
  1782. "Grob_pq_engraver",
  1783. "Horizontal_bracket_engraver",
  1784. "Horizontal_script_engraver",
  1785. "Hyphen_engraver",
  1786. "Instrument_name_engraver",
  1787. "Instrument_switch_engraver",
  1788. "Jump_engraver",
  1789. "Keep_alive_together_engraver",
  1790. "Key_engraver",
  1791. "Key_performer",
  1792. "Kievan_ligature_engraver",
  1793. "Laissez_vibrer_engraver",
  1794. "Ledger_line_engraver",
  1795. "Ligature_bracket_engraver",
  1796. "Lyric_engraver",
  1797. "Lyric_performer",
  1798. "Lyric_repeat_count_engraver",
  1799. "Mark_engraver",
  1800. "Mark_performer",
  1801. "Mark_tracking_translator",
  1802. "Measure_counter_engraver",
  1803. "Measure_grouping_engraver",
  1804. "Measure_spanner_engraver",
  1805. "Melody_engraver",
  1806. "Mensural_ligature_engraver",
  1807. "Merge_mmrest_numbers_engraver",
  1808. "Merge_rests_engraver",
  1809. "Metronome_mark_engraver",
  1810. "Midi_control_change_performer",
  1811. "Multi_measure_rest_engraver",
  1812. "New_fingering_engraver",
  1813. "Non_musical_script_column_engraver",
  1814. "Note_head_line_engraver",
  1815. "Note_heads_engraver",
  1816. "Note_name_engraver",
  1817. "Note_performer",
  1818. "Note_spacing_engraver",
  1819. "Optional_material_bracket_engraver",
  1820. "Ottava_spanner_engraver",
  1821. "Output_property_engraver",
  1822. "Page_turn_engraver",
  1823. "Paper_column_engraver",
  1824. "Parenthesis_engraver",
  1825. "Part_combine_engraver",
  1826. "Percent_repeat_engraver",
  1827. "Phrasing_slur_engraver",
  1828. "Piano_pedal_align_engraver",
  1829. "Piano_pedal_engraver",
  1830. "Piano_pedal_performer",
  1831. "Pitch_squash_engraver",
  1832. "Pitched_trill_engraver",
  1833. "Pure_from_neighbor_engraver",
  1834. "Repeat_acknowledge_engraver",
  1835. "Repeat_tie_engraver",
  1836. "Rest_collision_engraver",
  1837. "Rest_engraver",
  1838. "Rhythmic_column_engraver",
  1839. "Script_column_engraver",
  1840. "Script_engraver",
  1841. "Script_row_engraver",
  1842. "Separating_line_group_engraver",
  1843. "Show_control_points_engraver",
  1844. "Signum_repetitionis_engraver",
  1845. "Skip_typesetting_engraver",
  1846. "Slash_repeat_engraver",
  1847. "Slur_engraver",
  1848. "Slur_performer",
  1849. "Spacing_engraver",
  1850. "Span_arpeggio_engraver",
  1851. "Span_bar_engraver",
  1852. "Span_bar_stub_engraver",
  1853. "Span_stem_engraver",
  1854. "Spanner_break_forbid_engraver",
  1855. "Spanner_tracking_engraver",
  1856. "Staff_collecting_engraver",
  1857. "Staff_highlight_engraver",
  1858. "Staff_performer",
  1859. "Staff_symbol_engraver",
  1860. "Stanza_number_align_engraver",
  1861. "Stanza_number_engraver",
  1862. "Stem_engraver",
  1863. "System_start_delimiter_engraver",
  1864. "Tab_note_heads_engraver",
  1865. "Tab_staff_symbol_engraver",
  1866. "Tab_tie_follow_engraver",
  1867. "Tempo_performer",
  1868. "Text_engraver",
  1869. "Text_mark_engraver",
  1870. "Text_spanner_engraver",
  1871. "Tie_engraver",
  1872. "Tie_performer",
  1873. "Time_signature_engraver",
  1874. "Time_signature_performer",
  1875. "Timing_translator",
  1876. "Trill_spanner_engraver",
  1877. "Tuplet_engraver",
  1878. "Tweak_engraver",
  1879. "Vaticana_ligature_engraver",
  1880. "Vertical_align_engraver",
  1881. "Volta_engraver",
  1882. ]
  1883. scheme_functions = [
  1884. "!=",
  1885. "*location*",
  1886. "*parser*",
  1887. "Alteration_glyph_engraver",
  1888. "Beat_performer",
  1889. "Bend_engraver",
  1890. "Bend_spanner_engraver",
  1891. "Breathing_sign_engraver",
  1892. "Centered_bar_number_align_engraver",
  1893. "Chord_name_engraver",
  1894. "Chord_square_engraver",
  1895. "Current_chord_text_engraver",
  1896. "Divisio_engraver",
  1897. "Duration_line_engraver",
  1898. "Finger_glide_engraver",
  1899. "G_",
  1900. "Grid_chord_name_engraver",
  1901. "Horizontal_script_engraver",
  1902. "Lyric_repeat_count_engraver",
  1903. "Measure_counter_engraver",
  1904. "Measure_grouping_engraver",
  1905. "Measure_spanner_engraver",
  1906. "Merge_mmrest_numbers_engraver",
  1907. "Merge_rests_engraver",
  1908. "Optional_material_bracket_engraver",
  1909. "Show_control_points_engraver",
  1910. "Signum_repetitionis_engraver",
  1911. "Skip_typesetting_engraver",
  1912. "Span_stem_engraver",
  1913. "Spanner_tracking_engraver",
  1914. "Staff_highlight_engraver",
  1915. "Tab_tie_follow_engraver",
  1916. "Text_mark_engraver",
  1917. "Trill_spanner_engraver",
  1918. "_i",
  1919. "abs-fontsize-markup",
  1920. "abs-hspace-markup",
  1921. "abs-vspace-markup",
  1922. "accidental->markup",
  1923. "accidental->markup-italian",
  1924. "accidental-interface::calc-alteration",
  1925. "accidental-interface::calc-glyph-name",
  1926. "accidental-invalid?",
  1927. "accidental-markup",
  1928. "add-bar-glyph-print-procedure",
  1929. "add-grace-property",
  1930. "add-music",
  1931. "add-new-clef",
  1932. "add-point",
  1933. "add-quotable",
  1934. "add-score",
  1935. "add-simple-time-signature-style",
  1936. "add-stroke-glyph",
  1937. "add-stroke-straight",
  1938. "add-text",
  1939. "adjust-slash-stencil",
  1940. "align-on-other-markup",
  1941. "aligned-text-stencil-function",
  1942. "alist->hash-table",
  1943. "alist-keys",
  1944. "alist<?",
  1945. "alist?",
  1946. "all-bar-numbers-visible",
  1947. "all-equal?",
  1948. "all-repeat-counts-visible",
  1949. "allow-volta-hook",
  1950. "alteration->text-accidental-markup",
  1951. "alterations-in-key",
  1952. "ambitus-line::calc-gap",
  1953. "ambitus::print",
  1954. "analyse-spanner-states",
  1955. "ancestor-lookup-initialize",
  1956. "angle-0-2pi",
  1957. "angle-0-360",
  1958. "annotate-moving-markup",
  1959. "annotate-spacing-spec",
  1960. "annotate-y-interval",
  1961. "any-mmrest-events",
  1962. "append-to-tag-markup",
  1963. "apply-durations",
  1964. "apply-group-draw-rule-series",
  1965. "apply-tag-operating-markup",
  1966. "array-copy/subarray!",
  1967. "arrow-head-markup",
  1968. "arrow-stencil",
  1969. "arrow-stencil-maker",
  1970. "assemble-stencils",
  1971. "assert",
  1972. "assoc-get",
  1973. "assoc-keys",
  1974. "assoc-values",
  1975. "at-bar-line-substitute-caesura-type",
  1976. "aug-modifier",
  1977. "auto-footnote-markup",
  1978. "average",
  1979. "b",
  1980. "backslashed-digit-markup",
  1981. "bar-line-markup",
  1982. "bar-line::bar-y-extent",
  1983. "bar-line::calc-blot",
  1984. "bar-line::calc-break-visibility",
  1985. "bar-line::calc-glyph-name",
  1986. "bar-line::calc-glyph-name-for-direction",
  1987. "bar-line::compound-bar-line",
  1988. "bar-line::draw-filled-box",
  1989. "bar-line::widen-bar-extent-on-span",
  1990. "bass-clarinet-rh-ees-key-stencil",
  1991. "bassoon-bend-info-maker",
  1992. "bassoon-cc-six-key-stencil",
  1993. "bassoon-lh-a-flick-key-stencil",
  1994. "bassoon-lh-c-flick-key-stencil",
  1995. "bassoon-lh-cis-key-stencil",
  1996. "bassoon-lh-d-flick-key-stencil",
  1997. "bassoon-lh-ees-key-stencil",
  1998. "bassoon-lh-he-key-stencil",
  1999. "bassoon-lh-hees-key-stencil",
  2000. "bassoon-lh-lb-key-stencil",
  2001. "bassoon-lh-lbes-key-stencil",
  2002. "bassoon-lh-lc-key-stencil",
  2003. "bassoon-lh-ld-key-stencil",
  2004. "bassoon-lh-lhees-key-stencil",
  2005. "bassoon-lh-thumb-cis-key-stencil",
  2006. "bassoon-lh-whisper-key-stencil",
  2007. "bassoon-midline-rule",
  2008. "bassoon-rh-bes-key-stencil",
  2009. "bassoon-rh-cis-key-stencil",
  2010. "bassoon-rh-f-key-stencil",
  2011. "bassoon-rh-fis-key-stencil",
  2012. "bassoon-rh-gis-key-stencil",
  2013. "bassoon-rh-thumb-bes-key-stencil",
  2014. "bassoon-rh-thumb-e-key-stencil",
  2015. "bassoon-rh-thumb-fis-key-stencil",
  2016. "bassoon-rh-thumb-gis-key-stencil",
  2017. "bassoon-uber-key-stencil",
  2018. "beam-exceptions",
  2019. "beam-markup",
  2020. "beam::align-with-broken-parts",
  2021. "beam::calc-right-extreme-vertical-count",
  2022. "beam::get-kievan-positions",
  2023. "beam::get-kievan-quantized-positions",
  2024. "beam::place-broken-parts-individually",
  2025. "beam::slashed-stencil",
  2026. "beam::slope-like-broken-parts",
  2027. "beat-base",
  2028. "beat-structure",
  2029. "bend-spanner::print",
  2030. "bend::arrow-head-stencil",
  2031. "bend::calc-bend-x-begin",
  2032. "bend::calc-bend-x-end",
  2033. "bend::calc-y-coordinates",
  2034. "bend::draw-curves",
  2035. "bend::make-line-curve-stencil",
  2036. "bend::print",
  2037. "bend::remove-certain-tab-note-heads",
  2038. "bend::target-cautionary",
  2039. "bend::text-stencil",
  2040. "bend::text-string",
  2041. "bezier-head-for-stencil",
  2042. "binary-search",
  2043. "bit-list->byte-list",
  2044. "bit-list->int",
  2045. "bold-markup",
  2046. "book-first-page",
  2047. "boolean-or-fraction?",
  2048. "boolean-or-number?",
  2049. "boolean-or-symbol-or-symbol-list?",
  2050. "boolean-or-symbol?",
  2051. "bounding-note-heads-pitches",
  2052. "box-grob-stencil",
  2053. "box-markup",
  2054. "box-stencil",
  2055. "bracket-markup",
  2056. "bracketify-stencil",
  2057. "break-alignable-interface::self-alignment-of-anchor",
  2058. "break-alignable-interface::self-alignment-opposite-of-anchor",
  2059. "break-alignment-list",
  2060. "breathe::midi-length",
  2061. "buildflag",
  2062. "byte-list->bit-list",
  2063. "cached-file-contents",
  2064. "caesura-script-interface::before-line-breaking",
  2065. "caesura-to-bar-line-or-divisio",
  2066. "caesura-to-divisio",
  2067. "calc-harmonic-pitch",
  2068. "calc-line-thickness",
  2069. "calc-measure-length",
  2070. "calc-pattern-element",
  2071. "calc-repeat-slash-count",
  2072. "calculate-compound-beat-base",
  2073. "calculate-compound-beat-base-as-moment",
  2074. "calculate-compound-beat-grouping",
  2075. "calculate-compound-measure-length",
  2076. "calculate-compound-measure-length-as-moment",
  2077. "call-after-session",
  2078. "call-with-output-bytevector",
  2079. "caps-markup",
  2080. "car-or-identity",
  2081. "car<",
  2082. "car<=",
  2083. "cdr-or-identity",
  2084. "center-align-markup",
  2085. "center-column-markup",
  2086. "centered-spanner-interface::calc-x-offset",
  2087. "centered-stencil",
  2088. "chain-assoc-get",
  2089. "change-el->music",
  2090. "change-pitches",
  2091. "char-markup",
  2092. "cheap-list?",
  2093. "cheap-markup?",
  2094. "check-beam-quant",
  2095. "check-beam-slope-sign",
  2096. "check-broken-spanner",
  2097. "check-context-path",
  2098. "check-division-alist",
  2099. "check-for-annotation",
  2100. "check-for-replacement",
  2101. "check-grob-path",
  2102. "check-music-path",
  2103. "check-pitch-against-signature",
  2104. "check-quant-callbacks",
  2105. "check-slope-callbacks",
  2106. "chord-name->german-markup",
  2107. "chord-name->italian-markup",
  2108. "chord-square::height",
  2109. "chord-square::print",
  2110. "chord-square::width",
  2111. "circle-markup",
  2112. "circle-stencil",
  2113. "clarinet-lh-R-key-stencil",
  2114. "clarinet-lh-a-key-stencil",
  2115. "clarinet-lh-cis-key-stencil",
  2116. "clarinet-lh-d-key-stencil",
  2117. "clarinet-lh-e-key-stencil",
  2118. "clarinet-lh-ees-key-stencil",
  2119. "clarinet-lh-f-key-stencil",
  2120. "clarinet-lh-fis-key-stencil",
  2121. "clarinet-lh-gis-key-stencil",
  2122. "clarinet-lh-thumb-key-stencil",
  2123. "clarinet-rh-b-key-stencil",
  2124. "clarinet-rh-d-key-stencil",
  2125. "clarinet-rh-e-key-stencil",
  2126. "clarinet-rh-f-key-stencil",
  2127. "clarinet-rh-fis-key-stencil",
  2128. "clarinet-rh-four-key-stencil",
  2129. "clarinet-rh-gis-key-stencil",
  2130. "clarinet-rh-low-c-key-stencil",
  2131. "clarinet-rh-low-cis-key-stencil",
  2132. "clarinet-rh-low-d-key-stencil",
  2133. "clarinet-rh-one-key-stencil",
  2134. "clarinet-rh-three-key-stencil",
  2135. "clarinet-rh-two-key-stencil",
  2136. "clef-modifier::print",
  2137. "clef-transposition-markup",
  2138. "clef::print-modern-tab-if-set",
  2139. "clip-systems-to-region-stencils",
  2140. "clipped-systems-stencils",
  2141. "close-enough?",
  2142. "close-port-rename",
  2143. "closest-staff-line",
  2144. "coda-markup",
  2145. "collect-book-music-for-book",
  2146. "collect-bookpart-for-book",
  2147. "collect-music-aux",
  2148. "collect-music-for-book",
  2149. "collect-scores-for-book",
  2150. "color?",
  2151. "column-circle-stencil",
  2152. "column-lines-markup-list",
  2153. "column-markup",
  2154. "combine-markup",
  2155. "combine-tag-markup-additions",
  2156. "comparable-note-events",
  2157. "comparator-from-key",
  2158. "compile-all-markup-args",
  2159. "compile-all-markup-expressions",
  2160. "compile-markup-arg",
  2161. "compile-markup-expression",
  2162. "completize-formats",
  2163. "completize-grob-entry",
  2164. "compound-meter-markup",
  2165. "concat-markup",
  2166. "conditional-kern-before",
  2167. "conditional-string-capitalize",
  2168. "conditional-trill-markup-markup",
  2169. "configuration",
  2170. "cons-fret",
  2171. "constante-hairpin",
  2172. "construct-chord-elements",
  2173. "context-defs-from-music",
  2174. "context-mod-from-music",
  2175. "context-spec-music",
  2176. "control-point::calc-offset",
  2177. "control-polygon::calc-text",
  2178. "coord-axis",
  2179. "coord-rotate",
  2180. "coord-rotated",
  2181. "coord-scale",
  2182. "coord-translate",
  2183. "coord-x",
  2184. "coord-y",
  2185. "copy-binary-file",
  2186. "copy-repeat-chord",
  2187. "count-list",
  2188. "create-file-exclusive",
  2189. "create-fretboard",
  2190. "create-glyph-flag",
  2191. "cross-staff-connect",
  2192. "css-color",
  2193. "cue-substitute",
  2194. "current-or-previous-voice-states",
  2195. "customTabClef-markup",
  2196. "custos::print",
  2197. "cyclic-base-value",
  2198. "debugf",
  2199. "def-grace-function",
  2200. "default-auto-beam-check",
  2201. "default-flag",
  2202. "default-paren-color",
  2203. "define-bar-line",
  2204. "define-color",
  2205. "define-deprecated-property",
  2206. "define-event-class",
  2207. "define-event-function",
  2208. "define-fonts",
  2209. "define-grob-property",
  2210. "define-internal-grob-property",
  2211. "define-markup-command",
  2212. "define-markup-command-internal",
  2213. "define-markup-list-command",
  2214. "define-music-function",
  2215. "define-scheme-function",
  2216. "define-session",
  2217. "define-session-public",
  2218. "define-syntax-function",
  2219. "define-syntax-public",
  2220. "define-syntax-rule-public",
  2221. "define-tag-group",
  2222. "define-void-function",
  2223. "degree-first-true",
  2224. "degrees->radians",
  2225. "deprecated-getter-object-property",
  2226. "deprecated-setter-object-property",
  2227. "deprecated-translation-getter-description",
  2228. "deprecated-translation-setter-description",
  2229. "descend-to-context",
  2230. "determine-frets",
  2231. "determine-split-list",
  2232. "determine-string-fret-finger",
  2233. "dim-modifier",
  2234. "dimension-arrows",
  2235. "dir-basename",
  2236. "dir-column-markup",
  2237. "direction-scaled",
  2238. "display-lily-music",
  2239. "display-music",
  2240. "display-scheme-music",
  2241. "dodecaphonic-no-repeat-rule",
  2242. "done?",
  2243. "dot-column-interface::pad-by-one-dot-width",
  2244. "dot-has-color",
  2245. "dot-is-inverted",
  2246. "dot-is-parenthesized",
  2247. "dots::calc-dot-count",
  2248. "dots::calc-dot-stencil",
  2249. "dots::calc-glyph-name",
  2250. "dots::calc-staff-position",
  2251. "doubleflat-markup",
  2252. "doublesharp-markup",
  2253. "draw-circle-markup",
  2254. "draw-dashed-line-markup",
  2255. "draw-dotted-line-markup",
  2256. "draw-hline-markup",
  2257. "draw-line-markup",
  2258. "draw-squiggle-line-markup",
  2259. "dump-zombies",
  2260. "duration",
  2261. "duration-dot-factor",
  2262. "duration-line::calc",
  2263. "duration-line::calc-thickness",
  2264. "duration-line::print",
  2265. "duration-log-factor",
  2266. "duration-of-note",
  2267. "duration-or-music?",
  2268. "duration-visual",
  2269. "duration-visual-length",
  2270. "dynamic-markup",
  2271. "dynamic-text-spanner::before-line-breaking",
  2272. "elbowed-hairpin",
  2273. "ellipse-markup",
  2274. "ellipse-radius",
  2275. "ellipse-stencil",
  2276. "end-broken-spanner?",
  2277. "ensure-list",
  2278. "entry-greater-than-x?",
  2279. "eps-file->stencil",
  2280. "epsfile-markup",
  2281. "eval-carefully",
  2282. "event-cause",
  2283. "event-chord-notes",
  2284. "event-chord-pitches",
  2285. "event-chord-reduce",
  2286. "event-chord-wrap!",
  2287. "event-class-cons",
  2288. "event-has-articulation?",
  2289. "events",
  2290. "every-nth-bar-number-visible",
  2291. "every-nth-repeat-count-visible",
  2292. "exact-rational?",
  2293. "expand-repeat-chords!",
  2294. "expand-repeat-notes!",
  2295. "extent-combine",
  2296. "extract-alteration",
  2297. "extract-beam-exceptions",
  2298. "extract-music",
  2299. "extract-named-music",
  2300. "extract-typed-music",
  2301. "eyeglasses-markup",
  2302. "fermata-markup",
  2303. "figured-bass-continuation::print",
  2304. "figured-bass-markup",
  2305. "fill-integer-interval",
  2306. "fill-line-markup",
  2307. "fill-with-pattern-markup",
  2308. "filled-box-markup",
  2309. "find-named-props",
  2310. "find-pitch-entry",
  2311. "find-value-to-offset",
  2312. "finger-glide::print",
  2313. "finger-key-glide",
  2314. "finger-markup",
  2315. "fingering::calc-text",
  2316. "first-assoc",
  2317. "first-bar-number-invisible",
  2318. "first-bar-number-invisible-and-no-parenthesized-bar-numbers",
  2319. "first-bar-number-invisible-save-broken-bars",
  2320. "first-broken-spanner?",
  2321. "first-member",
  2322. "first-visible-markup",
  2323. "flared-hairpin",
  2324. "flat-flag",
  2325. "flat-markup",
  2326. "flat-zip-longest",
  2327. "flatten-alist",
  2328. "flatten-list",
  2329. "flip-stencil",
  2330. "flute-lh-b-key-stencil",
  2331. "flute-lh-bes-key-stencil",
  2332. "flute-lh-gis-key-stencil",
  2333. "flute-lh-gis-rh-bes-key-stencil",
  2334. "flute-rh-b-key-stencil",
  2335. "flute-rh-bes-key-stencil",
  2336. "flute-rh-c-key-stencil",
  2337. "flute-rh-cis-key-stencil",
  2338. "flute-rh-d-key-stencil",
  2339. "flute-rh-dis-key-stencil",
  2340. "flute-rh-ees-key-stencil",
  2341. "flute-rh-gz-key-stencil",
  2342. "fold-some-music",
  2343. "fold-values",
  2344. "font-name-split",
  2345. "font-name-style",
  2346. "fontCaps-markup",
  2347. "fontsize-markup",
  2348. "footnote-markup",
  2349. "for-some-music",
  2350. "forced-configuration",
  2351. "format",
  2352. "format-bass-figure",
  2353. "format-coda-mark",
  2354. "format-dal-segno-text",
  2355. "format-dal-segno-text-brief",
  2356. "format-mark-alphabet",
  2357. "format-mark-barnumbers",
  2358. "format-mark-box-alphabet",
  2359. "format-mark-box-barnumbers",
  2360. "format-mark-box-letters",
  2361. "format-mark-box-numbers",
  2362. "format-mark-circle-alphabet",
  2363. "format-mark-circle-barnumbers",
  2364. "format-mark-circle-letters",
  2365. "format-mark-circle-numbers",
  2366. "format-mark-generic",
  2367. "format-mark-letters",
  2368. "format-mark-numbers",
  2369. "format-metronome-markup",
  2370. "format-segno-mark",
  2371. "format-segno-mark-considering-bar-lines",
  2372. "format-sign-with-number",
  2373. "format-varcoda-mark",
  2374. "fraction->moment",
  2375. "fraction-markup",
  2376. "fraction?",
  2377. "fret->pitch",
  2378. "fret-board::calc-stencil",
  2379. "fret-count",
  2380. "fret-diagram-markup",
  2381. "fret-diagram-terse-markup",
  2382. "fret-diagram-verbose-markup",
  2383. "fret-letter-tablature-format",
  2384. "fret-number-tablature-format",
  2385. "fret-number-tablature-format-banjo",
  2386. "fret-parse-definition-string",
  2387. "fret-parse-marking-list",
  2388. "fret-parse-terse-definition-string",
  2389. "fromproperty-markup",
  2390. "function-chain",
  2391. "g",
  2392. "general-align-markup",
  2393. "general-column",
  2394. "generate-bassoon-family-entry",
  2395. "generate-clarinet-family-entry",
  2396. "generate-crop-stencil",
  2397. "generate-flute-family-entry",
  2398. "generate-oboe-family-entry",
  2399. "generate-preview-stencil",
  2400. "generate-saxophone-family-entry",
  2401. "generate-system-stencils",
  2402. "generate-tin-whistle-family-entry",
  2403. "get-bound-note-heads",
  2404. "get-chord-shape",
  2405. "get-current-filename",
  2406. "get-current-suffix",
  2407. "get-fill-spaces",
  2408. "get-key",
  2409. "get-named-spreadsheet-column",
  2410. "get-next-unique-voice-name",
  2411. "get-numeric-from-key",
  2412. "get-outfile-name",
  2413. "get-postscript-bbox",
  2414. "get-quarter-diffs",
  2415. "get-setting",
  2416. "get-slope-offset",
  2417. "get-span-glyph",
  2418. "get-spreadsheet-column",
  2419. "get-step",
  2420. "get-sub-list",
  2421. "get-top-most-tab-head",
  2422. "get-tweakable-music",
  2423. "get-woodwind-key-list",
  2424. "glissando::calc-tab-extra-dy",
  2425. "glissando::draw-tab-glissando",
  2426. "glyph->stencil",
  2427. "glyph-flag",
  2428. "grace-spacing::calc-shortest-duration",
  2429. "gray-colorize",
  2430. "grid-chord-name::calc-X-offset",
  2431. "grid-chord-name::calc-Y-offset",
  2432. "grid-chord-name::calc-offset-on-axis",
  2433. "grob-interpret-markup",
  2434. "grob-list?",
  2435. "grob-transformer",
  2436. "grob::all-objects",
  2437. "grob::calc-property-by-copy",
  2438. "grob::compose-function",
  2439. "grob::directional-value",
  2440. "grob::display-objects",
  2441. "grob::has-interface",
  2442. "grob::inherit-parent-property",
  2443. "grob::is-live?",
  2444. "grob::name",
  2445. "grob::objects-from-interface",
  2446. "grob::offset-function",
  2447. "grob::relay-directional-property",
  2448. "grob::relay-other-property",
  2449. "grob::rhythmic-location",
  2450. "grob::show-skylines-if-debug-skylines-set",
  2451. "grob::unpure-Y-extent-from-stencil",
  2452. "grob::when",
  2453. "group-automate-rule",
  2454. "group-draw-rule",
  2455. "group-extra-offset-rule",
  2456. "group-into-ranges",
  2457. "gs-cmd-args",
  2458. "gs-safe-run",
  2459. "gulp-file-with-encoding",
  2460. "hairpin::calc-grow-direction",
  2461. "halign-markup",
  2462. "harp-pedal-check",
  2463. "harp-pedal-info",
  2464. "harp-pedal-markup",
  2465. "harp-pedals-parse-string",
  2466. "has-at-least-two?",
  2467. "has-one-or-less?",
  2468. "hash-table->alist",
  2469. "hbracket-markup",
  2470. "hcenter-in-markup",
  2471. "header-to-file",
  2472. "headers-property-alist-chain",
  2473. "hook-stencil",
  2474. "horizontal-bracket::calc-break-overshoot",
  2475. "horizontal-script::calc-staff-position",
  2476. "horizontal-script::extra-spacing-height",
  2477. "horizontal-slash-interval",
  2478. "hspace-markup",
  2479. "huge-markup",
  2480. "if-markup",
  2481. "ignatzek-chord-names",
  2482. "image-markup",
  2483. "index-cell",
  2484. "index-map",
  2485. "index-or-markup?",
  2486. "index?",
  2487. "insert-markups",
  2488. "int->bit-list",
  2489. "internal-set-paper-size",
  2490. "interpret-markup",
  2491. "interpret-markup-list",
  2492. "interval-bound",
  2493. "interval-center",
  2494. "interval-contains?",
  2495. "interval-empty?",
  2496. "interval-end",
  2497. "interval-index",
  2498. "interval-intersection",
  2499. "interval-length",
  2500. "interval-sane?",
  2501. "interval-scale",
  2502. "interval-start",
  2503. "interval-union",
  2504. "interval-widen",
  2505. "invalidate-alterations",
  2506. "inverter-factory",
  2507. "is-absolute?",
  2508. "is-square?",
  2509. "italic-markup",
  2510. "item::extra-spacing-height-including-staff",
  2511. "justified-lines-markup-list",
  2512. "justify-field-markup",
  2513. "justify-line-helper",
  2514. "justify-line-markup",
  2515. "justify-markup",
  2516. "justify-string-markup",
  2517. "keep-with-tag-markup",
  2518. "key-crawler",
  2519. "key-entry-alteration",
  2520. "key-entry-bar-number",
  2521. "key-entry-end-mom",
  2522. "key-entry-notename",
  2523. "key-entry-octave",
  2524. "key-fill-translate",
  2525. "key-list-or-music?",
  2526. "key-list-or-symbol?",
  2527. "key-list?",
  2528. "key-signature-interface::alteration-position",
  2529. "key-signature-interface::alteration-positions",
  2530. "key?",
  2531. "keyword->make-markup",
  2532. "large-markup",
  2533. "larger-markup",
  2534. "last-or-identity",
  2535. "layout-blot-diameter",
  2536. "layout-extract-page-properties",
  2537. "layout-line-thickness",
  2538. "layout-set-absolute-staff-size",
  2539. "layout-set-absolute-staff-size-in-module",
  2540. "layout-set-staff-size",
  2541. "ledger-lines::positions-from-ledgered-grob",
  2542. "left-align-at-split-notes",
  2543. "left-align-markup",
  2544. "left-brace-markup",
  2545. "left-column-markup",
  2546. "lexicographic-list-compare?",
  2547. "lh-woodwind-text-stencil",
  2548. "lilypond-all",
  2549. "lilypond-file",
  2550. "lilypond-main",
  2551. "lilypond-version",
  2552. "lilypond-version-outdated?",
  2553. "line-markup",
  2554. "list-all-possible-keys",
  2555. "list-all-possible-keys-verbose",
  2556. "list-element-index",
  2557. "list-insert-separator",
  2558. "list-join",
  2559. "list-map",
  2560. "list-pad-left",
  2561. "list-pad-right",
  2562. "listener->once-listener",
  2563. "little-elliptical-key-stencil",
  2564. "long-midline-stencil",
  2565. "lookup-markup",
  2566. "lookup-markup-command",
  2567. "lookup-markup-command-aux",
  2568. "lookup-markup-list-command",
  2569. "lookup-paper-name",
  2570. "low-bass-clarinet-rh-ees-key-stencil",
  2571. "lower-markup",
  2572. "ly-getcwd",
  2573. "ly-type?",
  2574. "ly:accidental-interface::height",
  2575. "ly:accidental-interface::horizontal-skylines",
  2576. "ly:accidental-interface::print",
  2577. "ly:accidental-interface::remove-tied",
  2578. "ly:accidental-placement::calc-positioning-done",
  2579. "ly:add-context-mod",
  2580. "ly:add-interface",
  2581. "ly:add-listener",
  2582. "ly:add-option",
  2583. "ly:align-interface::align-to-ideal-distances",
  2584. "ly:align-interface::align-to-minimum-distances",
  2585. "ly:all-grob-interfaces",
  2586. "ly:all-options",
  2587. "ly:all-output-backend-commands",
  2588. "ly:all-stencil-commands",
  2589. "ly:all-stencil-expressions",
  2590. "ly:alternative-sequence-iterator::constructor",
  2591. "ly:angle",
  2592. "ly:append-to-option",
  2593. "ly:apply-context-iterator::constructor",
  2594. "ly:arpeggio::brew-chord-bracket",
  2595. "ly:arpeggio::brew-chord-slur",
  2596. "ly:arpeggio::calc-cross-staff",
  2597. "ly:arpeggio::calc-positions",
  2598. "ly:arpeggio::print",
  2599. "ly:arpeggio::pure-height",
  2600. "ly:arpeggio::width",
  2601. "ly:assoc-get",
  2602. "ly:axis-group-interface::add-element",
  2603. "ly:axis-group-interface::adjacent-pure-heights",
  2604. "ly:axis-group-interface::calc-pure-relevant-grobs",
  2605. "ly:axis-group-interface::calc-pure-staff-staff-spacing",
  2606. "ly:axis-group-interface::calc-pure-y-common",
  2607. "ly:axis-group-interface::calc-skylines",
  2608. "ly:axis-group-interface::calc-staff-staff-spacing",
  2609. "ly:axis-group-interface::calc-x-common",
  2610. "ly:axis-group-interface::calc-y-common",
  2611. "ly:axis-group-interface::combine-skylines",
  2612. "ly:axis-group-interface::height",
  2613. "ly:axis-group-interface::pure-height",
  2614. "ly:axis-group-interface::width",
  2615. "ly:balloon-interface::print",
  2616. "ly:balloon-interface::pure-height",
  2617. "ly:balloon-interface::remove-irrelevant-spanner",
  2618. "ly:balloon-interface::width",
  2619. "ly:bar-line::calc-anchor",
  2620. "ly:bar-line::calc-bar-extent",
  2621. "ly:bar-line::calc-short-bar-extent",
  2622. "ly:bar-line::print",
  2623. "ly:base64-encode",
  2624. "ly:basic-progress",
  2625. "ly:beam::calc-beam-segments",
  2626. "ly:beam::calc-beaming",
  2627. "ly:beam::calc-cross-staff",
  2628. "ly:beam::calc-direction",
  2629. "ly:beam::calc-knee",
  2630. "ly:beam::calc-normal-stems",
  2631. "ly:beam::calc-stem-shorten",
  2632. "ly:beam::calc-x-positions",
  2633. "ly:beam::print",
  2634. "ly:beam::pure-rest-collision-callback",
  2635. "ly:beam::quanting",
  2636. "ly:beam::rest-collision-callback",
  2637. "ly:beam::set-stem-lengths",
  2638. "ly:beam::tremolo-springs-and-rods",
  2639. "ly:bezier-extent",
  2640. "ly:bezier-extract",
  2641. "ly:book-add-bookpart!",
  2642. "ly:book-add-score!",
  2643. "ly:book-book-parts",
  2644. "ly:book-header",
  2645. "ly:book-paper",
  2646. "ly:book-process",
  2647. "ly:book-process-to-systems",
  2648. "ly:book-scores",
  2649. "ly:book-set-header!",
  2650. "ly:book?",
  2651. "ly:bp",
  2652. "ly:bracket",
  2653. "ly:break-alignable-interface::find-parent",
  2654. "ly:break-alignable-interface::self-align-callback",
  2655. "ly:break-aligned-interface::calc-average-anchor",
  2656. "ly:break-aligned-interface::calc-break-visibility",
  2657. "ly:break-aligned-interface::calc-extent-aligned-anchor",
  2658. "ly:break-aligned-interface::calc-joint-anchor-alignment",
  2659. "ly:break-alignment-interface::calc-positioning-done",
  2660. "ly:break-alignment-interface::find-nonempty-break-align-group",
  2661. "ly:breathing-sign::divisio-maior",
  2662. "ly:breathing-sign::divisio-maxima",
  2663. "ly:breathing-sign::divisio-minima",
  2664. "ly:breathing-sign::finalis",
  2665. "ly:breathing-sign::offset-callback",
  2666. "ly:breathing-sign::set-breath-properties",
  2667. "ly:broadcast",
  2668. "ly:cairo-output-stencil",
  2669. "ly:cairo-output-stencils",
  2670. "ly:calculated-sequential-music::length",
  2671. "ly:calculated-sequential-music::start",
  2672. "ly:camel-case->lisp-identifier",
  2673. "ly:chain-assoc-get",
  2674. "ly:change-iterator::constructor",
  2675. "ly:check-expected-warnings",
  2676. "ly:chord-name::after-line-breaking",
  2677. "ly:clef-modifier::calc-parent-alignment",
  2678. "ly:clef::calc-glyph-name",
  2679. "ly:clef::print",
  2680. "ly:cluster-beacon::height",
  2681. "ly:cluster::calc-cross-staff",
  2682. "ly:cluster::print",
  2683. "ly:cm",
  2684. "ly:command-line-code",
  2685. "ly:command-line-options",
  2686. "ly:connect-dispatchers",
  2687. "ly:context-children",
  2688. "ly:context-current-moment",
  2689. "ly:context-def-lookup",
  2690. "ly:context-def-modify",
  2691. "ly:context-def?",
  2692. "ly:context-event-source",
  2693. "ly:context-events-below",
  2694. "ly:context-find",
  2695. "ly:context-grob-definition",
  2696. "ly:context-id",
  2697. "ly:context-matched-pop-property",
  2698. "ly:context-mod-apply!",
  2699. "ly:context-mod?",
  2700. "ly:context-name",
  2701. "ly:context-output-def",
  2702. "ly:context-parent",
  2703. "ly:context-property",
  2704. "ly:context-property-pop",
  2705. "ly:context-property-push",
  2706. "ly:context-property-stack-pop",
  2707. "ly:context-property-stack-push",
  2708. "ly:context-property-where-defined",
  2709. "ly:context-pushpop-property",
  2710. "ly:context-schedule-moment",
  2711. "ly:context-set-property!",
  2712. "ly:context-specced-music-iterator::constructor",
  2713. "ly:context-unset-property",
  2714. "ly:context?",
  2715. "ly:custos::print",
  2716. "ly:debug",
  2717. "ly:default-scale",
  2718. "ly:dimension?",
  2719. "ly:dir?",
  2720. "ly:directed",
  2721. "ly:disconnect-dispatchers",
  2722. "ly:dispatcher?",
  2723. "ly:dot-column::calc-positioning-done",
  2724. "ly:dots::print",
  2725. "ly:duration->moment",
  2726. "ly:duration->number",
  2727. "ly:duration->string",
  2728. "ly:duration-compress",
  2729. "ly:duration-dot-count",
  2730. "ly:duration-factor",
  2731. "ly:duration-log",
  2732. "ly:duration-scale",
  2733. "ly:duration::less?",
  2734. "ly:duration<?",
  2735. "ly:duration?",
  2736. "ly:effective-prefix",
  2737. "ly:enclosing-bracket::print",
  2738. "ly:enclosing-bracket::width",
  2739. "ly:engraver-announce-end-grob",
  2740. "ly:engraver-make-grob",
  2741. "ly:engraver-make-item",
  2742. "ly:engraver-make-spanner",
  2743. "ly:engraver-make-sticky",
  2744. "ly:error",
  2745. "ly:event-chord-iterator::constructor",
  2746. "ly:event-deep-copy",
  2747. "ly:event-iterator::constructor",
  2748. "ly:event-length",
  2749. "ly:event-property",
  2750. "ly:event-set-property!",
  2751. "ly:event-warning",
  2752. "ly:event?",
  2753. "ly:exit",
  2754. "ly:expect-warning",
  2755. "ly:extract-subfont-from-collection",
  2756. "ly:figured-bass-continuation::center-on-figures",
  2757. "ly:find-file",
  2758. "ly:fine-iterator::constructor",
  2759. "ly:fingering-column::calc-positioning-done",
  2760. "ly:flag::calc-x-offset",
  2761. "ly:flag::calc-y-offset",
  2762. "ly:flag::glyph-name",
  2763. "ly:flag::print",
  2764. "ly:flag::pure-calc-y-offset",
  2765. "ly:flag::width",
  2766. "ly:font-config-add-directory",
  2767. "ly:font-config-add-font",
  2768. "ly:font-config-display-fonts",
  2769. "ly:font-config-get-font-file",
  2770. "ly:font-design-size",
  2771. "ly:font-file-name",
  2772. "ly:font-get-glyph",
  2773. "ly:font-glyph-name-to-index",
  2774. "ly:font-index-to-charcode",
  2775. "ly:font-magnification",
  2776. "ly:font-metric?",
  2777. "ly:font-name",
  2778. "ly:format",
  2779. "ly:format-output",
  2780. "ly:generic-bound-extent",
  2781. "ly:get-all-function-documentation",
  2782. "ly:get-all-translators",
  2783. "ly:get-cff-offset",
  2784. "ly:get-context-mods",
  2785. "ly:get-font-format",
  2786. "ly:get-option",
  2787. "ly:get-spacing-spec",
  2788. "ly:grace-iterator::constructor",
  2789. "ly:grace-music::start-callback",
  2790. "ly:grid-line-interface::print",
  2791. "ly:grid-line-interface::width",
  2792. "ly:grob-alist-chain",
  2793. "ly:grob-array->list",
  2794. "ly:grob-array-length",
  2795. "ly:grob-array-ref",
  2796. "ly:grob-array?",
  2797. "ly:grob-basic-properties",
  2798. "ly:grob-chain-callback",
  2799. "ly:grob-common-refpoint",
  2800. "ly:grob-common-refpoint-of-array",
  2801. "ly:grob-default-font",
  2802. "ly:grob-extent",
  2803. "ly:grob-get-vertical-axis-group-index",
  2804. "ly:grob-interfaces",
  2805. "ly:grob-layout",
  2806. "ly:grob-list->grob-array",
  2807. "ly:grob-object",
  2808. "ly:grob-original",
  2809. "ly:grob-parent",
  2810. "ly:grob-pq<?",
  2811. "ly:grob-properties?",
  2812. "ly:grob-property",
  2813. "ly:grob-property-data",
  2814. "ly:grob-pure-height",
  2815. "ly:grob-pure-property",
  2816. "ly:grob-pure-relative-coordinate",
  2817. "ly:grob-relative-coordinate",
  2818. "ly:grob-robust-relative-extent",
  2819. "ly:grob-script-priority-less",
  2820. "ly:grob-set-nested-property!",
  2821. "ly:grob-set-object!",
  2822. "ly:grob-set-parent!",
  2823. "ly:grob-set-property!",
  2824. "ly:grob-spanned-column-rank-interval",
  2825. "ly:grob-staff-position",
  2826. "ly:grob-suicide!",
  2827. "ly:grob-system",
  2828. "ly:grob-translate-axis!",
  2829. "ly:grob-vertical<?",
  2830. "ly:grob-warning",
  2831. "ly:grob::horizontal-skylines-from-element-stencils",
  2832. "ly:grob::horizontal-skylines-from-stencil",
  2833. "ly:grob::pure-horizontal-skylines-from-element-stencils",
  2834. "ly:grob::pure-simple-horizontal-skylines-from-extents",
  2835. "ly:grob::pure-simple-vertical-skylines-from-extents",
  2836. "ly:grob::pure-stencil-height",
  2837. "ly:grob::pure-vertical-skylines-from-element-stencils",
  2838. "ly:grob::simple-horizontal-skylines-from-extents",
  2839. "ly:grob::simple-vertical-skylines-from-extents",
  2840. "ly:grob::stencil-height",
  2841. "ly:grob::stencil-width",
  2842. "ly:grob::vertical-skylines-from-element-stencils",
  2843. "ly:grob::vertical-skylines-from-stencil",
  2844. "ly:grob::x-parent-positioning",
  2845. "ly:grob::y-parent-positioning",
  2846. "ly:grob?",
  2847. "ly:gs-cli",
  2848. "ly:gulp-file",
  2849. "ly:gulp-file-utf8",
  2850. "ly:hairpin::broken-bound-padding",
  2851. "ly:hairpin::print",
  2852. "ly:hairpin::pure-height",
  2853. "ly:hara-kiri-group-spanner::calc-skylines",
  2854. "ly:hara-kiri-group-spanner::force-hara-kiri-callback",
  2855. "ly:hara-kiri-group-spanner::force-hara-kiri-in-y-parent-callback",
  2856. "ly:hara-kiri-group-spanner::pure-height",
  2857. "ly:hara-kiri-group-spanner::y-extent",
  2858. "ly:has-glyph-names?",
  2859. "ly:hash-table-keys",
  2860. "ly:horizontal-bracket-text::calc-direction",
  2861. "ly:horizontal-bracket-text::print",
  2862. "ly:horizontal-bracket::print",
  2863. "ly:horizontal-line-spanner::calc-left-bound-info",
  2864. "ly:horizontal-line-spanner::calc-left-bound-info-and-text",
  2865. "ly:horizontal-line-spanner::calc-right-bound-info",
  2866. "ly:in-event-class?",
  2867. "ly:inch",
  2868. "ly:initial-context-music-iterator::constructor",
  2869. "ly:input-both-locations",
  2870. "ly:input-file-line-char-column",
  2871. "ly:input-location?",
  2872. "ly:input-message",
  2873. "ly:input-warning",
  2874. "ly:interpret-music-expression",
  2875. "ly:intlog2",
  2876. "ly:item-break-dir",
  2877. "ly:item-get-column",
  2878. "ly:item?",
  2879. "ly:iterator?",
  2880. "ly:key-signature-interface::print",
  2881. "ly:kievan-ligature::print",
  2882. "ly:ledger-line-spanner::print",
  2883. "ly:ledger-line-spanner::set-spacing-rods",
  2884. "ly:length",
  2885. "ly:lily-lexer?",
  2886. "ly:lily-parser?",
  2887. "ly:line-interface::line",
  2888. "ly:line-spanner::calc-cross-staff",
  2889. "ly:line-spanner::calc-left-bound-info",
  2890. "ly:line-spanner::calc-left-bound-info-and-text",
  2891. "ly:line-spanner::calc-right-bound-info",
  2892. "ly:line-spanner::print",
  2893. "ly:list->offsets",
  2894. "ly:listened-event-class?",
  2895. "ly:listened-event-types",
  2896. "ly:listener?",
  2897. "ly:load",
  2898. "ly:lyric-combine-music-iterator::constructor",
  2899. "ly:lyric-combine-music::length-callback",
  2900. "ly:lyric-extender::print",
  2901. "ly:lyric-hyphen::print",
  2902. "ly:lyric-hyphen::set-spacing-rods",
  2903. "ly:make-book",
  2904. "ly:make-book-part",
  2905. "ly:make-context-mod",
  2906. "ly:make-dispatcher",
  2907. "ly:make-duration",
  2908. "ly:make-event-class",
  2909. "ly:make-global-context",
  2910. "ly:make-global-translator",
  2911. "ly:make-grob-properties",
  2912. "ly:make-listener",
  2913. "ly:make-moment",
  2914. "ly:make-music",
  2915. "ly:make-music-function",
  2916. "ly:make-music-relative!",
  2917. "ly:make-output-def",
  2918. "ly:make-page-label-marker",
  2919. "ly:make-page-permission-marker",
  2920. "ly:make-paper-outputter",
  2921. "ly:make-pitch",
  2922. "ly:make-prob",
  2923. "ly:make-rand-seed",
  2924. "ly:make-regex",
  2925. "ly:make-rotation",
  2926. "ly:make-scale",
  2927. "ly:make-scaling",
  2928. "ly:make-score",
  2929. "ly:make-skyline",
  2930. "ly:make-spring",
  2931. "ly:make-stencil",
  2932. "ly:make-stream-event",
  2933. "ly:make-tmpfile-name",
  2934. "ly:make-transform",
  2935. "ly:make-translation",
  2936. "ly:make-unpure-pure-container",
  2937. "ly:measure-grouping::print",
  2938. "ly:measure-spanner::print",
  2939. "ly:melody-spanner::calc-neutral-stem-direction",
  2940. "ly:mensural-ligature::brew-ligature-primitive",
  2941. "ly:mensural-ligature::print",
  2942. "ly:message",
  2943. "ly:minimal-breaking",
  2944. "ly:mm",
  2945. "ly:module->alist",
  2946. "ly:module-copy",
  2947. "ly:modules-lookup",
  2948. "ly:moment-add",
  2949. "ly:moment-div",
  2950. "ly:moment-grace",
  2951. "ly:moment-grace-denominator",
  2952. "ly:moment-grace-numerator",
  2953. "ly:moment-main",
  2954. "ly:moment-main-denominator",
  2955. "ly:moment-main-numerator",
  2956. "ly:moment-mod",
  2957. "ly:moment-mul",
  2958. "ly:moment-sub",
  2959. "ly:moment<?",
  2960. "ly:moment?",
  2961. "ly:multi-measure-rest::height",
  2962. "ly:multi-measure-rest::print",
  2963. "ly:multi-measure-rest::set-spacing-rods",
  2964. "ly:multi-measure-rest::set-text-rods",
  2965. "ly:music-compress",
  2966. "ly:music-deep-copy",
  2967. "ly:music-duration-compress",
  2968. "ly:music-duration-length",
  2969. "ly:music-error",
  2970. "ly:music-function-extract",
  2971. "ly:music-function-signature",
  2972. "ly:music-function?",
  2973. "ly:music-iterator::constructor",
  2974. "ly:music-length",
  2975. "ly:music-list?",
  2976. "ly:music-message",
  2977. "ly:music-mutable-properties",
  2978. "ly:music-output?",
  2979. "ly:music-property",
  2980. "ly:music-sequence::cumulative-length-callback",
  2981. "ly:music-sequence::event-chord-length-callback",
  2982. "ly:music-sequence::event-chord-relative-callback",
  2983. "ly:music-sequence::first-start-callback",
  2984. "ly:music-sequence::maximum-length-callback",
  2985. "ly:music-sequence::minimum-start-callback",
  2986. "ly:music-sequence::simultaneous-relative-callback",
  2987. "ly:music-set-property!",
  2988. "ly:music-start",
  2989. "ly:music-transpose",
  2990. "ly:music-warning",
  2991. "ly:music-wrapper-iterator::constructor",
  2992. "ly:music-wrapper::length-callback",
  2993. "ly:music-wrapper::start-callback",
  2994. "ly:music::duration-length-callback",
  2995. "ly:music?",
  2996. "ly:non-fatal-error",
  2997. "ly:note-collision-interface::calc-positioning-done",
  2998. "ly:note-column-accidentals",
  2999. "ly:note-column-dot-column",
  3000. "ly:note-column::calc-main-extent",
  3001. "ly:note-extra-source-file",
  3002. "ly:note-head::calc-stem-attachment",
  3003. "ly:note-head::calc-tab-stem-attachment",
  3004. "ly:note-head::include-ledger-line-height",
  3005. "ly:note-head::print",
  3006. "ly:note-head::stem-attachment",
  3007. "ly:note-head::stem-x-shift",
  3008. "ly:note-scale?",
  3009. "ly:number->duration",
  3010. "ly:number->string",
  3011. "ly:number-pair->string",
  3012. "ly:one-line-auto-height-breaking",
  3013. "ly:one-line-breaking",
  3014. "ly:one-page-breaking",
  3015. "ly:optimal-breaking",
  3016. "ly:option-usage",
  3017. "ly:otf->cff",
  3018. "ly:otf-font-glyph-info",
  3019. "ly:otf-font-table-data",
  3020. "ly:otf-font?",
  3021. "ly:otf-glyph-count",
  3022. "ly:otf-glyph-list",
  3023. "ly:ottava-bracket::print",
  3024. "ly:output-def-clone",
  3025. "ly:output-def-lookup",
  3026. "ly:output-def-parent",
  3027. "ly:output-def-scope",
  3028. "ly:output-def-set-variable!",
  3029. "ly:output-def?",
  3030. "ly:output-description",
  3031. "ly:output-file-name-for-input-file-name",
  3032. "ly:output-find-context-def",
  3033. "ly:outputter-close",
  3034. "ly:outputter-dump-stencil",
  3035. "ly:outputter-dump-string",
  3036. "ly:outputter-output-scheme",
  3037. "ly:outputter-port",
  3038. "ly:page-marker?",
  3039. "ly:page-turn-breaking",
  3040. "ly:pango-font-physical-fonts",
  3041. "ly:pango-font?",
  3042. "ly:paper-book-header",
  3043. "ly:paper-book-pages",
  3044. "ly:paper-book-paper",
  3045. "ly:paper-book-performances",
  3046. "ly:paper-book-scopes",
  3047. "ly:paper-book-systems",
  3048. "ly:paper-book?",
  3049. "ly:paper-column::break-align-width",
  3050. "ly:paper-column::print",
  3051. "ly:paper-fonts",
  3052. "ly:paper-get-font",
  3053. "ly:paper-get-number",
  3054. "ly:paper-outputscale",
  3055. "ly:paper-score-paper-systems",
  3056. "ly:paper-system?",
  3057. "ly:parse-file",
  3058. "ly:parse-init",
  3059. "ly:parse-string-expression",
  3060. "ly:parsed-undead-list!",
  3061. "ly:parser-append-to-include-path",
  3062. "ly:parser-clear-error",
  3063. "ly:parser-clone",
  3064. "ly:parser-define!",
  3065. "ly:parser-error",
  3066. "ly:parser-has-error?",
  3067. "ly:parser-include-string",
  3068. "ly:parser-lookup",
  3069. "ly:parser-output-name",
  3070. "ly:parser-parse-string",
  3071. "ly:parser-set-note-names",
  3072. "ly:part-combine-iterator::constructor",
  3073. "ly:percent-repeat-interface::beat-slash",
  3074. "ly:percent-repeat-interface::double-percent",
  3075. "ly:percent-repeat-interface::percent",
  3076. "ly:percent-repeat-iterator::constructor",
  3077. "ly:perform-text-replacements",
  3078. "ly:performance-headers",
  3079. "ly:performance-write",
  3080. "ly:piano-pedal-bracket::print",
  3081. "ly:pitch-alteration",
  3082. "ly:pitch-diff",
  3083. "ly:pitch-negate",
  3084. "ly:pitch-notename",
  3085. "ly:pitch-octave",
  3086. "ly:pitch-quartertones",
  3087. "ly:pitch-semitones",
  3088. "ly:pitch-steps",
  3089. "ly:pitch-tones",
  3090. "ly:pitch-transpose",
  3091. "ly:pitch<?",
  3092. "ly:pitch?",
  3093. "ly:png->eps-dump",
  3094. "ly:png-dimensions",
  3095. "ly:pointer-group-interface::add-grob",
  3096. "ly:pop-property-iterator::constructor",
  3097. "ly:position-on-line?",
  3098. "ly:prob-immutable-properties",
  3099. "ly:prob-mutable-properties",
  3100. "ly:prob-property",
  3101. "ly:prob-property?",
  3102. "ly:prob-set-property!",
  3103. "ly:prob-type?",
  3104. "ly:prob?",
  3105. "ly:programming-error",
  3106. "ly:progress",
  3107. "ly:property-iterator::constructor",
  3108. "ly:property-lookup-stats",
  3109. "ly:property-unset-iterator::constructor",
  3110. "ly:pt",
  3111. "ly:pure-call",
  3112. "ly:pure-from-neighbor-interface::calc-pure-relevant-grobs",
  3113. "ly:push-property-iterator::constructor",
  3114. "ly:quote-iterator::constructor",
  3115. "ly:regex-exec",
  3116. "ly:regex-exec->list",
  3117. "ly:regex-match-positions",
  3118. "ly:regex-match-prefix",
  3119. "ly:regex-match-substring",
  3120. "ly:regex-match-suffix",
  3121. "ly:regex-match?",
  3122. "ly:regex-quote",
  3123. "ly:regex-replace",
  3124. "ly:regex-split",
  3125. "ly:regex?",
  3126. "ly:register-stencil-expression",
  3127. "ly:register-translator",
  3128. "ly:relative-group-extent",
  3129. "ly:relative-octave-check::relative-callback",
  3130. "ly:relative-octave-music::no-relative-callback",
  3131. "ly:relative-octave-music::relative-callback",
  3132. "ly:rename-file",
  3133. "ly:reset-all-fonts",
  3134. "ly:reset-options",
  3135. "ly:rest-collision::calc-positioning-done",
  3136. "ly:rest-collision::force-shift-callback-rest",
  3137. "ly:rest::calc-cross-staff",
  3138. "ly:rest::height",
  3139. "ly:rest::print",
  3140. "ly:rest::pure-height",
  3141. "ly:rest::width",
  3142. "ly:rest::y-offset-callback",
  3143. "ly:rhythmic-music-iterator::constructor",
  3144. "ly:round-filled-box",
  3145. "ly:round-polygon",
  3146. "ly:run-translator",
  3147. "ly:score-add-output-def!",
  3148. "ly:score-embedded-format",
  3149. "ly:score-error?",
  3150. "ly:score-header",
  3151. "ly:score-music",
  3152. "ly:score-output-defs",
  3153. "ly:score-set-header!",
  3154. "ly:score?",
  3155. "ly:script-column::before-line-breaking",
  3156. "ly:script-column::row-before-line-breaking",
  3157. "ly:script-interface::calc-cross-staff",
  3158. "ly:script-interface::calc-direction",
  3159. "ly:script-interface::calc-positioning-done",
  3160. "ly:script-interface::print",
  3161. "ly:self-alignment-interface::aligned-on-x-parent",
  3162. "ly:self-alignment-interface::aligned-on-y-parent",
  3163. "ly:self-alignment-interface::centered-on-x-parent",
  3164. "ly:self-alignment-interface::centered-on-y-parent",
  3165. "ly:self-alignment-interface::pure-y-aligned-on-self",
  3166. "ly:self-alignment-interface::x-aligned-on-self",
  3167. "ly:self-alignment-interface::y-aligned-on-self",
  3168. "ly:semi-tie-column::calc-head-direction",
  3169. "ly:semi-tie-column::calc-positioning-done",
  3170. "ly:semi-tie::calc-control-points",
  3171. "ly:separation-item::calc-skylines",
  3172. "ly:sequential-iterator::constructor",
  3173. "ly:set-default-scale",
  3174. "ly:set-grob-creation-callback",
  3175. "ly:set-grob-modification-callback",
  3176. "ly:set-middle-C!",
  3177. "ly:set-option",
  3178. "ly:set-origin!",
  3179. "ly:set-property-cache-callback",
  3180. "ly:set-rand-seed",
  3181. "ly:side-position-interface::calc-cross-staff",
  3182. "ly:side-position-interface::move-to-extremal-staff",
  3183. "ly:side-position-interface::pure-y-aligned-side",
  3184. "ly:side-position-interface::set-axis!",
  3185. "ly:side-position-interface::x-aligned-side",
  3186. "ly:side-position-interface::y-aligned-side",
  3187. "ly:simple-music-iterator::constructor",
  3188. "ly:simultaneous-music-iterator::constructor",
  3189. "ly:skyline->points",
  3190. "ly:skyline-distance",
  3191. "ly:skyline-empty?",
  3192. "ly:skyline-height",
  3193. "ly:skyline-max-height",
  3194. "ly:skyline-max-height-position",
  3195. "ly:skyline-merge",
  3196. "ly:skyline-pad",
  3197. "ly:skyline-pair?",
  3198. "ly:skyline-touching-point",
  3199. "ly:skyline?",
  3200. "ly:skylines-for-stencil",
  3201. "ly:slur::calc-control-points",
  3202. "ly:slur::calc-cross-staff",
  3203. "ly:slur::calc-direction",
  3204. "ly:slur::height",
  3205. "ly:slur::outside-slur-callback",
  3206. "ly:slur::outside-slur-cross-staff",
  3207. "ly:slur::print",
  3208. "ly:slur::pure-height",
  3209. "ly:slur::pure-outside-slur-callback",
  3210. "ly:smob-protects",
  3211. "ly:solve-spring-rod-problem",
  3212. "ly:source-file?",
  3213. "ly:source-files",
  3214. "ly:spacing-spanner::calc-common-shortest-duration",
  3215. "ly:spacing-spanner::set-springs",
  3216. "ly:span-bar::before-line-breaking",
  3217. "ly:span-bar::calc-anchor",
  3218. "ly:span-bar::calc-glyph-name",
  3219. "ly:span-bar::choose-model-bar-line",
  3220. "ly:span-bar::print",
  3221. "ly:span-bar::width",
  3222. "ly:spanner-bound",
  3223. "ly:spanner-broken-into",
  3224. "ly:spanner-broken-neighbor",
  3225. "ly:spanner-set-bound!",
  3226. "ly:spanner::bounds-width",
  3227. "ly:spanner::calc-connect-to-neighbors",
  3228. "ly:spanner::calc-normalized-endpoints",
  3229. "ly:spanner::kill-zero-spanned-time",
  3230. "ly:spanner::set-spacing-rods",
  3231. "ly:spanner?",
  3232. "ly:spawn",
  3233. "ly:spring-set-inverse-compress-strength!",
  3234. "ly:spring-set-inverse-stretch-strength!",
  3235. "ly:spring?",
  3236. "ly:staff-symbol-line-thickness",
  3237. "ly:staff-symbol-referencer::callback",
  3238. "ly:staff-symbol-staff-radius",
  3239. "ly:staff-symbol-staff-space",
  3240. "ly:staff-symbol::calc-line-positions",
  3241. "ly:staff-symbol::height",
  3242. "ly:staff-symbol::print",
  3243. "ly:stderr-redirect",
  3244. "ly:stem-tremolo::calc-cross-staff",
  3245. "ly:stem-tremolo::calc-direction",
  3246. "ly:stem-tremolo::calc-shape",
  3247. "ly:stem-tremolo::calc-slope",
  3248. "ly:stem-tremolo::calc-width",
  3249. "ly:stem-tremolo::calc-y-offset",
  3250. "ly:stem-tremolo::print",
  3251. "ly:stem-tremolo::pure-calc-y-offset",
  3252. "ly:stem-tremolo::pure-height",
  3253. "ly:stem-tremolo::width",
  3254. "ly:stem::calc-cross-staff",
  3255. "ly:stem::calc-default-direction",
  3256. "ly:stem::calc-direction",
  3257. "ly:stem::calc-length",
  3258. "ly:stem::calc-positioning-done",
  3259. "ly:stem::calc-stem-begin-position",
  3260. "ly:stem::calc-stem-end-position",
  3261. "ly:stem::calc-stem-info",
  3262. "ly:stem::height",
  3263. "ly:stem::offset-callback",
  3264. "ly:stem::print",
  3265. "ly:stem::pure-calc-length",
  3266. "ly:stem::pure-calc-stem-begin-position",
  3267. "ly:stem::pure-calc-stem-end-position",
  3268. "ly:stem::pure-height",
  3269. "ly:stem::width",
  3270. "ly:stencil-add",
  3271. "ly:stencil-aligned-to",
  3272. "ly:stencil-combine-at-edge",
  3273. "ly:stencil-empty?",
  3274. "ly:stencil-expr",
  3275. "ly:stencil-extent",
  3276. "ly:stencil-in-color",
  3277. "ly:stencil-outline",
  3278. "ly:stencil-rotate",
  3279. "ly:stencil-rotate-absolute",
  3280. "ly:stencil-scale",
  3281. "ly:stencil-stack",
  3282. "ly:stencil-translate",
  3283. "ly:stencil-translate-axis",
  3284. "ly:stencil?",
  3285. "ly:stream-event?",
  3286. "ly:string-percent-encode",
  3287. "ly:string-substitute",
  3288. "ly:sustain-pedal::print",
  3289. "ly:system",
  3290. "ly:system-font-load",
  3291. "ly:system-start-delimiter::print",
  3292. "ly:system::calc-pure-height",
  3293. "ly:system::calc-pure-relevant-grobs",
  3294. "ly:system::footnotes-after-line-breaking",
  3295. "ly:system::footnotes-before-line-breaking",
  3296. "ly:system::get-nonspaceable-staves",
  3297. "ly:system::get-spaceable-staves",
  3298. "ly:system::get-staves",
  3299. "ly:system::get-vertical-alignment",
  3300. "ly:system::height",
  3301. "ly:system::vertical-skyline-elements",
  3302. "ly:text-interface::grob-interpret-markup",
  3303. "ly:text-interface::interpret-markup",
  3304. "ly:text-interface::print",
  3305. "ly:tie-column::before-line-breaking",
  3306. "ly:tie-column::calc-positioning-done",
  3307. "ly:tie::calc-control-points",
  3308. "ly:tie::calc-direction",
  3309. "ly:tie::print",
  3310. "ly:time-signature::print",
  3311. "ly:time-signature::print-x",
  3312. "ly:time-tracer-include-and-remove-file",
  3313. "ly:time-tracer-restart",
  3314. "ly:time-tracer-set-file",
  3315. "ly:time-tracer-stop",
  3316. "ly:transform->list",
  3317. "ly:transform?",
  3318. "ly:translate-cpp-warning-scheme",
  3319. "ly:translator-context",
  3320. "ly:translator-description",
  3321. "ly:translator-group?",
  3322. "ly:translator-name",
  3323. "ly:translator?",
  3324. "ly:transpose-key-alist",
  3325. "ly:ttf->pfa",
  3326. "ly:ttf-ps-name",
  3327. "ly:tuplet-bracket::calc-beam",
  3328. "ly:tuplet-bracket::calc-cross-staff",
  3329. "ly:tuplet-bracket::calc-direction",
  3330. "ly:tuplet-bracket::calc-positions",
  3331. "ly:tuplet-bracket::calc-potential-beam",
  3332. "ly:tuplet-bracket::calc-x-positions",
  3333. "ly:tuplet-bracket::print",
  3334. "ly:tuplet-description?",
  3335. "ly:tuplet-iterator::constructor",
  3336. "ly:tuplet-number::calc-x-offset",
  3337. "ly:tuplet-number::calc-y-offset",
  3338. "ly:tuplet-number::print",
  3339. "ly:unpure-call",
  3340. "ly:unpure-pure-container-pure-part",
  3341. "ly:unpure-pure-container-unpure-part",
  3342. "ly:unpure-pure-container?",
  3343. "ly:usage",
  3344. "ly:vaticana-ligature::brew-ligature-primitive",
  3345. "ly:vaticana-ligature::print",
  3346. "ly:verbose-output?",
  3347. "ly:version",
  3348. "ly:version?",
  3349. "ly:volta-bracket-interface::print",
  3350. "ly:volta-bracket::calc-shorten-pair",
  3351. "ly:volta-repeat-iterator::constructor",
  3352. "ly:volta-specced-music-iterator::constructor",
  3353. "ly:vowel-transition::set-spacing-rods",
  3354. "ly:warning",
  3355. "ly:warning-located",
  3356. "ly:wide-char->utf-8",
  3357. "lyric-hyphen::vaticana-style",
  3358. "lyric-text::print",
  3359. "magnification->font-size",
  3360. "magnify-markup",
  3361. "magnifyStaff-is-set?",
  3362. "magstep",
  3363. "maj7-modifier",
  3364. "make-abs-fontsize-markup",
  3365. "make-abs-hspace-markup",
  3366. "make-abs-vspace-markup",
  3367. "make-accidental-dodecaphonic-rule",
  3368. "make-accidental-markup",
  3369. "make-accidental-rule",
  3370. "make-align-on-other-markup",
  3371. "make-annotate-moving-markup",
  3372. "make-append-to-tag-markup",
  3373. "make-apply-context",
  3374. "make-arrow-head-markup",
  3375. "make-articulation",
  3376. "make-auto-footnote-markup",
  3377. "make-autochange-music",
  3378. "make-backslashed-digit-markup",
  3379. "make-bar-line-markup",
  3380. "make-beam-markup",
  3381. "make-bezier-sandwich-stencil",
  3382. "make-bold-markup",
  3383. "make-bow-stencil",
  3384. "make-box-markup",
  3385. "make-bracket-bar-line",
  3386. "make-bracket-markup",
  3387. "make-c-time-signature-markup",
  3388. "make-caps-markup",
  3389. "make-center-align-markup",
  3390. "make-center-column-markup",
  3391. "make-central-column-hole-addresses",
  3392. "make-char-markup",
  3393. "make-chord-elements",
  3394. "make-circle-markup",
  3395. "make-circle-stencil",
  3396. "make-clef-set",
  3397. "make-coda-markup",
  3398. "make-colon-bar-line",
  3399. "make-color-handler",
  3400. "make-column-lines-markup-list",
  3401. "make-column-markup",
  3402. "make-combine-markup",
  3403. "make-compound-meter-markup",
  3404. "make-concat-markup",
  3405. "make-conditional-trill-markup-markup",
  3406. "make-connected-line",
  3407. "make-connected-path-stencil",
  3408. "make-cue-clef-set",
  3409. "make-cue-clef-unset",
  3410. "make-customTabClef-markup",
  3411. "make-dashed-bar-line",
  3412. "make-dir-column-markup",
  3413. "make-dotted-bar-line",
  3414. "make-doubleflat-markup",
  3415. "make-doublesharp-markup",
  3416. "make-draw-circle-markup",
  3417. "make-draw-dashed-line-markup",
  3418. "make-draw-dotted-line-markup",
  3419. "make-draw-hline-markup",
  3420. "make-draw-line-markup",
  3421. "make-draw-squiggle-line-markup",
  3422. "make-duration-of-length",
  3423. "make-dynamic-markup",
  3424. "make-ellipse-markup",
  3425. "make-ellipse-stencil",
  3426. "make-empty-bar-line",
  3427. "make-engraver",
  3428. "make-epsfile-markup",
  3429. "make-event-chord",
  3430. "make-extended-scale",
  3431. "make-eyeglasses-markup",
  3432. "make-fermata-markup",
  3433. "make-figured-bass-markup",
  3434. "make-fill-line-markup",
  3435. "make-fill-with-pattern-markup",
  3436. "make-filled-box-markup",
  3437. "make-filled-box-stencil",
  3438. "make-finger-markup",
  3439. "make-first-visible-markup",
  3440. "make-flat-markup",
  3441. "make-fontCaps-markup",
  3442. "make-fontsize-markup",
  3443. "make-footnote-markup",
  3444. "make-fraction-markup",
  3445. "make-fret-diagram",
  3446. "make-fret-diagram-markup",
  3447. "make-fret-diagram-terse-markup",
  3448. "make-fret-diagram-verbose-markup",
  3449. "make-fromproperty-markup",
  3450. "make-general-align-markup",
  3451. "make-glyph-time-signature-markup",
  3452. "make-grace-music",
  3453. "make-graceless-rhythmic-location",
  3454. "make-grob-property-override",
  3455. "make-grob-property-revert",
  3456. "make-grob-property-set",
  3457. "make-halign-markup",
  3458. "make-harmonic",
  3459. "make-harp-pedal-markup",
  3460. "make-hbracket-markup",
  3461. "make-hcenter-in-markup",
  3462. "make-hspace-markup",
  3463. "make-huge-markup",
  3464. "make-if-markup",
  3465. "make-image-markup",
  3466. "make-initial-context-music",
  3467. "make-italic-markup",
  3468. "make-justified-lines-markup-list",
  3469. "make-justify-field-markup",
  3470. "make-justify-line-markup",
  3471. "make-justify-markup",
  3472. "make-justify-string-markup",
  3473. "make-keep-with-tag-markup",
  3474. "make-key-alist",
  3475. "make-key-symbols",
  3476. "make-kievan-bar-line",
  3477. "make-large-markup",
  3478. "make-larger-markup",
  3479. "make-left-align-markup",
  3480. "make-left-brace-markup",
  3481. "make-left-column-markup",
  3482. "make-left-hand-key-addresses",
  3483. "make-line-markup",
  3484. "make-line-stencil",
  3485. "make-lookup-markup",
  3486. "make-lower-markup",
  3487. "make-lyric-event",
  3488. "make-lyric-repeat-count-formatter",
  3489. "make-magnify-markup",
  3490. "make-map-markup-commands-markup-list",
  3491. "make-markalphabet-markup",
  3492. "make-markletter-markup",
  3493. "make-markup",
  3494. "make-modal-inverter",
  3495. "make-modal-transposer",
  3496. "make-multi-measure-rest",
  3497. "make-multi-measure-rest-by-number-markup",
  3498. "make-music",
  3499. "make-musicglyph-markup",
  3500. "make-name-keylist",
  3501. "make-named-spreadsheet",
  3502. "make-natural-markup",
  3503. "make-no-bar-line",
  3504. "make-non-relative-music",
  3505. "make-normal-size-sub-markup",
  3506. "make-normal-size-super-markup",
  3507. "make-normal-text-markup",
  3508. "make-normal-weight-markup",
  3509. "make-normalsize-markup",
  3510. "make-note-by-number-markup",
  3511. "make-note-markup",
  3512. "make-null-markup",
  3513. "make-number-keylist",
  3514. "make-number-markup",
  3515. "make-on-the-fly-markup",
  3516. "make-oval-markup",
  3517. "make-oval-stencil",
  3518. "make-overlay-markup",
  3519. "make-override-lines-markup-list",
  3520. "make-override-markup",
  3521. "make-overtie-markup",
  3522. "make-pad-around-markup",
  3523. "make-pad-markup-markup",
  3524. "make-pad-to-box-markup",
  3525. "make-pad-x-markup",
  3526. "make-padding",
  3527. "make-page-link-markup",
  3528. "make-page-ref-markup",
  3529. "make-parenthesis-stencil",
  3530. "make-parenthesize-markup",
  3531. "make-part-combine-context-changes",
  3532. "make-part-combine-marks",
  3533. "make-partial-ellipse-stencil",
  3534. "make-partial-set",
  3535. "make-path-markup",
  3536. "make-path-stencil",
  3537. "make-pattern-markup",
  3538. "make-percent-set",
  3539. "make-performer",
  3540. "make-polygon-markup",
  3541. "make-postscript-markup",
  3542. "make-property-recursive-markup",
  3543. "make-property-set",
  3544. "make-property-unset",
  3545. "make-push-to-tag-markup",
  3546. "make-put-adjacent-markup",
  3547. "make-qr-code-markup",
  3548. "make-raise-markup",
  3549. "make-relative",
  3550. "make-relative::to-relative-callback",
  3551. "make-remove-with-tag-markup",
  3552. "make-repeat",
  3553. "make-replace-markup",
  3554. "make-rest-by-number-markup",
  3555. "make-rest-markup",
  3556. "make-rhythm-markup",
  3557. "make-rhythmic-location",
  3558. "make-right-align-markup",
  3559. "make-right-brace-markup",
  3560. "make-right-column-markup",
  3561. "make-right-hand-key-addresses",
  3562. "make-rotate-markup",
  3563. "make-rounded-box-markup",
  3564. "make-sans-markup",
  3565. "make-scale",
  3566. "make-scale-markup",
  3567. "make-score-lines-markup-list",
  3568. "make-score-markup",
  3569. "make-segno-bar-line",
  3570. "make-segno-markup",
  3571. "make-semiflat-markup",
  3572. "make-semisharp-markup",
  3573. "make-semitone->pitch",
  3574. "make-sequential-music",
  3575. "make-serif-markup",
  3576. "make-sesquiflat-markup",
  3577. "make-sesquisharp-markup",
  3578. "make-session-variable",
  3579. "make-setting",
  3580. "make-sharp-markup",
  3581. "make-short-bar-line",
  3582. "make-simple-bar-line",
  3583. "make-simple-markup",
  3584. "make-simultaneous-music",
  3585. "make-skip-music",
  3586. "make-skipped",
  3587. "make-slashed-digit-markup",
  3588. "make-small-markup",
  3589. "make-smallCaps-markup",
  3590. "make-smaller-markup",
  3591. "make-spacer-bar-line",
  3592. "make-span-event",
  3593. "make-split-state",
  3594. "make-spreadsheet",
  3595. "make-stem-span!",
  3596. "make-stem-spans!",
  3597. "make-stencil-boxer",
  3598. "make-stencil-circler",
  3599. "make-stencil-markup",
  3600. "make-string-lines-markup-list",
  3601. "make-strut-markup",
  3602. "make-sub-markup",
  3603. "make-super-markup",
  3604. "make-symbol-alist",
  3605. "make-tab-heads-transparent",
  3606. "make-table-markup-list",
  3607. "make-tag-list-markup-list",
  3608. "make-tag-markup",
  3609. "make-teeny-markup",
  3610. "make-text-accidental-markup",
  3611. "make-text-doubleflat-markup",
  3612. "make-text-doublesharp-markup",
  3613. "make-text-flat-markup",
  3614. "make-text-natural-markup",
  3615. "make-text-sharp-markup",
  3616. "make-thick-bar-line",
  3617. "make-tick-bar-line",
  3618. "make-tie-markup",
  3619. "make-tie-stencil",
  3620. "make-tied-lyric-markup",
  3621. "make-tilted-portion",
  3622. "make-time-signature-set",
  3623. "make-tiny-markup",
  3624. "make-tmpfile",
  3625. "make-translate-markup",
  3626. "make-translate-scaled-markup",
  3627. "make-translator",
  3628. "make-translator-component",
  3629. "make-translator-internal",
  3630. "make-transparent-box-stencil",
  3631. "make-transparent-markup",
  3632. "make-tremolo-set",
  3633. "make-triangle-markup",
  3634. "make-type-checker",
  3635. "make-typewriter-markup",
  3636. "make-underline-markup",
  3637. "make-undertie-markup",
  3638. "make-unfolded-set",
  3639. "make-unless-markup",
  3640. "make-upright-markup",
  3641. "make-varcoda-markup",
  3642. "make-vcenter-markup",
  3643. "make-verbatim-file-markup",
  3644. "make-voice-props-override",
  3645. "make-voice-props-revert",
  3646. "make-voice-props-set",
  3647. "make-voice-states",
  3648. "make-volta-number-markup",
  3649. "make-volta-set",
  3650. "make-vspace-markup",
  3651. "make-whiteout-markup",
  3652. "make-with-color-markup",
  3653. "make-with-dimension-from-markup",
  3654. "make-with-dimension-markup",
  3655. "make-with-dimensions-from-markup",
  3656. "make-with-dimensions-markup",
  3657. "make-with-link-markup",
  3658. "make-with-outline-markup",
  3659. "make-with-string-transformer-markup",
  3660. "make-with-true-dimension-markup",
  3661. "make-with-true-dimensions-markup",
  3662. "make-with-url-markup",
  3663. "make-woodwind-diagram-markup",
  3664. "make-wordwrap-field-markup",
  3665. "make-wordwrap-internal-markup-list",
  3666. "make-wordwrap-lines-markup-list",
  3667. "make-wordwrap-markup",
  3668. "make-wordwrap-string-internal-markup-list",
  3669. "make-wordwrap-string-markup",
  3670. "map-markup-commands-markup-list",
  3671. "map-selected-alist-keys",
  3672. "map-some-music",
  3673. "markalphabet-markup",
  3674. "marked-up-headfoot",
  3675. "marked-up-title",
  3676. "markgeneric-string",
  3677. "markletter-markup",
  3678. "markup",
  3679. "markup->string",
  3680. "markup-argument-list-error",
  3681. "markup-argument-list?",
  3682. "markup-command-list?",
  3683. "markup-command-signature",
  3684. "markup-default-to-string-method",
  3685. "markup-expression->make-markup",
  3686. "markup-function-as-string-method",
  3687. "markup-function-category",
  3688. "markup-function-internal?",
  3689. "markup-function-properties",
  3690. "markup-function?",
  3691. "markup-join",
  3692. "markup-lambda",
  3693. "markup-lambda-listify",
  3694. "markup-lambda-worker",
  3695. "markup-list-function?",
  3696. "markup-list-lambda",
  3697. "markup-list?",
  3698. "markup-thrower-typecheck",
  3699. "markup-typecheck?",
  3700. "markup?",
  3701. "match-predicate",
  3702. "matrix-rotate-counterclockwise",
  3703. "measure-counter::text",
  3704. "mensural-flag",
  3705. "merge-details",
  3706. "metronome-markup",
  3707. "middle-broken-spanner?",
  3708. "midi-program",
  3709. "midline-stencil",
  3710. "minmax/cmp",
  3711. "minor-modifier",
  3712. "mkdir-if-not-exist",
  3713. "mm-rest-child-list",
  3714. "mmrest-of-length",
  3715. "modern-straight-flag",
  3716. "modified-font-metric-font-scaling",
  3717. "modulo-bar-number-visible",
  3718. "moment",
  3719. "moment->fraction",
  3720. "moment-min",
  3721. "moment-pair?",
  3722. "moment<=?",
  3723. "move-chord-note",
  3724. "multi-fork",
  3725. "multi-measure-rest-by-number-markup",
  3726. "music->make-music",
  3727. "music-check-error",
  3728. "music-clone",
  3729. "music-filter",
  3730. "music-invert",
  3731. "music-is-of-type?",
  3732. "music-map",
  3733. "music-pitches",
  3734. "music-property-description",
  3735. "music-selective-filter",
  3736. "music-selective-map",
  3737. "music-separator?",
  3738. "music-type-predicate",
  3739. "musical-length->number",
  3740. "musical-length-as-moment?",
  3741. "musical-length-as-number?",
  3742. "musical-length?",
  3743. "musicglyph-markup",
  3744. "n-true-entries",
  3745. "narrow-glyph?",
  3746. "natural-chord-alteration",
  3747. "natural-markup",
  3748. "negate-extent",
  3749. "neo-modern-accidental-rule",
  3750. "no-flag",
  3751. "non-negative-number?",
  3752. "normal-flag",
  3753. "normal-size-sub-markup",
  3754. "normal-size-super-markup",
  3755. "normal-text-markup",
  3756. "normal-weight-markup",
  3757. "normalize-color",
  3758. "normalsize-markup",
  3759. "not-first-broken-spanner?",
  3760. "not-last-broken-spanner?",
  3761. "note-by-number-markup",
  3762. "note-events",
  3763. "note-head::brew-ez-stencil",
  3764. "note-head::calc-duration-log",
  3765. "note-head::calc-glyph-name",
  3766. "note-head::calc-kievan-duration-log",
  3767. "note-markup",
  3768. "note-name->german-markup",
  3769. "note-name->markup",
  3770. "note-name->string",
  3771. "note-name-markup",
  3772. "note-names-language",
  3773. "note-to-cluster",
  3774. "notes-to-clusters",
  3775. "null-markup",
  3776. "number-column-stencil",
  3777. "number-format",
  3778. "number-list?",
  3779. "number-markup",
  3780. "number-or-false?",
  3781. "number-or-grob?",
  3782. "number-or-number-pair?",
  3783. "number-or-pair?",
  3784. "number-or-string?",
  3785. "number-pair-list?",
  3786. "number-pair?",
  3787. "numbered-footnotes",
  3788. "numerify",
  3789. "object-type",
  3790. "object-type-name",
  3791. "oboe-lh-I-key-stencil",
  3792. "oboe-lh-II-key-stencil",
  3793. "oboe-lh-III-key-stencil",
  3794. "oboe-lh-b-key-stencil",
  3795. "oboe-lh-bes-key-stencil",
  3796. "oboe-lh-cis-key-stencil",
  3797. "oboe-lh-d-key-stencil",
  3798. "oboe-lh-ees-key-stencil",
  3799. "oboe-lh-ees-lh-bes-key-stencil",
  3800. "oboe-lh-f-key-stencil",
  3801. "oboe-lh-gis-key-stencil",
  3802. "oboe-lh-gis-lh-low-b-key-stencil",
  3803. "oboe-lh-low-b-key-stencil",
  3804. "oboe-lh-octave-key-stencil",
  3805. "oboe-rh-a-key-stencil",
  3806. "oboe-rh-banana-key-stencil",
  3807. "oboe-rh-c-key-stencil",
  3808. "oboe-rh-c-rh-ees-key-stencil",
  3809. "oboe-rh-cis-key-stencil",
  3810. "oboe-rh-d-key-stencil",
  3811. "oboe-rh-ees-key-stencil",
  3812. "oboe-rh-f-key-stencil",
  3813. "oboe-rh-gis-key-stencil",
  3814. "octave-woodwind-text-stencil",
  3815. "offset-add",
  3816. "offset-flip-y",
  3817. "offset-fret",
  3818. "offset-multiple-types",
  3819. "offset-scale",
  3820. "offsetter",
  3821. "old-straight-flag",
  3822. "on-the-fly-markup",
  3823. "only-if-beamed",
  3824. "optional-material-bracket::positions",
  3825. "ordered-cons",
  3826. "other-axis",
  3827. "output-module?",
  3828. "output-scopes",
  3829. "outputproperty-compatibility",
  3830. "oval-markup",
  3831. "oval-stencil",
  3832. "overlay-markup",
  3833. "override-head-style",
  3834. "override-lines-markup-list",
  3835. "override-markup",
  3836. "override-property-setting",
  3837. "override-time-signature-setting",
  3838. "overtie-markup",
  3839. "pad-around-markup",
  3840. "pad-markup-markup",
  3841. "pad-to-box-markup",
  3842. "pad-x-markup",
  3843. "page-link-markup",
  3844. "page-ref-markup",
  3845. "pair-map",
  3846. "pango-font-name",
  3847. "pango-pf-file-name",
  3848. "pango-pf-font-name",
  3849. "pango-pf-fontindex",
  3850. "paper-variable",
  3851. "parentheses-interface::calc-Y-extent",
  3852. "parentheses-interface::calc-Y-offset",
  3853. "parentheses-interface::calc-parenthesis-stencils",
  3854. "parentheses-interface::calc-pure-Y-offset",
  3855. "parentheses-interface::maybe-pure-Y-offset",
  3856. "parentheses-interface::print",
  3857. "parenthesize-markup",
  3858. "parenthesize-stencil",
  3859. "parse-and-check-version",
  3860. "parse-lily-version",
  3861. "parse-terse-string",
  3862. "passage-delimiter::break-visibility",
  3863. "path-markup",
  3864. "pattern-markup",
  3865. "percussion?",
  3866. "performance-name-from-headers",
  3867. "piccolo-rh-x-key-stencil",
  3868. "pitch-alteration-semitones",
  3869. "pitch-invert",
  3870. "pitch-of-note",
  3871. "pitch-step",
  3872. "polar->rectangular",
  3873. "polygon-markup",
  3874. "position-true-endpoint",
  3875. "positive-exact-integer?",
  3876. "positive-exact-rational?",
  3877. "positive-fraction?",
  3878. "positive-integer-or-false?",
  3879. "positive-musical-length-as-moment?",
  3880. "positive-musical-length-as-number?",
  3881. "positive-musical-length?",
  3882. "positive-number?",
  3883. "postprocess-output",
  3884. "postscript->pdf",
  3885. "postscript->png",
  3886. "postscript->ps",
  3887. "postscript-markup",
  3888. "precompute-music-length",
  3889. "prepend-alist-chain",
  3890. "prepend-props",
  3891. "pretty-printable?",
  3892. "previous-span-state",
  3893. "previous-voice-state",
  3894. "print-book-with",
  3895. "print-book-with-defaults",
  3896. "print-book-with-defaults-as-systems",
  3897. "print-circled-text-callback",
  3898. "print-keys",
  3899. "print-keys-verbose",
  3900. "process-fill-value",
  3901. "property-recursive-markup",
  3902. "props-with-tag-additions",
  3903. "props-with-tags-to-keep",
  3904. "props-with-tags-to-remove",
  3905. "pure-chain-offset-callback",
  3906. "pure-from-neighbor-interface::account-for-span-bar",
  3907. "pure-from-neighbor-interface::extra-spacing-height",
  3908. "pure-from-neighbor-interface::extra-spacing-height-at-beginning-of-line",
  3909. "pure-from-neighbor-interface::extra-spacing-height-including-staff",
  3910. "pure-from-neighbor-interface::pure-height",
  3911. "push-to-tag-markup",
  3912. "put-adjacent-markup",
  3913. "qr-code-markup",
  3914. "quarterdiff->string",
  3915. "quote-substitute",
  3916. "raise-markup",
  3917. "randomize-rand-seed",
  3918. "ratio->fret",
  3919. "ratio->pitch",
  3920. "rational-or-procedure?",
  3921. "read-lily-expression",
  3922. "read-lily-expression-internal",
  3923. "recent-enough?",
  3924. "recompute-music-length",
  3925. "recording-group-emulate",
  3926. "relevant-book-systems",
  3927. "relevant-dump-systems",
  3928. "remove-grace-property",
  3929. "remove-step",
  3930. "remove-whitespace",
  3931. "remove-with-tag-markup",
  3932. "replace-markup",
  3933. "replace-step",
  3934. "replicate-modify",
  3935. "rest-by-number-markup",
  3936. "rest-markup",
  3937. "retrieve-glyph-flag",
  3938. "retrograde-music",
  3939. "return-1",
  3940. "reverse-interval",
  3941. "revert-fontSize",
  3942. "revert-head-style",
  3943. "revert-property-setting",
  3944. "revert-props",
  3945. "revert-time-signature-setting",
  3946. "rgb-color",
  3947. "rh-woodwind-text-stencil",
  3948. "rhythm-markup",
  3949. "rhythmic-location->file-string",
  3950. "rhythmic-location->string",
  3951. "rhythmic-location-bar-number",
  3952. "rhythmic-location-measure-position",
  3953. "rhythmic-location<=?",
  3954. "rhythmic-location<?",
  3955. "rhythmic-location=?",
  3956. "rhythmic-location>=?",
  3957. "rhythmic-location>?",
  3958. "rhythmic-location?",
  3959. "rich-bassoon-uber-key-stencil",
  3960. "rich-e-stencil",
  3961. "rich-group-draw-rule",
  3962. "rich-group-extra-offset-rule",
  3963. "rich-path-stencil",
  3964. "rich-pe-stencil",
  3965. "right-align-markup",
  3966. "right-brace-markup",
  3967. "right-column-markup",
  3968. "ring-column-circle-stencil",
  3969. "robust-bar-number-function",
  3970. "rotate-markup",
  3971. "rounded-box-markup",
  3972. "rounded-box-stencil",
  3973. "sane-simple-time-signature?",
  3974. "sane-time-signature?",
  3975. "sans-markup",
  3976. "sans-serif-stencil",
  3977. "saxophone-lh-T-key-stencil",
  3978. "saxophone-lh-b-cis-key-stencil",
  3979. "saxophone-lh-b-key-stencil",
  3980. "saxophone-lh-bes-key-stencil",
  3981. "saxophone-lh-cis-key-stencil",
  3982. "saxophone-lh-d-key-stencil",
  3983. "saxophone-lh-ees-key-stencil",
  3984. "saxophone-lh-f-key-stencil",
  3985. "saxophone-lh-front-f-key-stencil",
  3986. "saxophone-lh-gis-key-stencil",
  3987. "saxophone-lh-low-a-key-stencil",
  3988. "saxophone-lh-low-bes-key-stencil",
  3989. "saxophone-name-passerelle",
  3990. "saxophone-rh-bes-key-stencil",
  3991. "saxophone-rh-c-key-stencil",
  3992. "saxophone-rh-e-key-stencil",
  3993. "saxophone-rh-ees-key-stencil",
  3994. "saxophone-rh-fis-key-stencil",
  3995. "saxophone-rh-high-fis-key-stencil",
  3996. "saxophone-rh-low-c-key-stencil",
  3997. "saxophone-rh-side-key-stencil",
  3998. "scale->factor",
  3999. "scale-beam-thickness",
  4000. "scale-by-font-size",
  4001. "scale-fontSize",
  4002. "scale-layout",
  4003. "scale-markup",
  4004. "scale-props",
  4005. "scale?",
  4006. "scheme?",
  4007. "scm->string",
  4008. "score-lines-markup-list",
  4009. "score-markup",
  4010. "scorify-music",
  4011. "script-interface::calc-x-offset",
  4012. "script-or-side-position-cross-staff",
  4013. "script::ledger-lines",
  4014. "search-executable",
  4015. "seconds->moment",
  4016. "segment->music",
  4017. "segment-el->music",
  4018. "segno-markup",
  4019. "select-head-glyph",
  4020. "select-option",
  4021. "self-alignment-interface::self-aligned-on-breakable",
  4022. "self-evaluating?",
  4023. "semi-tie::calc-cross-staff",
  4024. "semiflat-markup",
  4025. "semisharp-markup",
  4026. "sequential-music-to-chord-exceptions",
  4027. "serif-markup",
  4028. "sesquiflat-markup",
  4029. "sesquisharp-markup",
  4030. "session-replay",
  4031. "session-save",
  4032. "session-start-record",
  4033. "session-terminate",
  4034. "set-accidental-style",
  4035. "set-bar-number-visibility",
  4036. "set-counter-text!",
  4037. "set-default-paper-size",
  4038. "set-global-staff-size",
  4039. "set-mus-properties!",
  4040. "set-output-property",
  4041. "set-paper-dimension-variables",
  4042. "set-paper-dimensions",
  4043. "set-paper-size",
  4044. "sharp-markup",
  4045. "shift-duration-log",
  4046. "shift-octave",
  4047. "shift-one-duration-log",
  4048. "shift-right-at-line-begin",
  4049. "shift-semitone->pitch",
  4050. "short-glyph?",
  4051. "sign",
  4052. "silence-events",
  4053. "simple-markup",
  4054. "simple-split->state",
  4055. "simple-stencil-alist",
  4056. "skip->rest",
  4057. "skip-as-needed",
  4058. "skip-of-length",
  4059. "skip-of-moment-span",
  4060. "skyline-pair-and-non-empty?",
  4061. "skyline-pair::empty?",
  4062. "slashed-digit-internal",
  4063. "slashed-digit-markup",
  4064. "slashify",
  4065. "small-markup",
  4066. "smallCaps-markup",
  4067. "smaller-markup",
  4068. "space-lines",
  4069. "span-bar::compound-bar-line",
  4070. "span-state",
  4071. "split-at-predicate",
  4072. "split-index",
  4073. "split-list",
  4074. "split-list-by-group-lengths",
  4075. "split-list-by-separator",
  4076. "splits-to-states-using",
  4077. "stack-lines",
  4078. "stack-stencil-line",
  4079. "stack-stencils",
  4080. "stack-stencils-padding-list",
  4081. "stack-thirds",
  4082. "staff-ellipsis::print",
  4083. "staff-ellipsis::pure-height",
  4084. "staff-highlight::height",
  4085. "staff-highlight::print",
  4086. "staff-highlight::width",
  4087. "staff-magnification-is-changing?",
  4088. "staff-symbol-line-count",
  4089. "staff-symbol-line-span",
  4090. "staff-symbol::calc-widened-extent",
  4091. "standard-e-stencil",
  4092. "standard-path-stencil",
  4093. "state+moment",
  4094. "states-to-change-list",
  4095. "states-to-segments",
  4096. "stderr",
  4097. "stem-connectable?",
  4098. "stem-is-root?",
  4099. "stem-span-stencil",
  4100. "stem-stub::do-calculations",
  4101. "stem-stub::extra-spacing-height",
  4102. "stem-stub::pure-height",
  4103. "stem-stub::width",
  4104. "stem-tremolo::calc-tab-width",
  4105. "stem::calc-duration-log",
  4106. "stem::kievan-offset-callback",
  4107. "stencil-fretboard-extent",
  4108. "stencil-fretboard-offset",
  4109. "stencil-markup",
  4110. "stencil-pad-around",
  4111. "stencil-true-extent",
  4112. "stencil-whiteout",
  4113. "stencil-whiteout-box",
  4114. "stencil-whiteout-outline",
  4115. "stencil-with-color",
  4116. "sticky-grob-interface::inherit-property",
  4117. "straight-flag",
  4118. "string->string-list",
  4119. "string-encode-integer",
  4120. "string-endswith",
  4121. "string-lines-markup-list",
  4122. "string-number::calc-text",
  4123. "string-or-music?",
  4124. "string-or-pair?",
  4125. "string-or-symbol?",
  4126. "string-startswith",
  4127. "string-thickness",
  4128. "strip-string-annotation",
  4129. "stroke-finger::calc-text",
  4130. "strut-markup",
  4131. "style-note-heads",
  4132. "sub-markup",
  4133. "subtract-base-fret",
  4134. "suggest-convert-ly-message",
  4135. "super-markup",
  4136. "sus-modifier",
  4137. "symbol-concatenate",
  4138. "symbol-footnotes",
  4139. "symbol-key-alist?",
  4140. "symbol-key<?",
  4141. "symbol-list-or-music?",
  4142. "symbol-list-or-symbol?",
  4143. "symbol-list?",
  4144. "symbol<?",
  4145. "symlink-if-not-exist",
  4146. "symlink-or-copy-if-not-exist",
  4147. "symmetric-interval",
  4148. "synced?",
  4149. "syntax-function-procedure-arguments",
  4150. "system-start-text::calc-x-offset",
  4151. "system-start-text::calc-y-offset",
  4152. "system-start-text::print",
  4153. "tab-note-head::calc-glyph-name",
  4154. "tab-note-head::handle-ties",
  4155. "tab-note-head::print",
  4156. "tab-note-head::print-custom-fret-label",
  4157. "tab-note-head::whiteout-if-style-set",
  4158. "tablature-position-on-lines",
  4159. "table-markup-list",
  4160. "tabvoice::draw-double-stem-for-half-notes",
  4161. "tabvoice::make-double-stem-width-for-half-notes",
  4162. "tag-group-get",
  4163. "tag-list-markup-list",
  4164. "tag-markup",
  4165. "tags-keep-predicate",
  4166. "tags-remove-predicate",
  4167. "tags-visible?",
  4168. "teaching-accidental-rule",
  4169. "teeny-markup",
  4170. "text-accidental-markup",
  4171. "text-doubleflat-markup",
  4172. "text-doublesharp-markup",
  4173. "text-fill-translate",
  4174. "text-flat-markup",
  4175. "text-mark-interface::calc-break-visibility",
  4176. "text-mark-interface::calc-self-alignment-X",
  4177. "text-natural-markup",
  4178. "text-sharp-markup",
  4179. "tie-markup",
  4180. "tied-lyric-markup",
  4181. "time-signature->fraction",
  4182. "time-signature->list",
  4183. "time-signature?",
  4184. "tiny-markup",
  4185. "to-staff-space",
  4186. "translate-draw-instructions",
  4187. "translate-key-instruction",
  4188. "translate-markup",
  4189. "translate-scaled-markup",
  4190. "translator-property-description",
  4191. "transparent-markup",
  4192. "transposer-factory",
  4193. "traverse-state-machine",
  4194. "triangle-markup",
  4195. "trill-pitch-group::pure-height",
  4196. "true-entry?",
  4197. "tsig-abbr-expand",
  4198. "tsig-fraction-abbr-expand",
  4199. "tuning",
  4200. "tuplet-number::append-note-wrapper",
  4201. "tuplet-number::calc-denominator-text",
  4202. "tuplet-number::calc-direction",
  4203. "tuplet-number::calc-fraction-text",
  4204. "tuplet-number::fraction-with-notes",
  4205. "tuplet-number::non-default-fraction-with-notes",
  4206. "tuplet-number::non-default-tuplet-denominator-text",
  4207. "tuplet-number::non-default-tuplet-fraction-text",
  4208. "type-name",
  4209. "typewriter-markup",
  4210. "unbroken-or-first-broken-spanner?",
  4211. "unbroken-or-last-broken-spanner?",
  4212. "unbroken-spanner?",
  4213. "underline-markup",
  4214. "undertie-markup",
  4215. "unfold-repeats",
  4216. "unfold-repeats-fully",
  4217. "uniform-draw-instructions",
  4218. "uniform-extra-offset-rule",
  4219. "uniq-list",
  4220. "uniqued-alist",
  4221. "unity-if-multimeasure",
  4222. "universal-color",
  4223. "unless-markup",
  4224. "unspecified-music?",
  4225. "update-possb-list",
  4226. "upper-key-stencil",
  4227. "upright-markup",
  4228. "value-for-spanner-piece",
  4229. "varcoda-markup",
  4230. "variable-column-circle-stencil",
  4231. "vcenter-markup",
  4232. "vector-for-each",
  4233. "verbatim-file-markup",
  4234. "version-not-seen-message",
  4235. "voice-states",
  4236. "voicify-chord",
  4237. "voicify-list",
  4238. "voicify-music",
  4239. "void?",
  4240. "volta-bracket-interface::calc-text",
  4241. "volta-bracket-interface::pure-height",
  4242. "volta-bracket::calc-hook-visibility",
  4243. "volta-number-markup",
  4244. "volta-spec-music",
  4245. "vspace-markup",
  4246. "whiteout-markup",
  4247. "with-color-markup",
  4248. "with-dimension-from-markup",
  4249. "with-dimension-markup",
  4250. "with-dimensions-from-markup",
  4251. "with-dimensions-markup",
  4252. "with-link-markup",
  4253. "with-outline-markup",
  4254. "with-string-transformer-markup",
  4255. "with-true-dimension-markup",
  4256. "with-true-dimensions-markup",
  4257. "with-url-markup",
  4258. "woodwind-diagram-markup",
  4259. "wordwrap-field-markup",
  4260. "wordwrap-internal-markup-list",
  4261. "wordwrap-lines-markup-list",
  4262. "wordwrap-markup",
  4263. "wordwrap-stencils",
  4264. "wordwrap-string-internal-markup-list",
  4265. "wordwrap-string-markup",
  4266. "write-lilypond-book-aux-files",
  4267. "write-me",
  4268. "write-performances-midis",
  4269. "x11-color",
  4270. ]
  4271. context_properties = [
  4272. "aDueText",
  4273. "accidentalGrouping",
  4274. "additionalBassStrings",
  4275. "additionalPitchPrefix",
  4276. "alignAboveContext",
  4277. "alignBelowContext",
  4278. "alterationGlyphs",
  4279. "alternativeNumber",
  4280. "alternativeNumberingStyle",
  4281. "alternativeRestores",
  4282. "associatedVoice",
  4283. "associatedVoiceContext",
  4284. "associatedVoiceType",
  4285. "autoAccidentals",
  4286. "autoBeamCheck",
  4287. "autoBeaming",
  4288. "autoCautionaries",
  4289. "autoExtenders",
  4290. "barCheckSynchronize",
  4291. "barExtraVelocity",
  4292. "barNumberFormatter",
  4293. "barNumberVisibility",
  4294. "beamExceptions",
  4295. "beamHalfMeasure",
  4296. "beamMaximumSubdivision",
  4297. "beamMelismaBusy",
  4298. "beamMinimumSubdivision",
  4299. "beatBase",
  4300. "beatExtraVelocity",
  4301. "beatStructure",
  4302. "breathMarkDefinitions",
  4303. "breathMarkType",
  4304. "busyGrobs",
  4305. "caesuraType",
  4306. "caesuraTypeTransform",
  4307. "centerBarNumbers",
  4308. "chordChanges",
  4309. "chordNameExceptions",
  4310. "chordNameFunction",
  4311. "chordNameLowercaseMinor",
  4312. "chordNameSeparator",
  4313. "chordNoteNamer",
  4314. "chordPrefixSpacer",
  4315. "chordRootNamer",
  4316. "clefGlyph",
  4317. "clefPosition",
  4318. "clefTransposition",
  4319. "clefTranspositionFormatter",
  4320. "clefTranspositionStyle",
  4321. "codaMarkCount",
  4322. "codaMarkFormatter",
  4323. "completionBusy",
  4324. "completionFactor",
  4325. "completionUnit",
  4326. "connectArpeggios",
  4327. "countPercentRepeats",
  4328. "createKeyOnClefChange",
  4329. "createSpacing",
  4330. "crescendoSpanner",
  4331. "crescendoText",
  4332. "cueClefGlyph",
  4333. "cueClefPosition",
  4334. "cueClefTransposition",
  4335. "cueClefTranspositionFormatter",
  4336. "cueClefTranspositionStyle",
  4337. "currentBarLine",
  4338. "currentBarNumber",
  4339. "currentChordCause",
  4340. "currentChordText",
  4341. "currentCommandColumn",
  4342. "currentMusicalColumn",
  4343. "currentPerformanceMarkEvent",
  4344. "currentRehearsalMarkEvent",
  4345. "currentTupletDescription",
  4346. "dalSegnoTextFormatter",
  4347. "decrescendoSpanner",
  4348. "decrescendoText",
  4349. "defaultStrings",
  4350. "doubleRepeatBarType",
  4351. "doubleRepeatSegnoBarType",
  4352. "doubleSlurs",
  4353. "drumPitchTable",
  4354. "drumStyleTable",
  4355. "dynamicAbsoluteVolumeFunction",
  4356. "endAtSkip",
  4357. "endRepeatBarType",
  4358. "endRepeatSegnoBarType",
  4359. "explicitClefVisibility",
  4360. "explicitCueClefVisibility",
  4361. "explicitKeySignatureVisibility",
  4362. "extendersOverRests",
  4363. "extraNatural",
  4364. "figuredBassAlterationDirection",
  4365. "figuredBassCenterContinuations",
  4366. "figuredBassFormatter",
  4367. "figuredBassLargeNumberAlignment",
  4368. "figuredBassPlusDirection",
  4369. "figuredBassPlusStrokedAlist",
  4370. "finalFineTextVisibility",
  4371. "finalizations",
  4372. "fineBarType",
  4373. "fineSegnoBarType",
  4374. "fineStartRepeatSegnoBarType",
  4375. "fineText",
  4376. "fingeringOrientations",
  4377. "firstClef",
  4378. "followVoice",
  4379. "fontSize",
  4380. "forbidBreak",
  4381. "forbidBreakBetweenBarLines",
  4382. "forceBreak",
  4383. "forceClef",
  4384. "fretLabels",
  4385. "glissandoMap",
  4386. "graceSettings",
  4387. "gridInterval",
  4388. "handleNegativeFrets",
  4389. "harmonicAccidentals",
  4390. "harmonicDots",
  4391. "hasAxisGroup",
  4392. "hasStaffSpacing",
  4393. "highStringOne",
  4394. "ignoreBarChecks",
  4395. "ignoreBarNumberChecks",
  4396. "ignoreFiguredBassRest",
  4397. "ignoreMelismata",
  4398. "implicitBassFigures",
  4399. "includeGraceNotes",
  4400. "initialTimeSignatureVisibility",
  4401. "instrumentCueName",
  4402. "instrumentEqualizer",
  4403. "instrumentName",
  4404. "instrumentTransposition",
  4405. "internalBarNumber",
  4406. "keepAliveInterfaces",
  4407. "keyAlterationOrder",
  4408. "keyAlterations",
  4409. "lastChord",
  4410. "lastKeyAlterations",
  4411. "localAlterations",
  4412. "lyricMelismaAlignment",
  4413. "lyricRepeatCountFormatter",
  4414. "magnifyStaffValue",
  4415. "majorSevenSymbol",
  4416. "maximumFretStretch",
  4417. "measureBarType",
  4418. "measureLength",
  4419. "measurePosition",
  4420. "measureStartNow",
  4421. "melismaBusy",
  4422. "melismaBusyProperties",
  4423. "metronomeMarkFormatter",
  4424. "middleCClefPosition",
  4425. "middleCCuePosition",
  4426. "middleCOffset",
  4427. "middleCPosition",
  4428. "midiBalance",
  4429. "midiChannelMapping",
  4430. "midiChorusLevel",
  4431. "midiExpression",
  4432. "midiInstrument",
  4433. "midiMaximumVolume",
  4434. "midiMergeUnisons",
  4435. "midiMinimumVolume",
  4436. "midiPanPosition",
  4437. "midiReverbLevel",
  4438. "midiSkipOffset",
  4439. "minimumFret",
  4440. "minorChordModifier",
  4441. "noChordSymbol",
  4442. "noteNameFunction",
  4443. "noteNameSeparator",
  4444. "noteToFretFunction",
  4445. "nullAccidentals",
  4446. "ottavaStartNow",
  4447. "ottavation",
  4448. "ottavationMarkups",
  4449. "output",
  4450. "pageTurnMinimumRepeatLength",
  4451. "pageTurnMinimumRestLength",
  4452. "partCombineForced",
  4453. "partCombineTextsOnNote",
  4454. "partialBusy",
  4455. "pedalSostenutoStrings",
  4456. "pedalSostenutoStyle",
  4457. "pedalSustainStrings",
  4458. "pedalSustainStyle",
  4459. "pedalUnaCordaStrings",
  4460. "pedalUnaCordaStyle",
  4461. "predefinedDiagramTable",
  4462. "printAccidentalNames",
  4463. "printInitialRepeatBar",
  4464. "printKeyCancellation",
  4465. "printNotesLanguage",
  4466. "printOctaveNames",
  4467. "printPartCombineTexts",
  4468. "printTrivialVoltaRepeats",
  4469. "propertyStacks",
  4470. "proportionalNotationDuration",
  4471. "quotedCueEventTypes",
  4472. "quotedEventTypes",
  4473. "rehearsalMark",
  4474. "rehearsalMarkFormatter",
  4475. "repeatCommands",
  4476. "repeatCountVisibility",
  4477. "respectIncompleteBeams",
  4478. "restCompletionBusy",
  4479. "restNumberThreshold",
  4480. "restrainOpenStrings",
  4481. "rootSystem",
  4482. "scriptDefinitions",
  4483. "searchForVoice",
  4484. "sectionBarType",
  4485. "segnoBarType",
  4486. "segnoMarkCount",
  4487. "segnoMarkFormatter",
  4488. "segnoStyle",
  4489. "shapeNoteStyles",
  4490. "shortInstrumentName",
  4491. "shortVocalName",
  4492. "skipBars",
  4493. "skipTypesetting",
  4494. "slashChordSeparator",
  4495. "slurMelismaBusy",
  4496. "soloIIText",
  4497. "soloText",
  4498. "squashedPosition",
  4499. "staffLineLayoutFunction",
  4500. "stanza",
  4501. "startAtNoteColumn",
  4502. "startAtSkip",
  4503. "startRepeatBarType",
  4504. "startRepeatSegnoBarType",
  4505. "stavesFound",
  4506. "stemLeftBeamCount",
  4507. "stemRightBeamCount",
  4508. "strictBeatBeaming",
  4509. "stringFretFingerList",
  4510. "stringNumberOrientations",
  4511. "stringOneTopmost",
  4512. "stringTunings",
  4513. "strokeFingerOrientations",
  4514. "subdivideBeams",
  4515. "suggestAccidentals",
  4516. "supportNonIntegerFret",
  4517. "suspendMelodyDecisions",
  4518. "suspendRestMerging",
  4519. "systemStartDelimiter",
  4520. "systemStartDelimiterHierarchy",
  4521. "tabFullNotation",
  4522. "tabStaffLineLayoutFunction",
  4523. "tablatureFormat",
  4524. "tempoHideNote",
  4525. "tempoWholesPerMinute",
  4526. "tieMelismaBusy",
  4527. "tieWaitForNote",
  4528. "timeSignature",
  4529. "timeSignatureSettings",
  4530. "timing",
  4531. "tonic",
  4532. "topLevelAlignment",
  4533. "tupletFullLength",
  4534. "tupletFullLengthNote",
  4535. "tupletSpannerDuration",
  4536. "underlyingRepeatBarType",
  4537. "useBassFigureExtenders",
  4538. "vocalName",
  4539. "voltaBracketMusicalLength",
  4540. "whichBar",
  4541. ]
  4542. grob_properties = [
  4543. "X-align-on-main-noteheads",
  4544. "X-alignment-extent",
  4545. "X-attachment",
  4546. "X-common",
  4547. "X-extent",
  4548. "X-offset",
  4549. "X-padding",
  4550. "X-positions",
  4551. "Y-attachment",
  4552. "Y-common",
  4553. "Y-extent",
  4554. "Y-offset",
  4555. "accidental-grob",
  4556. "accidental-grobs",
  4557. "accidental-padding",
  4558. "add-cauda",
  4559. "add-join",
  4560. "add-stem",
  4561. "add-stem-support",
  4562. "adjacent-pure-heights",
  4563. "adjacent-spanners",
  4564. "after-line-breaking",
  4565. "align-dir",
  4566. "all-elements",
  4567. "allow-loose-spacing",
  4568. "allow-span-bar",
  4569. "allow-span-bar-above",
  4570. "alteration",
  4571. "alteration-alist",
  4572. "alteration-glyph-name-alist",
  4573. "annotation",
  4574. "annotation-balloon",
  4575. "annotation-line",
  4576. "arpeggio-direction",
  4577. "arrow-length",
  4578. "arrow-width",
  4579. "ascendens",
  4580. "auctum",
  4581. "auto-generated",
  4582. "auto-knee-gap",
  4583. "automatically-numbered",
  4584. "average-spacing-wishes",
  4585. "avoid-note-head",
  4586. "avoid-scripts",
  4587. "avoid-slur",
  4588. "axes",
  4589. "axis-group-parent-X",
  4590. "axis-group-parent-Y",
  4591. "bar-extent",
  4592. "bars-left",
  4593. "bars-right",
  4594. "base-shortest-duration",
  4595. "baseline-skip",
  4596. "beam",
  4597. "beam-segments",
  4598. "beam-thickness",
  4599. "beam-width",
  4600. "beamed-stem-shorten",
  4601. "beaming",
  4602. "beamlet-default-length",
  4603. "beamlet-max-length-proportion",
  4604. "before-line-breaking",
  4605. "begin-of-line-visible",
  4606. "bend-me",
  4607. "between-cols",
  4608. "bezier",
  4609. "bound-alignment-interfaces",
  4610. "bound-details",
  4611. "bound-padding",
  4612. "bound-prefatory-paddings",
  4613. "bounded-by-me",
  4614. "bracket",
  4615. "bracket-flare",
  4616. "bracket-text",
  4617. "bracket-visibility",
  4618. "break-align-anchor",
  4619. "break-align-anchor-alignment",
  4620. "break-align-orders",
  4621. "break-align-symbol",
  4622. "break-align-symbols",
  4623. "break-alignment",
  4624. "break-overshoot",
  4625. "break-visibility",
  4626. "break-visibility-passage-default",
  4627. "break-visibility-passage-end",
  4628. "break-visibility-passage-start",
  4629. "breakable",
  4630. "broken-bound-padding",
  4631. "c0-position",
  4632. "cause",
  4633. "cavum",
  4634. "chord-dots-limit",
  4635. "chord-names",
  4636. "circled-tip",
  4637. "clef-alignments",
  4638. "clip-edges",
  4639. "collapse-height",
  4640. "collision-interfaces",
  4641. "collision-voice-only",
  4642. "color",
  4643. "columns",
  4644. "common-shortest-duration",
  4645. "concaveness",
  4646. "concurrent-hairpins",
  4647. "conditional-elements",
  4648. "connect-to-neighbor",
  4649. "context-info",
  4650. "control-points",
  4651. "count-from",
  4652. "covered-grobs",
  4653. "cross-staff",
  4654. "damping",
  4655. "dash-definition",
  4656. "dash-fraction",
  4657. "dash-period",
  4658. "dashed-edge",
  4659. "default-direction",
  4660. "default-staff-staff-spacing",
  4661. "delta-position",
  4662. "deminutum",
  4663. "denominator-style",
  4664. "descendens",
  4665. "details",
  4666. "digit-names",
  4667. "direction",
  4668. "direction-source",
  4669. "dot",
  4670. "dot-count",
  4671. "dot-negative-kern",
  4672. "dot-placement-list",
  4673. "dot-stencil",
  4674. "dots",
  4675. "double-stem-separation",
  4676. "duration-log",
  4677. "eccentricity",
  4678. "edge-height",
  4679. "edge-text",
  4680. "elements",
  4681. "encompass-objects",
  4682. "endpoint-alignments",
  4683. "expand-limit",
  4684. "extra-dy",
  4685. "extra-offset",
  4686. "extra-spacing-height",
  4687. "extra-spacing-width",
  4688. "extroversion",
  4689. "fa-merge-direction",
  4690. "fa-styles",
  4691. "figures",
  4692. "filled",
  4693. "flag",
  4694. "flag-count",
  4695. "flag-style",
  4696. "flat-positions",
  4697. "flexa-height",
  4698. "flexa-interval",
  4699. "flexa-width",
  4700. "font",
  4701. "font-encoding",
  4702. "font-family",
  4703. "font-features",
  4704. "font-name",
  4705. "font-series",
  4706. "font-shape",
  4707. "font-size",
  4708. "font-stretch",
  4709. "font-variant",
  4710. "fonts",
  4711. "footnote",
  4712. "footnote-music",
  4713. "footnote-stencil",
  4714. "footnote-text",
  4715. "footnotes-after-line-breaking",
  4716. "footnotes-before-line-breaking",
  4717. "force-hshift",
  4718. "forced",
  4719. "forced-spacing",
  4720. "fraction",
  4721. "french-beaming",
  4722. "french-beaming-stem-adjustment",
  4723. "fret-diagram-details",
  4724. "full-length-padding",
  4725. "full-length-to-extent",
  4726. "full-measure-extra-space",
  4727. "full-size-change",
  4728. "gap",
  4729. "gap-count",
  4730. "glissando-index",
  4731. "glissando-skip",
  4732. "glyph",
  4733. "glyph-left",
  4734. "glyph-name",
  4735. "glyph-right",
  4736. "grace-spacing",
  4737. "graphical",
  4738. "grow-direction",
  4739. "hair-thickness",
  4740. "harp-pedal-details",
  4741. "has-span-bar",
  4742. "head-direction",
  4743. "head-width",
  4744. "head-x-offset",
  4745. "heads",
  4746. "height",
  4747. "height-limit",
  4748. "hide-tied-accidental-after-break",
  4749. "horizon-padding",
  4750. "horizontal-shift",
  4751. "horizontal-skylines",
  4752. "id",
  4753. "ideal-distances",
  4754. "ignore-ambitus",
  4755. "ignore-collision",
  4756. "implicit",
  4757. "important-column-ranks",
  4758. "in-note-direction",
  4759. "in-note-stencil",
  4760. "in-note-system-padding",
  4761. "inclinatum",
  4762. "index",
  4763. "inspect-quants",
  4764. "interfaces",
  4765. "items-worth-living",
  4766. "keep-alive-with",
  4767. "keep-inside-line",
  4768. "kern",
  4769. "knee",
  4770. "knee-spacing-correction",
  4771. "knee-to-beam",
  4772. "labels",
  4773. "layer",
  4774. "least-squares-dy",
  4775. "ledger-extra",
  4776. "ledger-line-thickness",
  4777. "ledger-positions",
  4778. "ledger-positions-function",
  4779. "left-bound-info",
  4780. "left-down-stem",
  4781. "left-items",
  4782. "left-neighbor",
  4783. "left-number-text",
  4784. "left-padding",
  4785. "length",
  4786. "length-fraction",
  4787. "ligature-flexa",
  4788. "line-break-penalty",
  4789. "line-break-permission",
  4790. "line-break-system-details",
  4791. "line-count",
  4792. "line-positions",
  4793. "line-thickness",
  4794. "linea",
  4795. "long-text",
  4796. "main-extent",
  4797. "make-dead-when",
  4798. "max-beam-connect",
  4799. "max-slope-factor",
  4800. "max-symbol-separation",
  4801. "maximum-gap",
  4802. "maybe-loose",
  4803. "measure-count",
  4804. "measure-division",
  4805. "measure-division-chord-placement-alist",
  4806. "measure-division-lines-alist",
  4807. "measure-length",
  4808. "melody-spanner",
  4809. "merge-differently-dotted",
  4810. "merge-differently-headed",
  4811. "meta",
  4812. "minimum-X-extent",
  4813. "minimum-X-space",
  4814. "minimum-Y-extent",
  4815. "minimum-distance",
  4816. "minimum-distances",
  4817. "minimum-length",
  4818. "minimum-length-after-break",
  4819. "minimum-length-fraction",
  4820. "minimum-space",
  4821. "minimum-translations-alist",
  4822. "musical-length",
  4823. "neighbors",
  4824. "nested-fraction-mixed",
  4825. "nested-fraction-orientation",
  4826. "nested-fraction-relative-font-size",
  4827. "neutral-direction",
  4828. "neutral-position",
  4829. "next",
  4830. "no-ledgers",
  4831. "no-stem-extend",
  4832. "non-break-align-symbols",
  4833. "non-default",
  4834. "non-musical",
  4835. "nonstaff-nonstaff-spacing",
  4836. "nonstaff-relatedstaff-spacing",
  4837. "nonstaff-unrelatedstaff-spacing",
  4838. "normal-stems",
  4839. "normalized-endpoints",
  4840. "note-collision",
  4841. "note-collision-threshold",
  4842. "note-columns",
  4843. "note-dots-direction",
  4844. "note-flag-style",
  4845. "note-head",
  4846. "note-head-style",
  4847. "note-heads",
  4848. "note-names",
  4849. "note-staff-position",
  4850. "number-range-separator",
  4851. "number-type",
  4852. "numbering-assertion-function",
  4853. "oriscus",
  4854. "output-attributes",
  4855. "outside-staff-horizontal-padding",
  4856. "outside-staff-padding",
  4857. "outside-staff-placement-directive",
  4858. "outside-staff-priority",
  4859. "packed-spacing",
  4860. "padding",
  4861. "padding-pairs",
  4862. "page-break-penalty",
  4863. "page-break-permission",
  4864. "page-number",
  4865. "page-turn-penalty",
  4866. "page-turn-permission",
  4867. "parent-alignment-X",
  4868. "parent-alignment-Y",
  4869. "parenthesis-friends",
  4870. "parenthesis-id",
  4871. "parenthesized",
  4872. "passage-direction",
  4873. "pedal-text",
  4874. "pes-or-flexa",
  4875. "positioning-done",
  4876. "positions",
  4877. "potential-beam",
  4878. "prefer-dotted-right",
  4879. "prefix-set",
  4880. "primitive",
  4881. "protrusion",
  4882. "pure-Y-common",
  4883. "pure-Y-extent",
  4884. "pure-Y-offset-in-progress",
  4885. "pure-relevant-grobs",
  4886. "pure-relevant-items",
  4887. "pure-relevant-spanners",
  4888. "quantize-position",
  4889. "quantized-positions",
  4890. "quilisma",
  4891. "range-collapse-threshold",
  4892. "rank-on-page",
  4893. "ratio",
  4894. "remove-empty",
  4895. "remove-first",
  4896. "remove-layer",
  4897. "remove-short-autoextender",
  4898. "replacement-alist",
  4899. "rest",
  4900. "rest-collision",
  4901. "restore-first",
  4902. "rests",
  4903. "rhythmic-location",
  4904. "right-bound-info",
  4905. "right-down-stem",
  4906. "right-items",
  4907. "right-justified",
  4908. "right-neighbor",
  4909. "right-number-text",
  4910. "right-padding",
  4911. "right-up-stem",
  4912. "rotation",
  4913. "round-up-exceptions",
  4914. "round-up-to-longer-rest",
  4915. "rounded",
  4916. "same-direction-correction",
  4917. "script-column",
  4918. "script-priority",
  4919. "script-stencil",
  4920. "scripts",
  4921. "segno-kern",
  4922. "self-alignment-X",
  4923. "self-alignment-Y",
  4924. "senza-misura-stencil",
  4925. "shape",
  4926. "sharp-positions",
  4927. "short-bar-extent",
  4928. "shorten",
  4929. "shorten-pair",
  4930. "shortest-duration-space",
  4931. "shortest-playing-duration",
  4932. "shortest-starter-duration",
  4933. "show-control-points",
  4934. "show-horizontal-skylines",
  4935. "show-vertical-skylines",
  4936. "side-axis",
  4937. "side-relative-direction",
  4938. "side-support-elements",
  4939. "size",
  4940. "skip-quanting",
  4941. "skyline-horizontal-padding",
  4942. "skyline-vertical-padding",
  4943. "slash-negative-kern",
  4944. "slope",
  4945. "slur",
  4946. "slur-padding",
  4947. "snap-radius",
  4948. "space-alist",
  4949. "space-increment",
  4950. "space-to-barline",
  4951. "spacing",
  4952. "spacing-increment",
  4953. "spacing-pair",
  4954. "spacing-wishes",
  4955. "span-all-note-heads",
  4956. "span-start",
  4957. "spanner-broken",
  4958. "spanner-id",
  4959. "spanner-placement",
  4960. "springs-and-rods",
  4961. "stacking-dir",
  4962. "staff-affinity",
  4963. "staff-grouper",
  4964. "staff-padding",
  4965. "staff-position",
  4966. "staff-space",
  4967. "staff-staff-spacing",
  4968. "staff-symbol",
  4969. "staffgroup-staff-spacing",
  4970. "stem",
  4971. "stem-attachment",
  4972. "stem-begin-position",
  4973. "stem-info",
  4974. "stem-spacing-correction",
  4975. "stemlet-length",
  4976. "stems",
  4977. "stencil",
  4978. "stencils",
  4979. "sticky-host",
  4980. "strict-grace-spacing",
  4981. "strict-note-spacing",
  4982. "stroke-style",
  4983. "stropha",
  4984. "style",
  4985. "system-Y-offset",
  4986. "text",
  4987. "text-alignment-X",
  4988. "text-alignment-Y",
  4989. "text-direction",
  4990. "thick-thickness",
  4991. "thickness",
  4992. "tie",
  4993. "tie-configuration",
  4994. "ties",
  4995. "to-barline",
  4996. "toward-stem-shift",
  4997. "toward-stem-shift-in-column",
  4998. "transparent",
  4999. "tremolo-flag",
  5000. "tuplet-number",
  5001. "tuplet-slur",
  5002. "tuplets",
  5003. "uniform-stretching",
  5004. "usable-duration-logs",
  5005. "used",
  5006. "vertical-alignment",
  5007. "vertical-skyline-elements",
  5008. "vertical-skylines",
  5009. "virga",
  5010. "visible-over-note-heads",
  5011. "voiced-position",
  5012. "volta-number-offset",
  5013. "volta-numbers",
  5014. "when",
  5015. "whiteout",
  5016. "whiteout-color",
  5017. "whiteout-style",
  5018. "widened-extent",
  5019. "width",
  5020. "woodwind-diagram-details",
  5021. "word-space",
  5022. "zigzag-length",
  5023. "zigzag-width",
  5024. ]
  5025. paper_variables = [
  5026. "annotate-spacing",
  5027. "auto-first-page-number",
  5028. "basic-distance",
  5029. "binding-offset",
  5030. "blank-after-score-page-penalty",
  5031. "blank-last-page-penalty",
  5032. "blank-page-penalty",
  5033. "blot-diameter",
  5034. "book-title",
  5035. "book-title-properties",
  5036. "bookTitleMarkup",
  5037. "bookpart-level-page-numbering",
  5038. "bottom-margin",
  5039. "bp",
  5040. "check-consistency",
  5041. "clip-regions",
  5042. "cm",
  5043. "debug-beam-scoring",
  5044. "debug-slur-scoring",
  5045. "debug-tie-scoring",
  5046. "dimension-variables",
  5047. "evenFooterMarkup",
  5048. "evenHeaderMarkup",
  5049. "first-page-number",
  5050. "footnote-footer-padding",
  5051. "footnote-number-raise",
  5052. "footnote-numbering-function",
  5053. "footnote-padding",
  5054. "footnote-separator-markup",
  5055. "horizontal-shift",
  5056. "in",
  5057. "in-note-padding",
  5058. "in-note-system-padding",
  5059. "incipit-width",
  5060. "indent",
  5061. "inner-margin",
  5062. "is-last-bookpart",
  5063. "label-alist-table",
  5064. "label-page-table",
  5065. "landscape",
  5066. "last-bottom-spacing",
  5067. "left-margin",
  5068. "line-thickness",
  5069. "line-width",
  5070. "make-footer",
  5071. "make-header",
  5072. "markup-markup-spacing",
  5073. "markup-system-spacing",
  5074. "max-systems-per-page",
  5075. "min-systems-per-page",
  5076. "minimum-distance",
  5077. "mm",
  5078. "number-footnote-table",
  5079. "oddFooterMarkup",
  5080. "oddHeaderMarkup",
  5081. "orphan-penalty",
  5082. "outer-margin",
  5083. "output-filename",
  5084. "output-scale",
  5085. "output-suffix",
  5086. "padding",
  5087. "page-breaking",
  5088. "page-breaking-system-system-spacing",
  5089. "page-count",
  5090. "page-number-type",
  5091. "page-post-process",
  5092. "page-spacing-weight",
  5093. "paper-height",
  5094. "paper-width",
  5095. "papersizename",
  5096. "print-all-headers",
  5097. "print-first-page-number",
  5098. "print-page-number",
  5099. "property-defaults",
  5100. "pt",
  5101. "ragged-bottom",
  5102. "ragged-last",
  5103. "ragged-last-bottom",
  5104. "ragged-right",
  5105. "reset-footnotes-on-new-page",
  5106. "right-margin",
  5107. "score-markup-spacing",
  5108. "score-system-spacing",
  5109. "score-title",
  5110. "score-title-properties",
  5111. "scoreTitleMarkup",
  5112. "short-indent",
  5113. "staff-height",
  5114. "staff-space",
  5115. "stretchability",
  5116. "system-count",
  5117. "system-separator-markup",
  5118. "system-system-spacing",
  5119. "systems-per-page",
  5120. "tagline",
  5121. "text-font-size",
  5122. "tocFormatMarkup",
  5123. "tocIndentMarkup",
  5124. "tocItemMarkup",
  5125. "tocTitleMarkup",
  5126. "top-margin",
  5127. "top-markup-spacing",
  5128. "top-system-spacing",
  5129. "two-sided",
  5130. ]
  5131. header_variables = [
  5132. "arranger",
  5133. "composer",
  5134. "copyright",
  5135. "dedication",
  5136. "doctitle",
  5137. "instrument",
  5138. "lsrtags",
  5139. "meter",
  5140. "opus",
  5141. "pdfarranger",
  5142. "pdfauthor",
  5143. "pdfcomposer",
  5144. "pdfcopyright",
  5145. "pdfcreationDate",
  5146. "pdfkeywords",
  5147. "pdfmodDate",
  5148. "pdfpoet",
  5149. "pdfsubject",
  5150. "pdfsubtitle",
  5151. "pdftitle",
  5152. "piece",
  5153. "poet",
  5154. "subsubtitle",
  5155. "subtitle",
  5156. "tagline",
  5157. "texidoc",
  5158. "title",
  5159. ]