]> git.donarmstrong.com Git - lilypond.git/commitdiff
Issue 5128: Prevent granados.ly image rotation in web.pdf
authorMasamichi Hosoda <trueroad@trueroad.jp>
Fri, 28 Apr 2017 15:39:44 +0000 (00:39 +0900)
committerMasamichi Hosoda <trueroad@trueroad.jp>
Sat, 6 May 2017 07:42:00 +0000 (16:42 +0900)
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".

Documentation/ly-examples/granados.ly

index 9f4cf10301c26714b4160e5500f9851ac127cd35..5cabf5766ef3d66587e6838e59c96aa79cb9ac43 100644 (file)
@@ -9,7 +9,7 @@
 
 \paper {
   ragged-right = ##f
-  #(set-paper-size "letter" 'landscape)
+  #(set-paper-size "letterlandscape")
   system-count = 1
 }