LaTeX中的表格:使用两列模板在单列中对齐表格

时间:2018-11-13 07:15:56

标签: latex tabular pdflatex latex-environment biblatex

我正在研究背面的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}

The result of this code is like this

1 个答案:

答案 0 :(得分:1)

我建议您减少列标题,因为您的\caption已经提到了相关商品/代表汽车。即,删除Car前缀。然后,您还可以使用

减少每列之间插入的\tabcolsep
\setlength{\tabcolsep}{0.7\tabcolsep}

以上命令将\tabcolsep减少了30%。这是最终结果的显示:

enter image description here

\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}

My table doesn't fit; what are my options?

提供了更多选项