[OS X TeX] Memoir figure problem

David Arnold dwarnold45 at suddenlink.net
Mon Mar 2 01:50:26 EST 2009


Alan,

Good catch. Works perfectly! Just what I needed. :-)

Thanks.

David.

On Mar 1, 2009, at 2:10 PM, Alan Munn wrote:

At 11:26 AM -0800 3/1/09, David Arnold wrote:
> All,
>
> I am trying an example from memman.pdf using the memoir class.
>
> \documentclass{memoir}
>
> \begin{document}
>
> \begin{figure}
> \centering
> \begin{minipage}{0.45\textwidth}
> Hello
> \subcaption{Bar chart.}
> \end{minipage}\hfill
> \begin{minipage}{0.45\textwidth}
> Hello
> \subcaption{Bar chart.}
> \end{minipage}
> \caption{my caption\label{fig:BarAndLinePlot}
> \end{figure}
>
> \end{verbatim}
>
> \end{document}
>
> I am getting this error:
>
> ! LaTeX Error: No counter 'subfigure' defined.
>
> See the LaTeX manual or LaTeX Companion for explanation.
> Type  H <return>  for immediate help.

To use subfloats in memoir you need to declare them with \newsubfloat 
{<floatname>}.  (Plus, your code has a few other unrelated errors: a  
stray \end{verbatim} command and a missing brace in the caption line.)

Here's a fixed version that works.  -Alan


\documentclass{memoir}
\newsubfloat{figure}
\begin{document}

\begin{figure}
\centering
\begin{minipage}{0.45\textwidth}
Hello
\subcaption{Bar chart.}
\end{minipage}\hfill
\begin{minipage}{0.45\textwidth}
Hello
\subcaption{Bar chart.}
\end{minipage}
\caption{my caption\label{fig:BarAndLinePlot}}
\end{figure}


\end{document}
-- 
Alan Munn						amunn at msu.edu
Department of Linguistics
and Germanic, Slavic, Asian and African Languages		Tel. 	517-355-7491
Michigan State University, East Lansing MI 48824 USA	Fax	517-432-2736
----------- Please Consult the Following Before Posting -----------
TeX FAQ: http://www.tex.ac.uk/faq
List Reminders and Etiquette: http://email.esm.psu.edu/mac-tex/
List Archive: http://tug.org/pipermail/macostex-archives/
TeX on Mac OS X Website: http://mactex-wiki.tug.org/
List Info: http://email.esm.psu.edu/mailman/listinfo/macosx-tex





More information about the MacOSX-TeX mailing list