문서 클래스 "book"의 "섹션" 및 "등식" 카운터 형식 변경

문서 클래스 "book"의 "섹션" 및 "등식" 카운터 형식 변경

문서 클래스 'book'을 사용하고 있습니다. 나는 다음 코드를 사용하고 있습니다

\documentclass{book}
\usepackage{amsmath, amsthm, amssymb, amsfonts}
\theoremstyle{definition}
\newtheorem{definition}{Def{i}nition}[section]
\newtheorem{lemma}{Lemma}[section]
\newtheorem{proposition}[definition]{Proposition}
\begin{document}
\mainmatter
\chapter{Quadratic Equation}
\section{Introduction}
\begin{definition}
\quad An equation $ax^2 + bx + c = 0,\ a\neq 0,\ a,\ b,\ c \in     \mathbb{R}$ is a called \textbf{quadratic equation}. The values of $x$ which satisfies it, is called its \textbf{roots}.
\end{definition}
\begin{proposition}
\quad Roots of the quadratic $ax^2 + bx + c = 0,\ (a\neq 0,\ a,\ b,\ c \in \mathbb{R}$) are given by\\
\begin{align}
    x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a}
\end{align}
\end{proposition}
\end{document}

섹션 번호를 '1.1' 대신 '1'로 지정하고 방정식 번호도 '1.1' 대신 '1'로 지정하고 싶습니다. 그리고 넘버링 정의와 명제는 1.1과 1.2가 되어야 한다.

나는 내가 할 수 없는 이 효과를 얻기 위해 많은 노력을 했습니다. 도와주세요.

조판

답변1

TeX 배포판이 최신 버전이라고 가정하면 다음 지침을 추가하여 형식 지정 목표를 달성할 수 있습니다.

\counterwithout{equation}{chapter}
\counterwithout{section}{chapter}

서문에서. TeX 배포판이 다소 오래된 경우 chngcntr앞의 두 지침을 실행하기 전에 패키지를 로드해야 합니다.

몇 가지 추가 의견:

  • \\환경 이 시작되기 전에 명시적인 줄 바꿈을 삽입할 필요가 없습니다 align. 사실, 나는 더 나아가 \\그 위치에 삽입하는 것은 좋지 않은 습관이라고 말하고 싶습니다.

  • 명제에 표시된 방정식은 한 줄로 구성되므로 환경을 환경 align으로 바꿔야 합니다 equation.

  • 단일 인라인 방정식 을 작성하는 대신 $ax^2 + bx + c = 0,\ a\neq 0,\ a,\ b,\ c \in \mathbb{R}$3개의 [3!] 별도 인라인 방정식을 작성합니다: `$ax^2 + bx + c = 0$, $a\neq 0$, $a,\ b,\ c \in \mathbb{R}$. 다른 것이 없다면 하나의 긴 방정식 대신 세 개의 짧은 방정식을 사용하면 적절한 줄 바꿈을 찾는 TeX의 작업이 쉬워집니다.

    마찬가지로 .$ax^2 + bx + c = 0,\ (a\neq 0,\ a,\ b,\ c \in \mathbb{R}$)$ax^2 + bx + c = 0$, ($a\neq 0$, $a,b,c\in\mathbb{R}$)

  • {i}나는 in 의 목적이 합자를 \newtheorem{definition}{Def{i}nition}[section]끊는 것이라고 가정합니다 fi. 이 경우 {}합자를 분리하는 데 사용하면 pdfLaTeX에서는 작동하지만 XeLaTeX 및 LuaLaTeX에서는 작동하지 않습니다. 쓰는 것이 더 좋습니다 \newtheorem{definition}{Def\kern0ptinition}[section].

여기에 이미지 설명을 입력하세요

\documentclass{book}
\usepackage{amsmath, amsthm, amssymb}

\theoremstyle{definition}
\newtheorem{definition}{Def\kern0ptinition}[section]
\newtheorem{lemma}{Lemma}[section]
\newtheorem{proposition}[definition]{Proposition}

\counterwithout{equation}{chapter}
\counterwithout{section}{chapter}

\begin{document}
\mainmatter
\chapter{Quadratic Equation}
\section{Introduction}
\begin{definition}
An equation $ax^2 + bx + c = 0$, $a\neq 0$, $a, b, c \in\mathbb{R}$ is a 
called a \textbf{quadratic equation}. The values of $x$ which satisfies 
it are called its \textbf{roots}.
\end{definition}
\begin{proposition}
The roots of the quadratic $ax^2 + bx + c = 0$, ($a\neq 0$, 
$a,b,c\in\mathbb{R}$) are given by
\begin{equation}
    x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} \,.
\end{equation}
\end{proposition}
\end{document}

관련 정보