1 页乳胶中的宽图像垂直对齐

1 页乳胶中的宽图像垂直对齐

我有一张非常高的图像(591 x 8383),我想将其作为附录放在我的 Latex 文档中。我怎样才能将这张图片垂直对齐放在一个(非常大的)页面上?

谢谢

答案1

旋转

angle您可以使用可选参数来旋转图像\includegraphics。例如,这将90逆时针旋转图像 100 度。

\includegraphics[angle=90,origin=c]{image}

此处origin=c设置旋转的轴,即图像的中心。

另一种选择是使用该rotating包及其sideways命令。

\documentclass{article}
\usepackage{rotating}

\begin{document}

\begin{sidewaysfigure}
    \includegraphics{image}
\end{sidewaysfigure}

\end{document}

扩展

为了使图像适合您的页面,您可以scale\includegraphics命令中使用可选参数,如下所示

\includegraphics[scale=0.5]{image}

上述代码将图像缩放 50%。

更改本地页面大小

\eject \pdfpagewidth=3in \pdfpageheight=10in要在本地更改页面大小,您可以在页面开头添加任何内容之前使用它。

\documentclass{article}
\begin{document}

Normal page

\eject \pdfpagewidth=3in \pdfpageheight=10in    
Tall page

\eject \pdfpagewidth=20in \pdfpageheight=3in    
Wide page
\end{document}

解决方案

总而言之,您可以使用

\eject \pdfpagewidth=3in \pdfpageheight=10in%adjust dimensions according to your needs 
\includegraphics[angle=90,origin=c]{image}

它将旋转和缩放您的图像。根据您的需要进行90更改。0.5

相关内容