如何在乳胶中输出带有索引的表?

时间:2015-05-27 14:44:36

标签: latex

如何输出与LaTeX完全相同的表格?

enter image description here

我使用的是最新版本的WindEdt和LaTeX。

谢谢。

2 个答案:

答案 0 :(得分:0)

我一直试图尽可能简单地重现。

代码:

\documentclass{article}

\begin{document}

%\begin{table}
\begin{tabular}{|c|c|c|c|c|c}
\multicolumn{1}{c}{ } & \multicolumn{1}{c}{ } & \multicolumn{1}{c}{ } & %
\multicolumn{1}{c}{X2} & \multicolumn{1}{c}{ } & \multicolumn{1}{c}{ }\\
\cline{1-5}
\textbf{12} & \textbf{9} & \textbf{4} & \textbf{0} & \textbf{7} & X3\\
\cline{1-5}
\textbf{11} & \textbf{10} & \textbf{5} & 0 & \textbf{5} & X1\\
\cline{1-5}
7 & 9 & 9 & 6 & \textbf{0} & \\
\cline{1-5}
\textbf{0} & 3 & 10 & \textit{13} & 9 & \\
\cline{1-5}
5 & \textbf{0} & 0 & \textit{4} & 9 & \\
\cline{1-5}
\end{tabular}
%\end{table}

\end{document}

生成此输出:

screenshot of output pdf

如果您需要进一步解释,请不要犹豫。

答案 1 :(得分:0)

只需使用包含6列的tabular\multicolumn命令来控制垂直条:

\begin{tabular}{|c|c|c|c|c|c}
  \multicolumn{3}{c}{} & \multicolumn{1}{c}{X2} \\
  \cline{1-5}
  12 & 9 & 4 & 0 & 7 & X3\\
  \cline{1-5}
  % and so on ...
\end{tabular}