Text Flashcards
How do you bold text?
\textbf{greatest}
How do you italicize text?
\textit{…}
How do you underline text?
\underline{…}
How do you emphasize text?
\emph{…}
What is emphasized text?
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 do you create a bulleted list?
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}
What are the 4 methods to put Latex in in-line mode?
Use one of the followinf delimiters:
- ( … )
- [… ]
- $ … $
- \begin{math} … \end{math}
They all work and the choice is a matter of taste.
How do you create a numbered list?
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}
What are the two ways to show equations in Latex?
Display