我正在研究背面的LaTeX。我正在使用两列的IEEE访问模板。我必须将表格固定在单个列中。我必须将桌子固定在它的位置。我为此使用了\FloatBarrier
。 \FloatBarrier
已将表格固定在原处,但表格覆盖了文本。我已经应用了所有技术,例如使用Table*
,!htbp
,\FloatBarrier
等。我非常感谢您解决这个问题。
\FloatBarrier
\begin{table}[!htbp]
\caption{Car Database}
\label{table:Car_DB}
\begin{tabular}{ccccc}
\toprule
\textbf{Car\_ID} & \textbf{Car\_Name} & \textbf{Car\_Number} &\textbf{Owner\_Name} &\textbf{Owner\_ID} \\
\midrule
C1 &Suzuki Mehran &RIZ 3725 &Bilal Khalid &34512-4520645-5\\
C2 &mazda &MN 3909 &Usman Bhatti &32103-9963008-2\\
C2 &Toyotta Carolla &LEL 06 4520 &Ali Haider &12345-1529307-7\\
\bottomrule
\end{tabular}
\end{table}
答案 0 :(得分:1)
我建议您减少列标题,因为您的\caption
已经提到了相关商品/代表汽车。即,删除Car
前缀。然后,您还可以使用
\tabcolsep
\setlength{\tabcolsep}{0.7\tabcolsep}
以上命令将\tabcolsep
减少了30%。这是最终结果的显示:
\documentclass{IEEEtran}
\usepackage{lipsum,booktabs}
\begin{document}
\begin{table}
\caption{Car Database}
\begin{tabular}{ccccc}
\toprule
\textbf{Car\_ID} & \textbf{Car\_Name} & \textbf{Car\_Number} &\textbf{Owner\_Name} &\textbf{Owner\_ID} \\
\midrule
C1 & Suzuki Mehran & RIZ 3725 & Bilal Khalid & 34512-4520645-5 \\
C2 & Mazda & MN 3909 & Usman Bhatti & 32103-9963008-2 \\
C3 & Toyotta Carolla & LEL 06 4520 & Ali Haider & 12345-1529307-7 \\
\bottomrule
\end{tabular}
\end{table}
\begin{table}
\caption{Car Database}
\setlength{\tabcolsep}{0.7\tabcolsep}% Shrink \tabcolsep by 30%
\centering
\begin{tabular}{ *{5}{c} }
\toprule
\textbf{ID} & \textbf{Name} & \textbf{Number} & \textbf{Owner name} & \textbf{Owner ID} \\
\midrule
C1 & Suzuki Mehran & RIZ 3725 & Bilal Khalid & 34512-4520645-5 \\
C2 & Mazda & MN 3909 & Usman Bhatti & 32103-9963008-2 \\
C3 & Toyotta Carolla & LEL 06 4520 & Ali Haider & 12345-1529307-7 \\
\bottomrule
\end{tabular}
\end{table}
\sloppy % Just for this example
\lipsum[1]
\end{document}
提供了更多选项