我正在尝试将单列页面拆分为双列,以便图形出现在左半部分,文本出现在右半部分。我尝试使用wrapfig来实现它
\documentclass[runningheads]{llncs}
\usepackage{wrapfig}
\usepackage{lipsum}
\usepackage{graphicx}
\begin{document}
\section{Exp}
\begin{wrapfigure}{L}{0.5\textwidth}
\centering
\begin{tabular}{c}
\includegraphics[height=0.32\textheight]{mg.pdf} \\
\includegraphics[height=0.32\textheight]{md.pdf} \\
\includegraphics[height=0.32\textheight]{mc.pdf}
\end{tabular}
\end{wrapfigure}
\lipsum[1]
\lipsum[2]
\end{document}
但它不起作用。我的图出现在不同的页面上。
我该怎么做才能将文本区域垂直分成两个半部分,以便文本和图像可以并排放置。
更新:我的文档必须是单列,但如果可能的话,文档中的一页可以是双列。否则我想将图片和文本换行。
答案1
Wrapfig 通常一次只接受一个图形。当信封被推到三层高时,就会变得麻烦。这已在 PdfLaTeX 和 XeLaTeX 上进行了测试。如果您想进行修改,请逐步进行。
\documentclass{llncs}
\usepackage{graphicx}
\usepackage{wrapfig}
\usepackage{lipsum,mwe}
\begin{document}
\section{Exp}
\begin{wrapfigure}[39]{l}[0pt]{0.5\textwidth}\parbox{0.5\textwidth}{\centering%
\includegraphics[width=0.5\textwidth]{example-image}\newline%
Fig1a\\%
\includegraphics[width=0.5\textwidth]{example-image}\newline%
Fig1b\\%
\includegraphics[width=0.5\textwidth]{example-image}\newline%
Fig1c\\%
}\end{wrapfigure}
\textbf{Hello this the first line of text and we should use a real example for certainty, since if we just use} \lipsum[1] fkokpmk \lipsum[2]lkopikml, \textbf{then we may have problems.}
\end{document}