File: InsertBreakInStaff.scm

package info (click to toggle)
denemo 2.6.49-0.2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 66,916 kB
  • sloc: ansic: 94,587; lisp: 38,713; xml: 22,675; python: 1,930; sh: 1,239; makefile: 642; yacc: 288; sed: 93
file content (15 lines) | stat: -rw-r--r-- 782 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
;;;;;;;;;;;;
(let ((tag1 "StartBreak")(tag2 "StopBreak"))
    (d-InsertMeasureBefore)
    (d-DirectivePut-standalone tag1)
    (d-DirectivePut-standalone-minpixels tag1 30)
    (d-DirectivePut-standalone-graphic tag1 "\nGAP\nDenemo\n48")
    (d-DirectivePut-standalone-postfix tag1 "\\hideNotes \\stopStaff ")
    (d-WholeMeasureSpacer)
    (d-DirectivePut-standalone tag2)
    (d-DirectivePut-standalone-postfix tag2 (string-append
        "\\unHideNotes \\startStaff  \\set Staff.forceClef = ##t \\bar "" \\set Staff.forceClef = ##t \\once \\override Staff.Clef.full-size-change = ##t \\clef " (d-GetPrevailingClef) " "))
    (d-DirectivePut-standalone-minpixels tag2 30)
    (d-DirectivePut-standalone-graphic tag1 "\n->\nDenemo\n48")
    (d-RefreshDisplay)
    (d-SetSaved #f))