Atualmente estou redefinindo a numeração em ambientes matemáticos, mas estou encontrando um problema com o subbequations
.
Eu gostaria de ter um sistema de numeração como este:
Eq. 1. (para equações normais)
Eq. 1.A (para subequações)
Se eu colocar
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[leqno]{amsmath}
\usepackage{unicode-math}
\usepackage{etoolbox}
\usepackage{unicode-math}
\makeatletter
\renewcommand\theequation{%
\@arabic\c@equation.%
}
\renewcommand\tagform@[1]{%
\maketag@@@{%
\textbf{\textsc{Eq}.~\ignorespaces#1\unskip}
}%
}
\makeatother
\patchcmd\subequations
{\def\theequation{\theparentequation\alph{equation}}}
{\def\theequation{\theparentequation\protect\Alph{equation}}}
{}
{\FAIL}
\begin{document}
\begin{equation}
(a+b)^2 = a^2 + 2 a b + b^2
\label{eq1}
\end{equation}
Some text... \ref{eq1}
\begin{subequations}
\begin{equation}
f(x) = a x + b
\end{equation}
\begin{equation}
g(x) = q x + s
\end{equation}
\begin{equation}
h(x) = t x + b
\end{equation}
\end{subequations}
\end{document}
Eu tenho Eq. 1.A
. Mas se eu usar \ref{eq1}
, por exemplo, tenho 1.
em vez de 1
.
Se eu colocar
\renewcommand\theequation{%
\@arabic\c@equation%
}
\renewcommand\tagform@[1]{%
\maketag@@@{%
\textbf{\textsc{Eq}.~\ignorespaces#1.\unskip}
}%
}
\patchcmd\subequations % nouvelle numérotation pour les sous-équations
{\def\theequation{\theparentequation\alph{equation}}}
{\def\theequation{\theparentequation.\protect\Alph{equation}}}
{}
{\FAIL}
Não tenho problemas com isso, \ref{eq1}
mas tenho Eq. 1.A.
.
Informações adicionais:
@egreg É um comando que defini para numerar as equações, mas substituí aqui por Alph{}
para simplificar as coisas e esqueci de removê-lo. Obrigado por apontar isso para mim.
Obrigado @muzimuzhi ! Mas não é exatamente isso que eu gostaria. Para equações normais, gostaria de ter um ponto após o número da equação.
Então a numeração correta seria:
Eq. 1.
Eq. 2.A
Eq. 2.B
Eq. 2.C
Então haveria um ponto "." depois dos algarismos arábicos, mas nada depois das letras maiúsculas.
Responder1
No exemplo a seguir, forneço uma definição estranha \p@equation
que é usada dentro do arquivo \stepcounter{<counter>}
. Pode haver uma solução mais elegante.
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[leqno]{amsmath}
\usepackage{etoolbox}
\usepackage{unicode-math}
\makeatletter
\renewcommand\theequation{%
\@arabic\c@equation.%
}
\renewcommand\tagform@[1]{%
\maketag@@@{%
\textbf{\textsc{Eq}.~\ignorespaces#1\unskip}
}%
}
\patchcmd\subequations
{\def\theequation{\theparentequation\alph{equation}}}
{\def\theequation{\theparentequation\Alph{equation}}}
{}
{\FAIL}
\def\p@equation#1{\expandafter\delete@trailing@dot\expanded{#1}.\@nil}
\def\delete@trailing@dot#1.#2.#3\@nil{\ifx\relax#2\relax#1\else#1.#2\fi}
\makeatother
\begin{document}
\begin{equation}
(a+b)^2 = a^2 + 2 a b + b^2 \label{eq1}
\end{equation}
Some text... \ref{eq1} and \ref{eq2a}
\begin{subequations}
\begin{align}
f(x) = a x + b \label{eq2a}\\
g(x) = q x + s \\
h(x) = t x + b
\end{align}
\end{subequations}
\end{document}