From 6b5c2fe707c1dfaacdf574027d281288eed8baa3 Mon Sep 17 00:00:00 2001 From: Masamichi Hosoda Date: Sat, 29 Apr 2017 00:39:44 +0900 Subject: [PATCH] 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". --- Documentation/ly-examples/granados.ly | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- 2.39.2