我有三个数字,我想将它们包含在整个文本宽度中,但只显示第一个。我使用了三次代码:
\begin{figure*}% not h only
\centering
\includegraphics[width=\textwidth]{bothprofvc02.eps}%
\caption{ROC curves for FVC2002 datasets}
\end{figure*}
\begin{figure*}% not h only
\centering
\includegraphics[width=\textwidth]{bothprofvc04.eps}%
\caption{ROC curves for FVC2002 datasets}
\end{figure*}
\begin{figure*}% not h only
\centering
\includegraphics[width=\textwidth]{bothprofvc06.eps}%
\caption{ROC curves for FVC2002 datasets}
\end{figure*}
答案1
假设所有三个图表及其标题都适合放在一页上,您可能需要实施@Johannes_B 的建议并将整个材料放在一个figure*
环境中:
\begin{figure*}
\includegraphics[width=\textwidth]{bothprofvc02.eps}
\caption{ROC curves for FVC2002 datasets}
\bigskip\bigskip
\includegraphics[width=\textwidth]{bothprofvc04.eps}
\caption{ROC curves for FVC2004 datasets}
\bigskip\bigskip
\includegraphics[width=\textwidth]{bothprofvc06.eps}
\caption{ROC curves for FVC2006 datasets}
\end{figure*}
无论如何,以下完全可编译的代码具有三个独立的figure*
环境的完全可编译代码也不会遇到第二和第三个数字消失的问题。请研究你的代码——到目前为止您只发布了其中的摘录——并确定它是否(更确切地说:在哪里)包含导致问题的指令。
\documentclass{IEEEtran}
\usepackage[demo]{graphicx} % omit 'demo' option in real document
\usepackage{lipsum}
\begin{document}
\lipsum[1-2] % filler text
\begin{figure*}
\includegraphics[width=\textwidth, height=0.28\textheight]
{bothprofvc02.eps}
\caption{ROC curves for FVC2002 datasets}
\end{figure*}
\begin{figure*}
\includegraphics[width=\textwidth, height=0.28\textheight]
{bothprofvc04.eps}
\caption{ROC curves for FVC2004 datasets}
\end{figure*}
\begin{figure*}
\includegraphics[width=\textwidth, height=0.28\textheight]
{bothprofvc06.eps}
\caption{ROC curves for FVC2006 datasets}
\end{figure*}
\lipsum[3-15] % more filler text
\end{document}