哦,我的代码是这样的,它使用 ieee 2 列格式将数字放在中心。我想将这些数字放在一列中。
\documentclass[conference]{IEEEtran}
\usepackage{lipsum}
\usepackage{graphicx}
\usepackage{floatrow}
%\DeclareFloatSeparators{Qquad}{\hskip4em}
\begin{document}
\section{First section}
\lipsum[1-2]
\section{Second section}
\lipsum[3]
\begin{figure*}
%\floatsetup{floatrowsep=Qquad}
\begin{floatrow}
\ffigbox[\FBwidth]{\caption{bbbbbbbbb} }{\includegraphics[scale=0.4]{example-image}}
\ffigbox[\FBwidth]{\caption{vvvvvvvvvvv}}{\includegraphics[scale=0.4]{example-image}}
\end{floatrow}
\end{figure*}
\lipsum[4]
\section{Last section}
\lipsum[5-10]
\end{document}
两个图形如图所示。我希望它们位于同一列的红色圆圈区域内
答案1
(在 OP 澄清图表应该并排放置而不是一个在另一个之上后,我更新了我的答案)
你可能想太多了。只需使用figure
而不是figure*
环境,不要使用包的机制floatrow
,将图形及其\caption
语句封装在minipage
宽度为 的环境中0.475\columnwith
,然后替换[scale=0.4]
为[width=\linewidth]
。
\documentclass[conference]{IEEEtran}
\usepackage{lipsum,graphicx}
\begin{document}
\section{First section}
\lipsum[1-2]
\section{Second section}
\lipsum[3-4]
\begin{figure}
\begin{minipage}[t]{0.475\columnwidth}
\includegraphics[width=\linewidth]{example-image-a}
\caption{bbbbbbbbb}
\end{minipage}\hfill % maximize horizontal separation
\begin{minipage}[t]{0.475\columnwidth}
\includegraphics[width=\linewidth]{example-image-b}
\caption{vvvvvvvvvvv}
\end{minipage}
\end{figure}
\lipsum[5-6]
\section{Last section}
\lipsum[7-8]
\end{document}