Document Classes ⇒ Using more than one document class (best of both worlds)
Using more than one document class (best of both worlds)
I am making a resume and was using the document class "res.cls" (http://www.biostat.harvard.edu/~paciorek/res.cls).
Now I want to change the color of the bullet points in my itemized lists. The only way I found to do this was to use the class "beamer.cls" and \setbeamercolor{}. However, as far as I know I can't have two document classes.
Is there a way to combine two classes or somehow use both? Thanks.
Cheers,
ScKaSx
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
Using more than one document class (best of both worlds)
Code: Select all
\documentclass{article}
\usepackage{xcolor}
\usepackage{enumitem}
\begin{document}
\begin{itemize}[label=\textcolor{red}{\textbullet}]
\item ABC
\item DEF
\item GHI
\end{itemize}
\end{document}