将 Mathematica 网格导出为矢量图形时的字符串引号
运行下面的
agrid = Grid[{{Style["hello", Bold]}}]
ImportString[ExportString[agrid, "PNG"], "PNG"]
ImportString[ExportString[agrid, "EPS"], "EPS"]
吐出
你好
你好
“你好”
也就是说,EPS 导出器在输出中包含引号。 PDF 也一样。如果没有 Grid
,所有导出器都会省略引号。 我需要什么魔法才能去掉 PDF 中的引号?
Running the following
agrid = Grid[{{Style["hello", Bold]}}]
ImportString[ExportString[agrid, "PNG"], "PNG"]
ImportString[ExportString[agrid, "EPS"], "EPS"]
spits out
hello
hello
"hello"
That is, the EPS exporter included the quotation marks in the output. Same for PDF. Without the Grid
, all exporters leave out the quotation marks.
What magic do I need to get rid of the quotation marks in the PDF?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 ShowStringCharacters->False 添加到您的样式中。
Add ShowStringCharacters->False to your Style.