BasicDocuments Flashcards

1
Q

What code is required for the most basic Latex Document?

A

\documentclass{article}

\begin{document}

Bob

\end{document}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What distinguishes a tag in Latex?

A

Tags always start with a backslash \

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the required for the fist line of a Latex file?

A

\documentclass{article}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What pair of begin/end tags surround the entire document?

A

\begin{document}

\end{document}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do you create a superscript in Latex?

A

A caret chacter

x^2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do you create a subscript in Latex?

A

An underscore

a_1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What tag do you use to include a package in a Latex document?

A

Include the \usepackage tag in the preamble.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly