浮动中断并推回文本

浮动中断并推回文本

我有一个

\subsection{Subsection}

Text text text

\begin{landscape}
\begin{figure}[p]
\centering
...
\caption{Caption}
\label{fig:dcspe}
\end{figure} 
\end{landscape}

Other text other text other text

\subsection{Other subsection}

渲染的方式是

子部分

文字 文字 文字

分页符

单页带图

其他文本 其他文本 其他文本

其他小节

我怎样才能让“文本”后面跟着“其他文本”?

答案1

使用sidewaysfigurefromrotating而不是landscapeand figure

\documentclass{article}
\usepackage{rotating}

\begin{document}
\subsection{Subsection}

Text text text

\begin{sidewaysfigure}
\centering
...
\caption{Caption}
\label{fig:dcspe}
\end{sidewaysfigure}

Other text other text other text

\subsection{Other subsection}
\end{document}

相关内容