summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/texfile.cc
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/utils/asymptote/texfile.cc')
-rw-r--r--Build/source/utils/asymptote/texfile.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/utils/asymptote/texfile.cc b/Build/source/utils/asymptote/texfile.cc
index 823bf0febc8..67874e3cb42 100644
--- a/Build/source/utils/asymptote/texfile.cc
+++ b/Build/source/utils/asymptote/texfile.cc
@@ -117,7 +117,7 @@ void texfile::prologue()
} else {
if(!inlinetex) {
if(settings::context(texengine)) {
- *out << "\\setuplayout[width=16383pt,height=16383pt,"
+ *out << "\\setuplayout["
<< "backspace=0pt,topspace=0pt,"
<< "header=0pt,headerdistance=0pt,footer=0pt]" << newl
<< "\\setuppagenumbering[location=]" << endl
@@ -323,7 +323,7 @@ void texfile::put(const string& label, const transform& T, const pair& z,
if(trans)
*out << "{" << T.getxx() << " " << sign*T.getyx()
<< " " << sign*T.getxy() << " " << T.getyy() << "}";
- *out << "{" << label << "}" << newl;
+ *out << "{" << label << "}%" << newl;
}
void texfile::epilogue(bool pipe)