我注意到桌子后面有一些差距.请参阅以下快照:
http://i39.tinypic.com/x3e4vd.jpg http://i39.tinypic.com/x3e4vd.jpg
我的LaTeX代码是:
\begin{table}[htb]
\caption{Error rates VS training size in AdaBoosted stump, SVM and kNN. \label{tab:examplecount8000errerrplot}}
\begin{center}
\begin{tabular}{c c}
\includegraphics[scale=0.4]{../boost.eps}
&
\includegraphics[scale=0.4]{../svm.eps} \\
\includegraphics[scale=0.4]{../knn.eps}
& \\
\end{tabular}
\end{center}
\end{table}
%
\subsection{Feature Numbers}
Run Code Online (Sandbox Code Playgroud)
差距是正常的还是我怎样才能将差距缩小到正常水平?
mid*_*iby 21
不要使用{center}环境对表进行居中,而是尝试使用\ centering宏.我应该是这样的
\begin{table}
\centering
...
\end{table}
Run Code Online (Sandbox Code Playgroud)
如果Charles和midtiby的答案没有为你解决,你必须调整它(因为,例如,边缘女士不会通过你的论文,直到你这样做),你可以做长度
\floatsep\textfloatsep\intextsep(和他们的两个柱子兄弟)调整浮子周围和之间的间距.在这种情况下,我相信你想要的\textfloatsep.
但是做查尔斯和米德比首先说的话,并考虑熊的建议.
您可以通过发出vskip命令来固定垂直间距,例如\vskip{-1em},在垂直模式下,例如在\ section之前.熊是对的:尽可能晚地延迟担心布局.应该有一个关于过早格式化的说法......
如果标题位于底部,那么这个表对我来说会更有吸引力.出现的问题与标题上下空间的比例一样多,即空间总量.
您可以使用 \raggedbottom
\begin{table}
\centering
...
\end{table}
\raggedbottom
Run Code Online (Sandbox Code Playgroud)