我有一张已经是横向的图像(在 LateX 之外;jpg 格式)。现在我想将随附的标题(在 LaTeX 中输入)也设置为横向模式,以便在同一页上打印图像和标题。不用说,标题必须位于图像的右侧(即图像的底部)。有人可以帮忙吗?谢谢!
答案1
如果必须,请使用sidewaysfigure
:
\documentclass{article}
\usepackage{rotating,lipsum}
\begin{document}
\lipsum[1-3]
\begin{sidewaysfigure}
% Place your image here
\includegraphics[width=\textheight,height=.5\textwidth]{example-image}
\caption{A figure caption.}
\end{sidewaysfigure}
\lipsum[4-7]
\end{document}