Text Flashcards

1
Q

How do you bold text?

A

\textbf{greatest}

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

How do you italicize text?

A

\textit{…}

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

How do you underline text?

A

\underline{…}

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

How do you emphasize text?

A

\emph{…}

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

What is emphasized text?

A

What the \emph command actually does with its argument depends on the context - inside normal text the emphasized text is italicized, but this behaviour is reversed if used inside an italicized text

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

How do you create a bulleted list?

A

itemize and item

Use the \begin{itemize} , \end{itemize} pair and use \item to fill the list entry.

\begin{itemize}

\item The individual entries are indicated with a black dot, a so-called bullet.

\item The text in the entries may be of any length.

\end{itemize}

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

What are the 4 methods to put Latex in in-line mode?

A

Use one of the followinf delimiters:

  1. ( … )
  2. [… ]
  3. $ … $
  4. \begin{math} … \end{math}

They all work and the choice is a matter of taste.

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

How do you create a numbered list?

A

enumerate and item

Use the \begin{enumerate} , \end{enumerate} pair and use \item to fill the list entry.

Example Code:

\begin{enumerate}

\item This is the first entry in our list

\item The list numbers increase with each entry we add

\end{enumerate}

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

What are the two ways to show equations in Latex?

A

Display

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