이와 같은 방정식에 자동으로 번호를 매기는 방법

이와 같은 방정식에 자동으로 번호를 매기는 방법

다음과 같이 방정식에 자동으로 번호를 매기는 방법: 여기에 이미지 설명을 입력하세요

답변1

GuM의 답변과 근본적으로 다르지는 않지만 부분 파생어 입력 esdiff및 상호 참조를 쉽게 하기 위한 몇 가지 개선 사항이 cleveref있습니다.~ 후에 hyperref, 사용하는 경우):

\documentclass{book}
\usepackage[utf8]{inputenc}
\usepackage{mathtools}
\usepackage{esdiff}
\usepackage{cleveref}
\setcounter{chapter}{2}

\begin{document}

To find $g$, we know that
\begin{subequations}
  \begin{align}
    \diffp{g}{x} & = 3x^2y^2 + x^2, \label{eq:1} \\%
    \diffp{g}{y} & = 2x^3y + y^2.\label{eq:2}
  \end{align}
\end{subequations}
Integrating \Cref{eq:1} with respect to $x$ gives us
\begin{equation}\label{eq:3}
  g = x^3y^2 + \frac{x^3}{3} + h(x)
\end{equation}

\end{document} 

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

답변2

당신은 이유 없이 걱정하고 있습니다. 코딩은 매우 간단합니다. 예를 들어(또한 참조크리스티안 후퍼(Christian Hupfer)의 논평:

% My standard header for TeX.SX answers:
\documentclass[a4paper]{article} % To avoid confusion, let us explicitly 
                                 % declare the paper format.

\usepackage[T1]{fontenc}         % Not always necessary, but recommended.
% End of standard header.  What follows pertains to the problem at hand.

\usepackage{amsmath}

\numberwithin{equation}{section}



\begin{document}

\setcounter{section}{2} % pretend we are in section two

By theorem~\ldots, \( \omega = dg \) for some~$g$.  To find~$g$, we know that
\begin{subequations}
    \label{eq:both}
    \begin{align}
        \frac{\partial g}{\partial x} &= 3x^{2}y^{2}+x^{2} \mbox{,}
                \label{eq:first} \\
        \frac{\partial g}{\partial y} &= 2x^{3}y+y^{2} \mbox{.}
                \label{eq:second}
    \end{align}
\end{subequations}
Integrating~\eqref{eq:first} with respect to~$x$ gives
\begin{equation}
    g = x^{3}y^{2} + \frac{x^{3}}{3} + h(y) \mbox{,}
\end{equation}
etc.  etc.  Note that you can also reference equation~\eqref{eq:both} as a
whole.

\end{document}

해당 출력은 다음과 같습니다.

코드 출력

답변3

며칠 전에 비슷한 방법을 만들었습니다.여기그것은.

'amsmath' 패키지를 사용하는 것을 잊지 마세요.

다음과 같이 약간 변경할 수 있습니다(테스트되지 않음).

\makeatletter
\newcommand*\ifcounter[1]{%
  \ifcsname c@#1\endcsname%
    \expandafter\@firstoftwo%
  \else%
    \expandafter\@secondoftwo%
  \fi%
}%
\makeatother


\makeatletter
\newcommand\EqFamTag[2][alph]{%
\ifcounter{#2}{%
\expandafter\addtocounter{#2}{1}%
\xdef\temp{\csname #2 Eq\endcsname\csname #1\endcsname{#2}}%
\global\expandafter\let\csname #2\arabic{#2}\endcsname\temp%
\tag{\temp}%
}{%
\global\expandafter\newcounter{#2}%
\expandafter\addtocounter{#2}{1}%
\xdef\temp{\theequation\csname #1\endcsname{#2}}%
\xdef\eqonfamily{\theequation}%
\global\expandafter\let\csname #2 Eq\endcsname\eqonfamily%
\global\expandafter\let\csname #2\arabic{#2}\endcsname\temp%
\tag{\temp}%
\expandafter\addtocounter{equation}{1}
}%
}%
\makeatother

그런 다음 방정식을 다음과 같이 작성할 수 있습니다.

\begin{equation}
 x^2=3\EqFamTag{MyEquatioFamily}
\end{equation}

그리고 동일한 '\EqFamTag{}'가 있는 다음 방정식은 동일한 계열의 다음 번호가 매겨진 방정식을 제공합니다... 필요 여부에 따라 레이블을 추가할 수 있습니다(레이블 없이 참조할 수 있는 방법을 보려면 위 게시물을 확인하세요).

답변4

일반 TeX(귀하의 질문에서 명확하지 않음)를 사용하는 경우 OPmac을 사용할 수 있으며 추가해야 하는 문자라는 하나의 매개변수로 \eqmark호출되는 매크로 에 대한 변형을 정의할 수 있습니다 \eqmarkx.

\input opmac

\def\pdiff#1\over#2{{\partial#1\over\partial#2}}
\def\thednum{(\the\secnum.\the\dnum)}
\def\eqmarkx#1{\ifx a#1\global\advance\dnum by1 \fi
   \def\thednum{(\the\secnum.\the\dnum#1)}%
   \ifinner\else\eqno \fi 
   \wlabel\thednum \rm\thednum
}

\sec Test

To find $g$, we know that
$$ 
  \eqalignno{
     \pdiff g\over x &= 3x^2 y^2 + x^2, & \label[eq-a]\eqmarkx a \cr
     \pdiff g\over y &= 2x^3 y + y^2.   & \label[eq-b]\eqmarkx b \cr
   } 
$$
Integrating Equation \ref[eq-a] with respect to $x$ gives us
$$
  g = x^3 y^2 + {x^3 \over 3} + h(x) \eqmark
$$

\bye

관련 정보