将 Mathematica 网格导出为矢量图形时的字符串引号

发布于 2024-09-06 06:54:25 字数 392 浏览 2 评论 0原文

运行下面的

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月隐月明月朦胧 2024-09-13 06:54:25

将 ShowStringCharacters->False 添加到您的样式中。

Add ShowStringCharacters->False to your Style.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文