Add several latex snippets

This commit is contained in:
wancat
2022-03-18 14:23:35 +08:00
commit a973f31326
6 changed files with 107 additions and 0 deletions

23
latex/table.tex Normal file
View 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}