wrapfig
通常用于将其与应换行的某个文本并排排版。但是,当我在附近使用大量浮点数时wrapfig
,部分文本不会靠近换行的图形。此外,该图形与其他图形的顺序不一致。我该如何解决这个问题?
我的MWE
\documentclass[a4paper,12pt]{article}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage{blindtext}
\usepackage[showframe]{geometry}
\usepackage{ragged2e}
\begin{document}
\newcommand{\commonfigwidth}{0.35\linewidth}
\begin{figure}
\centering
\includegraphics[width=\commonfigwidth]{example-image-a}
\caption{My Fig}
\end{figure}
\begin{figure}
\centering
\includegraphics[width=\commonfigwidth]{example-image-b}
\caption{My Fig}
\end{figure}
\begin{figure}
\centering
\includegraphics[width=\commonfigwidth]{example-image-c}
\caption{My Fig}
\end{figure}
\begin{wrapfigure}{O}{\commonfigwidth}
\includegraphics[width=\linewidth]{example-image-a}
\centering This is a circuit
\end{wrapfigure}
\blindtext
\begin{figure}
\centering
\includegraphics[width=\commonfigwidth]{example-image-b}
\caption{My Fig}
\end{figure}
\begin{figure}
\centering
\includegraphics[width=\commonfigwidth]{example-image-c}
\caption{My Fig}
\end{figure}
\end{document}
答案1
答案2
LaTeX 不会将其视为wrapfigure
浮动,除非它是在环境内部编写的。环境figure
中存在的所有内容必须同时显示在 LaTeX 选择的任何页面上。因此,一个好的解决方法是figure
table
\begin{figure}
\begin{wrapfigure}{<other wrapfig arguments>}
\includegraphics[width=\linewidth]{<image file name>}
\end{wrapfigure}
<the text that should wrap the figure>
\end{figure}
这样,即使周围的材料有很多浮动,原本应该位于换行图形附近的段落也将被强制留在那里。此外,LaTeX 将按照浮动在源代码中的顺序排列所有浮动,因此这也解决了提到的顺序问题。
\documentclass[a4paper,12pt]{article}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage{blindtext}
\usepackage[showframe]{geometry}
\usepackage{ragged2e}
\begin{document}
\newcommand{\commonfigwidth}{0.35\linewidth}
\begin{figure}
\centering
\includegraphics[width=\commonfigwidth]{example-image-a}
\caption{My Fig}
\end{figure}
\begin{figure}
\centering
\includegraphics[width=\commonfigwidth]{example-image-b}
\caption{My Fig}
\end{figure}
\begin{figure}
\centering
\includegraphics[width=\commonfigwidth]{example-image-c}
\caption{My Fig}
\end{figure}
\begin{figure}
\begin{wrapfigure}{O}{\commonfigwidth}
\includegraphics[width=\linewidth]{example-image-a}
\centering This is a circuit
\end{wrapfigure}
\blindtext
\end{figure}
\begin{figure}
\centering
\includegraphics[width=\commonfigwidth]{example-image-b}
\caption{My Fig}
\end{figure}
\begin{figure}
\centering
\includegraphics[width=\commonfigwidth]{example-image-c}
\caption{My Fig}
\end{figure}
\end{document}