如何旋转带标题的图形

如何旋转带标题的图形

我有一张横向图像;因此,我使用图形环境将其旋转(角度 = 90)90 度来放置它。但是,我注意到图像标题在侧面,而不是在底部。我使用了环境landscape;效果很好,但图像放在了新页面上,文本单独悬挂。我需要在图形环境中更改标题的位置。帮我解决这个问题。

\begin{figure}
    \includegraphics[scale = 0.83, angle = 90]{plate4/SAND allram.PNG}
    \caption{Caption}
    \label{fig:enter-label}
\end{figure} 

\begin{landscape}   
\begin{figure}
    \includegraphics[scale = 0.83]{plate4/SAND allram.PNG}
    \caption{Caption}
    \label{fig:enter-label}
\end{figure}   
\end{landscape}

在此处输入图片描述

我需要的实际图像

答案1

您可以使用hvfloat包。您可以看到图形及其标题都被旋转为文本。

在此处输入图片描述

\documentclass{article}
\usepackage{graphicx}
\usepackage{lipsum}  
\usepackage{hvfloat}  % for rotating figure and caption

\begin{document}

\lipsum[1-2]  

\hvFloat[floatPos=!ht,rotAngle=90,capWidth=w,capPos=b,capAngle=-360]{figure}{%
    \includegraphics[scale=0.4]{example-image-a}%
}{Caption}{fig:enter-label}

\lipsum[3-5]  

\end{document}

答案2

您可以将图像放在小页面中,旋转此小页面:

\documentclass{article}
\usepackage{graphicx}
\usepackage{lipsum}

\begin{document}

\lipsum

\begin{figure}[htbp]
\centering
\rotatebox{90}{%
\begin{minipage}{6cm}
    \centering
    \includegraphics[width=\linewidth]{example-image-b}
    \caption{Caption}
    \label{fig:enter-label}
\end{minipage}%
}%
\end{figure}

\lipsum

\end{document}

在此处输入图片描述

答案3

float.sty另一种方法是使用和rotating.sty和的组合MWE

\usepackage[figuresright]{rotating}
\usepackage{float}
\begin{document}

\begin{sideways}
\begin{minipage}{\textwidth}
\begin{figure}[H]
\caption{Test}
\end{figure}
\end{minipage}
\end{sideways}

相关内容