Document ClassesUsing more than one document class (best of both worlds)

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
sckasx
Posts: 4
Joined: Wed Jun 24, 2009 12:32 am

Using more than one document class (best of both worlds)

Post by sckasx »

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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Using more than one document class (best of both worlds)

Post by frabjous »

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}
Post Reply