簡體   English   中英

乳膠重疊表與頁面的第二列

[英]Table in Latex Overlapping with Second Column of the Page

我在LaTeX中遇到了表格問題。 我正在使用會議中的預定義格式,這使得頁面由兩列組成。 我的表格太寬,無法包含在一列中,因此它會轉到頁面的第二列並與文本重疊!

  1. 為什么LaTeX允許這樣做?
  2. 是否有可能以當前格式使表成為塊,以便它使用兩列,而另一列中的文本拖了一下?
  3. 還有其他建議嗎?

這是我的代碼:

\begin{table}
\centering
\begin{tabular}{|c|c|c|c|c|c|}
\hline
Rule & Factor & Best Value & Delta_t & Delta_{do} & Comments \\
\hline
\multirow{3}{c}{Diagonal Dominance} & Line Angle & 45 & 15 & 30 & The angle between the prominent line of the object and
the diagonal lines \\ % TODO: What object? Make sure it is clear.
                                    & Line Distance & 0 & 0.25 & 1 & The distance, in screen coordinates, from the
prominent line of the object to the diagonal lines. \\ % TODO: Need to define screen coordinates
                                    & Corner Distances & 0 & 0.1 & 0.7 & The distance, in screen coordinates, from the
end of the prominent line of the object to the corners of the screen. \\
\hline
\end{tabular}
\caption{The factors of each rule and their parameters.}
\label{table:factors}
\end{table}

預先感謝您的幫助。

問候,
Rafid

通常,浮動環境的星號版本用於告訴LaTeX跨越兩列。 所以,像:

\begin{table*}
% Table contents
\end{table*}

數字也可以這樣做。

代替tabular ,使用tabularx ,例如:

\begin{tabularx}{\textwidth}{|c|c|c|c|c|X|}

對不起,@ Rafid,我通常使用包含它的memoir ,所以我忘記了這一點:

\usepackage{tabularx}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM