Skip to content

Instantly share code, notes, and snippets.

@sorrell
Created February 19, 2012 04:32
Show Gist options
  • Save sorrell/1861984 to your computer and use it in GitHub Desktop.
Save sorrell/1861984 to your computer and use it in GitHub Desktop.
Latex intro (5)
\documentclass{article}
\title{My First Document}
\author{Nick}
\date{today}
\begin{document}
\begin{tabular}{c c c}
$A$&$B$&$A\wedge B$\\
T&T&T \\
T&F&F \\
F&T&F \\
F&F&F \\
\end{tabular}
\\
\begin{tabular}{| c | c | c |}
\hline
$A$&$B$&$A\wedge B$\\
\hline
T&T&T \\
T&F&F \\
F&T&F \\
F&F&F \\
\hline
\end{tabular}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment