Text Formatting ⇒ Font of enumerate
Font of enumerate
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Johannes_B
- Site Moderator
- Posts: 4182
- Joined: Thu Nov 01, 2012 4:08 pm
Font of enumerate
Here is how it is done in LaTeX. Using a group or with the help of package enumitem.
Code: Select all
\documentclass{article}
\usepackage{enumitem}
\begin{document}
{\huge
\begin{enumerate}
\item {elephant}
\item {mouse}
\end{enumerate}
}
\begin{enumerate}
\item {elephant}
\item {mouse}
\end{enumerate}
\begin{enumerate}[font=\huge]
\tiny
\item {elephant}
\item {mouse}
\end{enumerate}
\end{document}
Hint: Click on open in writelatex just above the code box to see the result.