GeneralRemove entries from LOF in memoir

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
mannesmann
Posts: 3
Joined: Fri May 13, 2011 10:22 pm

Remove entries from LOF in memoir

Post by mannesmann »

Hi

I am writing a document in the memoir class and I would like for the LoF not to include the figures in the Appendix. I've tried using the caption package, but unfortunately this doesn't seem to be compatible with memoir. At least not when using the command

Code: Select all

\captionsetup{list=no}
Does anybody know how to solve this problem?

Any piece of advice is greatly appreciated!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
LagrangeEU
Posts: 6
Joined: Wed May 11, 2011 7:53 pm

Remove entries from LOF in memoir

Post by LagrangeEU »

Just to clarify, did you include the command in the following way

Code: Select all

\appendix
\captionsetup[figure]{list=no}
mannesmann
Posts: 3
Joined: Fri May 13, 2011 10:22 pm

Remove entries from LOF in memoir

Post by mannesmann »

LagrangeEU wrote:Just to clarify, did you include the command in the following way

Code: Select all

\appendix
\captionsetup[figure]{list=no}
Thank you for the reply.
I did include the command in the appendix and I also included the package in the preamble. As far as I know, the problem is that the caption package isn't compatible with the memoir class.
That is why I need a new way to do this...
LagrangeEU
Posts: 6
Joined: Wed May 11, 2011 7:53 pm

Remove entries from LOF in memoir

Post by LagrangeEU »

I have just tested the the caption package with memoir and it should would.
Consider the following minimal working example

Code: Select all

\documentclass[12pt]{memoir}

\usepackage{caption}

\begin{document}
\listoffigures


\appendix
\captionsetup[figure]{list=no} %Outcomment this line to see the effect
\begin{figure}[htbp]
\begin{tikzpicture}
\draw[->] (0,0) -- (9,0);
\draw[->] (0,0) -- (0,9.5);
\end{tikzpicture}
\caption{A figure}
\end{figure}

\end{document}
Do you use the hyperref package? This might yield clashs (try updating to the most recent version of both)!
Post Reply