Search found 4 matches

by annazn
Fri Jul 15, 2016 8:42 am
Forum: Graphics, Figures & Tables
Topic: Loss of figure chapter numbers when using frontmatter
Replies: 6
Views: 4058

Re: Loss of figure chapter numbers when using frontmatter

Thanks a lot! It works now :mrgreen: 4 days before I'm handing in, you saved my day!
by annazn
Thu Jul 14, 2016 4:14 pm
Forum: Graphics, Figures & Tables
Topic: Loss of figure chapter numbers when using frontmatter
Replies: 6
Views: 4058

Loss of figure chapter numbers when using frontmatter

Here is an example of my problem:

\documentclass[final,a4paper,11pt,fleqn,dvipsnames,article,twoside,openright,english]{memoir}

\usepackage{amsmath}
\usepackage{subfig}
\usepackage{graphicx}
\usepackage{todonotes}

\setsecnumdepth{subsection}
\maxtocdepth{subsection}
\numberwithin{figure ...
by annazn
Thu Jul 14, 2016 8:35 am
Forum: Graphics, Figures & Tables
Topic: Loss of figure chapter numbers when using frontmatter
Replies: 6
Views: 4058

Re: Loss of figure chapter numbers when using frontmatter

I know that chapters are unnumbered in frontmatter :)
The problem is that my figures in mainmatter lose their chapter numbers when I start my document using frommatter:

\frontmatter
abstract etc.

\mainmatter
main document (no chapter numbers)

If I deactive frontmatter I can see the chapter ...
by annazn
Mon Jul 11, 2016 7:24 pm
Forum: Graphics, Figures & Tables
Topic: Loss of figure chapter numbers when using frontmatter
Replies: 6
Views: 4058

Loss of figure chapter numbers when using frontmatter

I am writing my master thesis using the memoir package.

I use \frontmatter for table of contents, abstract and so on, and \mainmatter for the thesis.
I use
\makeatletter
\renewcommand\@memmain@floats{%
\counterwithin{figure}{chapter}
\counterwithin{table}{chapter}
}
\makeatother
and it works ...