summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Build/source/utils/asymptote/base/plain.asy9
-rw-r--r--Master/texmf-dist/asymptote/plain.asy9
2 files changed, 18 insertions, 0 deletions
diff --git a/Build/source/utils/asymptote/base/plain.asy b/Build/source/utils/asymptote/base/plain.asy
index 14715bad918..71413ec145b 100644
--- a/Build/source/utils/asymptote/base/plain.asy
+++ b/Build/source/utils/asymptote/base/plain.asy
@@ -280,3 +280,12 @@ if(settings.autoimport != "") {
}
cputime();
+
+texpreamble("\newdimen\paperwidth");
+texpreamble("\newdimen\paperheight");
+bool luatex=settings.tex == "luatex";
+if(settings.tex == "lualatex" || luatex) {
+ texpreamble("\let\pdfpagewidth\paperwidth");
+ texpreamble("\let\pdfpageheight\paperheight");
+ if(luatex) texpreamble("\input luatex85.sty");
+}
diff --git a/Master/texmf-dist/asymptote/plain.asy b/Master/texmf-dist/asymptote/plain.asy
index 14715bad918..71413ec145b 100644
--- a/Master/texmf-dist/asymptote/plain.asy
+++ b/Master/texmf-dist/asymptote/plain.asy
@@ -280,3 +280,12 @@ if(settings.autoimport != "") {
}
cputime();
+
+texpreamble("\newdimen\paperwidth");
+texpreamble("\newdimen\paperheight");
+bool luatex=settings.tex == "luatex";
+if(settings.tex == "lualatex" || luatex) {
+ texpreamble("\let\pdfpagewidth\paperwidth");
+ texpreamble("\let\pdfpageheight\paperheight");
+ if(luatex) texpreamble("\input luatex85.sty");
+}