I'm new to latex, so this might just be a stupid error on my end, but I've downloaded the enumitem package and am trying to globally change the style of {enumerate} so that I don't have to type
\begin{enumerate}[label=(\roman*),itemsep=3pt,topsep=3pt]
every time I want to make a list. I've tried doing
\documentclass{article}
\usepackage{enumitem}
\listfiles
\setlist[enumerate]{label=(\roman*),itemsep=3pt,topsep=3pt}
\begin{document}
\begin{enumerate}
\item one
\item two
\end{enumerate}
\end{document}
but this doesn't change anything. Is there something I'm doing wrong?
EDIT: version: This is pdfTeX, Version 3.1415926-1.40.11 (TeX Live 2010)
EDIT: the information from \listfiles is as follows:
*File List*
article.cls 2007/10/19 v1.4h Standard LaTeX document class
size10.clo 2007/10/19 v1.4h Standard LaTeX file (size option)
enumitem.sty 2009/05/18 v2.2 Customized lists
keyval.sty 1999/03/16 v1.13 key=value parser (DPC)
***********
EDIT: sorry for all these edits. I keep compiling my MWE and getting no change from the classic enumerate style, but if I try to change the enumerate style each time I use \begin{enumerate}, it changes the way I want it to. I honestly have no idea what I'm doing wrong.
I'm using TeXShop version 2.47.
enumeratestyle, but when I change the enumerate style as I'm making the list, i.e.\begin{enumerate}[label=(\roman*),itemsep=3pt,topsep=3pt], I get my desired result. Is there some sort of problem with the rest of my preamble? I can post that too, it's not that long. – user19610 Oct 6 '12 at 19:58