From: James Lowe Date: Tue, 7 Jan 2014 21:25:31 +0000 (+0000) Subject: Doc: NR - convert A13 from scm to verbatim X-Git-Tag: release/2.19.1-1~20^2~13 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=9479135c586c5166051d118cabeeb9dce3b2fe9c;p=lilypond.git Doc: NR - convert A13 from scm to verbatim Issue 1189 --- diff --git a/python/book_snippets.py b/python/book_snippets.py index 69fdc4fa68..12dd5e9d82 100644 --- a/python/book_snippets.py +++ b/python/book_snippets.py @@ -46,6 +46,7 @@ INDENT = 'indent' NORAGGED_RIGHT = 'noragged-right' NOTES = 'body' NOTIME = 'notime' +NOSTAFF = 'nostaff' OUTPUT = 'output' OUTPUTIMAGE = 'outputimage' PAPER = 'paper' @@ -62,8 +63,8 @@ VERSION = 'lilypondversion' -# NOTIME and NOGETTEXT have no opposite so they aren't part of this -# dictionary. +# NOTIME, NOSTAFF and NOGETTEXT have no opposite so they aren't part of +# this dictionary. no_options = { NOFRAGMENT: FRAGMENT, NOINDENT: INDENT, @@ -133,6 +134,17 @@ snippet_options = { \context { \Staff \remove "Time_signature_engraver" + }''', + NOSTAFF: r''' + \context { + \Score + timing = ##f + } + \context { + \Staff + \remove "Time_signature_engraver" + \remove "Clef_engraver" + \remove "Staff_symbol_engraver" }''', },