KOMA 字体剪贴簿,包含单个未编号章节

KOMA 字体剪贴簿,包含单个未编号章节

我正在使用 scrbook考博我想制作一个包含单个章节、未编号且未命名的文档。这可能意味着我scrbook一开始就不应该使用它,但我想制作一个与另一个包含多个章节、编号和命名的文档风格相同的文档。

\documentclass{scrbook}
\usepackage{mwe}

\begin{document}
\mainmatter

\section{Introduction}
We will be brief.

\section{Details}

\begin{figure}
    \centering
    \includegraphics[width=0.5\columnwidth]{example-image}
    \caption{
        A figure caption
    }
    \label{fig-1}
\end{figure}

There is no information in Figure~\ref{fig-1}.

\end{document}

生产

在此处输入图片描述

并且我基本上想0.从所有参考文献和标题中删除 。因此 MWE 将生成一个编号为 的图1,而不是0.1

我希望有一种简单的方法来完成此操作。本文档永远不会包含超过一章,因此我并不介意使用一种解决方案,例如,1如果它们是两个不同章节中的第一个图,则会产生两个图。如果我可以完全抑制0.标签的前缀,那就足够了。

我注意到\chapappifchapterprefix注意到考网,但我认为这指的是例如“章节”(与KOMA-Script 中的自定义章节前缀文本

相关但不同的问题:如何在 KOMA-script 中使用未编号章节?

答案1

使用\counterwithout指令:

\documentclass{scrbook}
\usepackage{mwe}
\counterwithout{section}{chapter}
\counterwithout{figure}{chapter}
\begin{document}
\mainmatter

\section{Introduction}
We will be brief.

\section{Details}

\begin{figure}
    \centering
    \includegraphics[width=0.5\columnwidth]{example-image}
    \caption{
        A figure caption
    }
    \label{fig-1}
\end{figure}

There is no information in Figure~\ref{fig-1}.

\end{document} 

在此处输入图片描述

答案2

我已向\chapter您的 MWE 添加了未命名和未编号的内容,并更改了编号方案。

% anonchapprob.tex  SE 599268

\documentclass{scrbook}
\usepackage{mwe}
\usepackage{lipsum}

\begin{document}
\mainmatter
\chapter*{}
\renewcommand{\thesection}{\arabic{section}}
\renewcommand{\thefigure}{\arabic{figure}}

\section{Introduction}
We will be brief.

\section{Details}

\begin{figure}
    \centering
    \includegraphics[width=0.5\columnwidth]{example-image}
    \caption{
        A figure caption
    }
    \label{fig-1}
\end{figure}

There is no information in Figure~\ref{fig-1}.

\lipsum[1-8]

\end{document}

我希望我正确地理解了你的愿望。

相关内容