So I've got the standard \listoffigures problem wherein my figures are numbered within sections, so in my List of Figures the numbers overwrite the caption. Normally, people can use the following two lines of code to fix this, in their preambles:
Code: Select all
\usepackage[titles]{tocloft}
\setlength{\cftfignumwidth}{3.3em}
Here's my problem. tocloft doesn't work on my rig, for some reason. If I use the simplest possible code involving tocloft, I get errors:
Code: Select all
\documentclass[12pt]{amsbook}
\usepackage{tocloft}
\begin{document}
\tableofcontents
\chapter{First} Blah Blah Blah.
\end{document}
This throws a "Missing }" error on the "\tableofcontents" line. I'm using the Texlive distribution under OS X, so Im not sure where I should have posted the topic, but it seems like a tocloft problem.
Oh, and the other workaround using
Code: Select all
\makeatletter
\renewcommand*\l@figure{\@dottedtocline{1}{1.5em}{3.3em}}
\makeatother
doesn't work, either.
Thanks in advance.
~Steve