Latex,在多页中显示长图像?

发布于 2024-12-06 15:30:07 字数 333 浏览 0 评论 0原文

(请不要将我的帖子移至 Tex,我无法在那里发布图片。) 我有一个很长的UML图,我使用以下代码。 图长约两页半,但只显示第一页,图的下半部分缺失。如何在多页中显示整个图表?

我到底应该添加什么代码?

\usepackage{graphicx} 
......
\includegraphics[height= 81.3cm, width=18cm]{myImage.png}
\captionof{figure}{Sequence Diagram}

截屏: 屏幕截图

(Please don't move my post to Tex, I can't post image there.)
I have a long UML diagram, I use the following code.
The figure is about two and a half page long, but only the first page is showing, and the lower part of the figure is missing. How do I display the whole diagram in multiple page?

Exactly what code should I add?

\usepackage{graphicx} 
......
\includegraphics[height= 81.3cm, width=18cm]{myImage.png}
\captionof{figure}{Sequence Diagram}

Screenshot:
Screenshot

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

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

发布评论

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

评论(1

长不大的小祸害 2024-12-13 15:30:07

您可以使用 \includegraphicsviewport 选项来显示图像的特定部分。通过使用此命令三次,您可以将图像分为三个部分。

viewport 选项有 4 个参数:

  • 前两个值是要包含的图像文件部分的左下角的 (x,y) 坐标(以像素为单位)。
  • 后两个值是右上角的坐标。

例如,命令 \includegraphics*[viewport=0 0 100 100]{myImage.png} 将显示图像的左下角。请注意,您需要 * 才能实际裁剪图像;否则它只会被转移。

You can use the viewport option of \includegraphics to display a specific portion of the image. By using this command three times you can display your image in three portions.

The viewport option takes 4 arguments:

  • The first two values are the (x,y) coordinates (in pixels) of the lower left corner of the portion of the image file you want to include.
  • The second two values are the coordinates of the upper right corner.

For example, the command \includegraphics*[viewport=0 0 100 100]{myImage.png} would display the bottom-left corner of the image. Note that you need the * in order to actually crop the image; otherwise it will only be shifted.

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