I am about to submit a report in my college and I am required to do some formatting to equations.
As if it was not clear enough, they want me to have equations numbered like they were table or figures, I mean they want me to number equations like: Equation. 1.1, instead of just (1.1)
I have worked this out a little renewing the \theequationcommand to \renewcommand{\theequation}{Ecuación \thechapter.\arabic{equation}} but I have to issues:
- I need to get rid of parentheses.
- When doing cross references I get the word Ecuación printed.
I've read through the amsmath documentation but did not find anything that could help me, How could this be solved?
\documentclass[a4paper, 12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage[spanish,mexico]{babel}
\usepackage{amsmath}
\renewcommand{\theequation}{Ecuación \thechapter.\arabic{equation}}
\begin{document}
\chapter{Test}
See test equation \eqref{eq:test}
\begin{equation}
a+b=c^2 \label{eq:test}
\end{equation}
\end{document}

mathtools\newtagformsolution from the second link could be on interest to you. – TivV Jan 31 '20 at 23:51inputenc, sinceutf8encoding is now the default. – schtandard Feb 01 '20 at 00:03