From: Masamichi Hosoda Date: Fri, 28 Apr 2017 15:39:44 +0000 (+0900) Subject: Issue 5128: Prevent granados.ly image rotation in web.pdf X-Git-Url: https://git.donarmstrong.com/lilypond.git?a=commitdiff_plain;h=6b5c2fe707c1dfaacdf574027d281288eed8baa3;p=lilypond.git Issue 5128: Prevent granados.ly image rotation in web.pdf granados.ly used 'landscape symbol for page settings. As a result, granados.pdf which was generated from granados.ly contained `/Rotate 90` that is not supported by XeTeX's PDFs including. So the image in web.pdf which was generated by XeTeX was rotated 90 degree counter-clockwise. This commit makes the page settings does not have 'landscape symbol. We append `landscape` to the name of the paper size itself. So granados.ly image rotation in web.pdf is prevented. See Notation Reference "Setting the paper size". --- diff --git a/Documentation/ly-examples/granados.ly b/Documentation/ly-examples/granados.ly index 9f4cf10301..5cabf5766e 100644 --- a/Documentation/ly-examples/granados.ly +++ b/Documentation/ly-examples/granados.ly @@ -9,7 +9,7 @@ \paper { ragged-right = ##f - #(set-paper-size "letter" 'landscape) + #(set-paper-size "letterlandscape") system-count = 1 }