我有很多人物,我想將它們放在一起。由於它們在一頁上不太合適,所以我將它們放在兩頁上。有沒有辦法確保這些圖形彼此相鄰,以便當讀者打開書時,他可以看到左右頁上的圖形。那一個圖形不是在前一個圖形的背面嗎?
謝謝!
答案1
首先,您想要使用\clearevenpage
在各個地方定義的方法強制自己進入偶數(左側)頁面,但例如
然後
\clearevenpage
\begin{figure}[p]
..\end{figure}
\clearpage
\begin{figure}[p]
..\end{figure}
\clearpage
答案2
假設您希望每個頁面的頂部有兩個大圖像,並且沒有以前未處理的浮動,則只需使用該[t]
選項兩個浮動即可。花車的放置不需要精確拍攝:兩者都可以插入到前奇數頁或偶數頁的某個點上。這樣,您就可以避免使用諸如 之類的命令中斷文字流\clearpage
。
\documentclass{article}
\usepackage{lipsum} % for dummy text
\usepackage{graphicx}
% \setcounter{topnumber}{1}
% \renewcommand{\topfraction}{0.3}
\begin{document}
\lipsum[1-5]% dummy text
\begin{figure}[t]
\includegraphics[width=1\linewidth]{example-image-a}
\end{figure}
\begin{figure}[t]
\includegraphics[width=1\linewidth]{example-image-b}
\end{figure}
\lipsum[6-14] % more dummy text
\end{document}
對於較小的影像,預設情況下兩個影像都會移動到偶數頁的頂部,但您可以使用計數器限制頂部影像的數量 topnumber
,或使用類似的限制頂部影像的空間\renewcommand{\topfraction}{0.3}
。
相反,如果由於浮動對於 LaTeX 規則來說太大而被放置在文件的末尾,請使用相同的方法 增加\topfraction
和減少。\textfraction
答案3
您也可以嘗試限製文件中的圖像放置:
\FloatBarrier
\begin{figure}
Figure 1
\end{figure}
\begin{figure}
Figure 2
\begin{figure}
\FloatBarrier
如果圖表適合整個頁面,它們將依序放置在後續頁面上。