When I use \eqref, it produce, say, (2.5). It is possible to produce like "my owner words"?
Asked
Active
Viewed 229 times
1
1 Answers
0
As Svend Mortensen already mentioned:
Use
\tag{Something}inside the equation.
Afterwards you might prefer using \ref{...} instead of \eqref{...} as it produces no brackets.
Minimal working example for you:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\label{eq:1}\tag{Something} A*B
\end{equation}
The equation is \ref{eq:1}. Or \eqref{eq:1}.
\end{document}
Will output:
A * B (Something)
The equation is Something. Or (Something).
MrD
- 2,716
\tag{Something}inside the equation. – Svend Tveskæg Apr 03 '13 at 19:04\tagwould help there. – Steven B. Segletes Apr 03 '13 at 19:49