如何使文本在横向模式下浮动在图形周围?

如何使文本在横向模式下浮动在图形周围?

我在横向模式下使用图形时遇到问题。它们似乎清除了页面,然后将图形放在下一页,然后后面的文本放在第三页。如果问题不清楚,或者需要更多信息,请告诉我。提前致谢。

\documentclass[english,a4paper,12pt,twoside]{scrbook}
\begin{document}

The following figure should be inserted on an available page (Figure \ref{fig:test}); 
however, that is not the case. The figure is inserted between this text

\begin{landscape}
\begin{figure}  
\centering  
\includegraphics[width=1.4\textwidth, height = 0.75\textwidth] {Figures/example.jpg}
\caption{Example text}
\label{fig:test}
\end{figure}
\end{landscape}

and this text. Because of that, I end up with pages that have three sentences, 
and the rest is left blank; the figure is placed on the next page.
Other times, only one-third of the page is left blank. Readers
will think that I begin a new chapter.
What can I do about that? I don't want Latex to break the page whenever I use 
a figure in landscape. Btw: the figures need to be large

\end{document}

答案1

David Carlisle 的软件包afterpage可能对您有所帮助。命令的主体\afterpage在页面填充后进行处理。MWE:

\documentclass[english,a4paper,12pt,twoside]{scrbook}
\usepackage{pdflscape}
\usepackage{graphicx}
\usepackage{afterpage}
\begin{document}

The following figure should be inserted on an available page (Figure \ref{fig:test}); 
however, that is not the case. The figure is inserted between this text

\afterpage{%
\begin{landscape}%
\begin{figure}%
\centering%
\includegraphics[draft,width=1.4\textwidth, height=0.75\textwidth]{Figures/example.jpg}%
\caption{Example text}%
\label{fig:test}%
\end{figure}%
\end{landscape}%
}

and this text. Because of that, I end up with pages that have three sentences, 
and the rest is left blank; the figure is placed on the next page.
Other times, only one-third of the page is left blank. Readers
will think that I begin a new chapter.
What can I do about that? I don't want Latex to break the page whenever I use 
a figure in landscape. Btw: the figures need to be large

\end{document}

结果:

在此处输入图片描述

相关内容