Hi All,
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
Document Classes ⇒ Using more than one document class (best of both worlds)
NEW: TikZ book now 40% off at Amazon.com for a short time.
Using more than one document class (best of both worlds)
I don't know res.cls, and I'm too lazy to look, but there's a good chance you could do this with a combination of the xcolor and enumitem packages. The following gives a list with red bullets in the article class:
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}