回忆录章节基于图表编号

回忆录章节基于图表编号

使用时\documentclass[12pt,article, a4paper, oneside, onecolumn]{memoir}article选项添加会干扰图编号。删除它会修复编号,但会改变文档的外观并增加页数。有没有建议保留文章的外观并在没有它的情况下保留编号?

格式为 xn:“x”为图形所在章节编号,“n”为章节中的图形编号?

我已尝试\numberwithin{figure}{section}将“n”更改为每个部分编号,其中 n 已更新为新部分,但“x”缺失。

带有连续数字的代码

\documentclass[12pt, article, a4paper, oneside, onecolumn]{memoir}
\usepackage{amsmath, amssymb, amsthm}
\usepackage[english]{babel}
\usepackage[pdftex]{graphicx}
\DeclareGraphicsExtensions{.pdf,.jpg,.png,.psv,.PNG}
\setsecnumdepth{section}
\maxtocdepth{subsection}
\setlrmarginsandblock{2.5cm}{2.5cm}{*} % Left and right margin
\setulmarginsandblock{3cm}{3cm}{*} % Upper and lower margin
\checkandfixthelayout
\setlength{\parindent}{4em}
\setlength{\parskip}{1em}
\usepackage[english]{babel}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{wrapfig}
\usepackage{gensymb}
\usepackage{ upgreek }
\setlength{\parindent}{0pt}
\usepackage{makeidx}
\makeindex

\begin{document}

\frontmatter
\pagenumbering{Roman}

\newpage
\chapter{Abstract}
stuff
\clearpage
\chapter{Acknowledgments}
stuff
\clearpage
\listoffigures
\newpage
%\renewcommand\contentsname{Table of Contents}
\renewcommand{\cftchapterdotsep}{\cftdotsep}
\tableofcontents
\newpage
\mainmatter
\chapter {Introduction}
stuff
\chapter{Chapter One}
\section{Section One}
\begin{figure}[h]
Figure One
\caption{Figure One}
\end{figure}

\section{Section Two}
\begin{figure}[h]
Figure Two
\caption{Figure Two}
\end{figure}

\end{document}

这提供了如图所示的数字编号

在此处输入图片描述 通过删除文章,图片列表将更改为所需的编号 在此处输入图片描述

答案1

如果您使用和article选项,仍然会执行 ,但不会重新激活。因此您必须自行在后面添加命令:memoir\frontmatter\mainmatter\frontmatter\counterwithout{figure}{chapter}\mainmatter\counterwithin{figure}{chapter}\mainmatter

\documentclass[12pt, article, a4paper, oneside, onecolumn]{memoir}
\usepackage[english]{babel}
\setsecnumdepth{section}
\maxtocdepth{subsection}
\setlrmarginsandblock{2.5cm}{2.5cm}{*} % Left and right margin
\setulmarginsandblock{3cm}{3cm}{*} % Upper and lower margin
\checkandfixthelayout
\usepackage[english]{babel}
\begin{document}

\frontmatter
\pagenumbering{Roman}

\chapter{Abstract}
\listoffigures
\tableofcontents

\newpage
\mainmatter
\counterwithin{figure}{chapter}
\chapter {Introduction}
stuff
\chapter{Chapter One}
\section{Section One}
\begin{figure}[h]
Figure One
\caption{Figure One}
\end{figure}

\section{Section Two}
\begin{figure}[h]
Figure Two
\caption{Figure Two}
\end{figure}

\end{document}

在此处输入图片描述

但请注意:如果在每个之前添加\newpage或,则不使用选项并删除那些和会更有意义。在这种情况下,您也不需要。\clearpage\chapterarticle\newpage\clearpage\counterwithin

相关内容