summaryrefslogtreecommitdiff
path: root/Build/source/utils/asymptote/pen.h
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2009-05-28 23:56:03 +0000
committerKarl Berry <karl@freefriends.org>2009-05-28 23:56:03 +0000
commite767448d0591f5dbb0cd485e4b014becdcbd1ba4 (patch)
tree83bec5bd1ee117130f3e9dcee985dcd42f5145d9 /Build/source/utils/asymptote/pen.h
parent20751a51df382b884807d8b9ef1ff7f7cc7739a5 (diff)
asymptote 1.74
git-svn-id: svn://tug.org/texlive/trunk@13514 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils/asymptote/pen.h')
-rw-r--r--Build/source/utils/asymptote/pen.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/Build/source/utils/asymptote/pen.h b/Build/source/utils/asymptote/pen.h
index 623a57f09ba..755d7262be6 100644
--- a/Build/source/utils/asymptote/pen.h
+++ b/Build/source/utils/asymptote/pen.h
@@ -17,6 +17,7 @@ namespace camp {
static const string DEFPAT="<default>";
static const string DEFLATEXFONT="\\usefont{\\ASYencoding}{\\ASYfamily}{\\ASYseries}{\\ASYshape}";
+static const string DEFCONTEXTFONT="modern";
static const string DEFTEXFONT="cmr12";
static const double DEFWIDTH=-1;
static const Int DEFCAP=-1;
@@ -395,8 +396,15 @@ public:
return settings::getSetting<string>("textinitialfont");
else {
ostringstream buf;
- buf << "\\font\\ASYfont=" << DEFTEXFONT << " at " << size()
- << "pt\\ASYfont";
+ // Protect context switchtobodyfont with gsave/grestore to prevent
+ // misalignment if font is not found.
+ if(texengine == "context")
+ buf << "\\special{pdf:q}\\switchtobodyfont["
+ << DEFCONTEXTFONT << "," << size() << "pt]\\special{pdf:Q}%"
+ << newl;
+ else
+ buf << "\\font\\ASYfont=" << DEFTEXFONT
+ << " at " << size() << "pt\\ASYfont";
return buf.str();
}
}