横向きモードでテキストを図形の周りに浮かび上がらせるにはどうすればよいですか?

横向きモードでテキストを図形の周りに浮かび上がらせるにはどうすればよいですか?

横向きモードでの図に問題があります。ページを空にして、次のページに図を配置し、その後のテキストが 3 ページ目に表示されるようです。質問が不明瞭な場合や、追加情報が必要な場合はお知らせください。よろしくお願いします。

\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}

結果:

ここに画像の説明を入力してください

関連情報