Add several latex snippets
This commit is contained in:
23
latex/table.tex
Normal file
23
latex/table.tex
Normal file
@@ -0,0 +1,23 @@
|
||||
|
||||
\usepackage{booktabs}
|
||||
|
||||
\begin{table}[h!]
|
||||
\begin{center}
|
||||
\caption{全加器真值表}
|
||||
\begin{tabular}{c|c|c|c|c}
|
||||
\toprule
|
||||
A & B & $C_{in}$ & $C_{out}$ & S \\
|
||||
\midrule
|
||||
0 & 0 & 0 & 0 & 0 \\
|
||||
1 & 0 & 0 & 0 & 1 \\
|
||||
0 & 1 & 0 & 0 & 1 \\
|
||||
1 & 1 & 0 & 1 & 0 \\
|
||||
0 & 0 & 1 & 0 & 1 \\
|
||||
1 & 0 & 1 & 1 & 0 \\
|
||||
0 & 1 & 1 & 1 & 0 \\
|
||||
1 & 1 & 1 & 1 & 1 \\
|
||||
0 & 0 & 0 & 0 & 0 \\
|
||||
\bottomrule
|
||||
\end{tabular}
|
||||
\end{center}
|
||||
\end{table}
|
||||
Reference in New Issue
Block a user