将公式编号改为一个点,而不是两个点

将公式编号改为一个点,而不是两个点

我有一个关于公式编号格式的问题:我的文档有章节和节。我在节中使用显示模式有一个公式。我的公式编号有一个双点,我想将其更改为单点。为了更清楚起见,我将举一个例子,它目前的样子是:2. 章节名称
2.1 节
名称 公式 (2..1)

所以我想把它改成 (2.1)。我怀疑这与我更改章节和节的编号格式有关,因为我使用了特定命令将点添加到章节和节的编号中:

\documentclass[11pt,a4paper,ngerman]{scrreprt}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{scrlayer-scrpage}
\pagestyle{scrheadings}
\ofoot[\pagemark]{\pagemark}
\cfoot[]{}
\author{James Oliver Reppin}
\usepackage[onehalfspacing]{setspace}
%\usepackage{biblatex}
%\bibliography{masterarbeit_bibtex_1}
\usepackage{tocloft}
\addtocontents{toc}{\cftpagenumbersoff{chapter}}
\usepackage{amsmath}

\begin{document}
\renewcommand{\cftchapleader}{\cftdotfill{\cftdotsep}} 
\renewcommand{\cftsecleader}{\cftdotfill{\cftdotsep}}
\renewcommand{\thechapter}{\arabic{chapter}.}
\renewcommand{\thesection}{\thechapter\arabic{section}.} 
\chapter{chapter2}
\section{section2}
\begin{equation}
    \|x-x_{k}\| =  \min_{j=1,...,n} \|x-x_{j}\| 
\end{equation}
\end{document}

我该如何更改它以便只获得格式 {chapternumber}{.}{sectionnumber} 或如我的示例(2.1)所示?

答案1

在 ferahfeza 的帮助下,我得到了解决方案:使用以下命令:

\begin{document}
\renewcommand{\theequation}{\arabic{chapter}.\arabic{equation}}
\end{document}

产生了我想要的结果。

相关内容