表中的 hline 直接停止

表中的 hline 直接停止

我有一张横向的非常宽的表格,水平线刚好停止在那里。

我怎样才能使行正常地到达表格的末尾?

\begin{landscape}
\thispagestyle{empty}
\begin{table}
    \centering
    \hspace*{-83mm}
    \resizebox{\linewidth}{!}{%
    \begin{tabularx}{1.4\linewidth}{|l|l|l|c|c|c|c|c|c|c|c|c|c|c|c|}
         \hline
         \textbf{Objekt} & \textbf{Frequenz} & \textbf{Medium} & \textbf{Projektleiter} & \textbf{Auftraggeber} & \textbf{Fachgebietsleiter} & \textbf{Institutsleiter} & \textbf{ITSB/CIO} & \textbf{DSB} & \textbf{Lieferanten} & \textbf{Anwender} & \textbf{Mitarbeiter} & \textbf{FIMA} & \textbf{Einkauf} & \textbf{SCC} \\
         \hline\hline
         Statusbericht & monatlich & E-Mail & RA & I & & I & & & & I & & & & \\
         \hline
    \end{tabularx}}
    \caption{Kommunikationsplan}
    \label{tab:kommunikationsplan}
\end{table}
\end{landscape}

有问题的表格

答案1

由于您没有 X 列(并且表中没有换行符),因此您应该替换

\begin{tabularx}{1.4\linewidth}

经过

\begin{tabular}

然后表格将具有其内容的自然宽度,并且 将hline是该宽度。由于您强制表格变宽,1.4\linewidth因此hline是该长度,即使内容过满,因此比指定的宽度更宽。

相关内容