对齐和定理环境的不同编号

对齐和定理环境的不同编号

我想以不同的方式对对齐环境和定理进行编号。例如,定理 2.1 之后的对齐环境编号为 2.2。我的序言附在下面。我不知道我必须改变什么才能解耦编号。我将不胜感激任何帮助!

\documentclass[a4paper,fleq,12pt]{scrreprt}

 
\pagestyle{headings}

\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}


\usepackage{graphicx}

\usepackage[babel,german=quotes]{csquotes}


\usepackage{color}      

\usepackage{amssymb, amsmath, amsthm} 
\usepackage[all]{xy} 

\usepackage{setspace}         
\setlength{\parindent}{0pt}   
\setlength{\parskip}{1.4ex plus 0.35ex minus 0.3ex} 

\setcounter{tocdepth}{3}    

\usepackage{listings}
\lstset{language=Java,
    showstringspaces=false,
    frame=single,
    numbers=left,
    basicstyle=\ttfamily,
    numberstyle=\tiny}

\numberwithin{equation}{section}
\numberwithin{table}{section}
\numberwithin{figure}{section}

\usepackage{hyperref}
\usepackage{mathrsfs}

\hyphenation{Sil-ben-trenn-ung}

答案1

你似乎希望定理和方程共享计数器。因此

\newtheorem{theorem}[equation]{Theorem}

将会完成这项工作。

相关内容