有人能把这张桌子变成乳胶桌吗?

有人能把这张桌子变成乳胶桌吗?

我在 Word 上有这个表格,我想将其转换为乳胶表格。唯一的问题是我不知道如何创建有 2 行的行。

如果有人能给我提供代码,让我把这张表变成乳胶表,我会非常感激!

在此处输入图片描述

\begin{center}
\begin{tabular}{ |c|c|c| } 
 \hline
 $(x)_2 = n$; $n\%5$  & $(x0)_2 = 2n$; $2n\%5$ & $(x1)_2 = 2n + 1$; $(2n+1)\%5$ \\ 
 \hline
 0 & 0 & 1 \\ 
 1 & 2 & 3 \\
 2 & 4 & 0 \\
 3 & 1 & 2 \\
 4 & 3 & 4 \\
 \hline
\end{tabular}
\end{center}

答案1

最简单的选择是将标题分成两行,两行之间没有线:

在此处输入图片描述

\documentclass{article}

\begin{document}
\begin{center}
\begin{tabular}{ |c|c|c| } 
 \hline
 $(x)_2 = n$ & $(x0)_2 = 2n$ & $(x1)_2 = 2n + 1$ \\ 
$n\%5$  & $2n\%5$ & $(2n+1)\%5$ \\ 
\hline
 0 & 0 & 1 \\ 
 1 & 2 & 3 \\
 2 & 4 & 0 \\
 3 & 1 & 2 \\
 4 & 3 & 4 \\
 \hline
\end{tabular}
\end{center}
\end{document}

答案2

许多人可能会建议你遵循软件包中的建议booktabs,放弃垂直规则和大部分水平规则,因为这些规则在如此简单的表格中除了分散注意力之外,没有其他作用。还请注意,默认情况下行之间的间距也往往更好(尤其是在 s 周围\hline)。

\documentclass{article}
\usepackage{booktabs}
\begin{document}
\begin{center}
\begin{tabular}{ ccc } 
 \toprule
 $(x)_2 = n$ & $(x0)_2 = 2n$ & $(x1)_2 = 2n + 1$ \\ 
$n\%5$  & $2n\%5$ & $(2n+1)\%5$ \\ 
\midrule
 0 & 0 & 1 \\ 
 1 & 2 & 3 \\
 2 & 4 & 0 \\
 3 & 1 & 2 \\
 4 & 3 & 4 \\
 \bottomrule
\end{tabular}
\end{center}
\end{document}

相关内容