Discussion Overview
The discussion revolves around modifying the way equations are referenced in LaTeX documents. Participants explore methods to change the output of equation references from the default format to a custom format that includes the prefix "eqn." before the equation number.
Discussion Character
Main Points Raised
- One participant inquires about changing the output of the \eqref{} command to display as "(eqn. 1)" instead of "(1)".
- Another participant suggests using the \ref keyword with manual parentheses to achieve the desired format, indicating that using (eqn. \ref{abc}) would work.
- A third participant confirms that the suggested method works for their needs.
- A further suggestion involves creating a macro, \newcommand\eqnrf[1]{(eqn.~\ref{#1})}, to streamline the process of referencing equations in the desired format.
- One participant notes that using macros may be considered "sloppy" since it diverges from the standard naming convention of equations.
Areas of Agreement / Disagreement
Participants generally agree on the methods proposed for changing the equation reference format, though there is a note of caution regarding the use of macros and their implications.
Contextual Notes
There is an implicit assumption that participants are familiar with LaTeX syntax and the implications of modifying reference commands. The discussion does not resolve the potential drawbacks of using macros versus standard referencing methods.