_lilypond_builtins.py 106 KB

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