如何使用 \includegraphics 中的 .bb 文件指示边界框?

发布于 2024-07-27 14:52:30 字数 253 浏览 2 评论 0原文

使用 \includegraphics 时,是否可以使用 .bb 文件(例如,由 MiKTeX 中包含的“ebb”程序生成)来定义 .png 文件的边界框?

我可以直接在 \includegraphics 的可选参数中定义边界框,例如 \includegraphics[bb=0 0 100 100]{file.png},但我会希望能够使用生成的 .bb 文件在代码之外定义它。 这可能吗?

Is it possible to use a .bb file (generated with, for instance, the "ebb" program included in MiKTeX) to define the bounding box of .png files when using \includegraphics?

I can define the bounding box in the optional argument to \includegraphics directly, like \includegraphics[bb=0 0 100 100]{file.png}, but I'd like to be able to define this outside of the code, using the generated .bb file. Is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

复古式 2024-08-03 14:52:30

我想到了。 应用

\DeclareGraphicsExtensions{.png, .bb}
\DeclareGraphicsRule{.png}{eps}{.bb}{}

在使用 \includegraphics{file} (不带扩展名)包含图形之前 解决了这个问题。 :)

以防万一有人遇到同样的问题。

I figured it out. Applying

\DeclareGraphicsExtensions{.png, .bb}
\DeclareGraphicsRule{.png}{eps}{.bb}{}

before including graphics using \includegraphics{file} (without the extension) solved it. :)

Just in case someone have the same problem.

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