What code is required for the most basic Latex Document?
\documentclass{article}
\begin{document}
Bob
\end{document}
What distinguishes a tag in Latex?
Tags always start with a backslash \
What is the required for the fist line of a Latex file?
\documentclass{article}
What pair of begin/end tags surround the entire document?
\begin{document}
\end{document}
How do you create a superscript in Latex?
A caret chacter
x^2
How do you create a subscript in Latex?
An underscore
a_1
What tag do you use to include a package in a Latex document?
Include the \usepackage tag in the preamble.