We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be good to have a formatting tool that can:
I.e. enforce labels starting with eq:, fig:, tab:. For example:
eq:
fig:
tab:
\begin{equation} \label{4} ... \end{equation} See \cref{4}
should be changed to
\begin{equation} \label{eq:4} ... \end{equation} See \cref{eq:4}
In the case that labels are simply the float number, the formatting can ensure that the right number is used. For example
\begin{equation} \label{eq:4} ... \end{equation} ... \begin{equation} \label{eq:2} ... \end{equation} See \cref{eq:4}
\begin{equation} \label{eq:1} ... \end{equation} ... \begin{equation} \label{eq:2} ... \end{equation} See \cref{eq:1}
Rename:
Fig.~\ref{mylabel}
Fig. \ref{mylabel}
Figure \ref{mylabel}
Figure~\ref{mylabel}
Tab.~\ref{mylabel}
Tab. \ref{mylabel}
Table \ref{mylabel}
Table~\ref{mylabel}
Eq.~\ref{mylabel}
Eq. \ref{mylabel}
Equation \ref{mylabel}
Equation~\ref{mylabel}
to
\cref{mylabel}
Something clever should be considered for
Eqs.~\eqref{a}, \eqref{b}, and \eqref{c}
Eq.~(\ref{a}--\ref{c})
(Languages should be considered)
The text was updated successfully, but these errors were encountered:
Mostly done, still remaining: #32 and #31
Sorry, something went wrong.
No branches or pull requests
It would be good to have a formatting tool that can:
Ensure label formatting (DONE!)
I.e. enforce labels starting with
eq:
,fig:
,tab:
. For example:should be changed to
Ensure label numbering
In the case that labels are simply the float number, the formatting can ensure that the right number is used. For example
should be changed to
Ensure cleveref (DONE!)
Rename:
Fig.~\ref{mylabel}
Fig. \ref{mylabel}
Figure \ref{mylabel}
Figure~\ref{mylabel}
Tab.~\ref{mylabel}
Tab. \ref{mylabel}
Table \ref{mylabel}
Table~\ref{mylabel}
Eq.~\ref{mylabel}
Eq. \ref{mylabel}
Equation \ref{mylabel}
Equation~\ref{mylabel}
to
\cref{mylabel}
Something clever should be considered for
Eqs.~\eqref{a}, \eqref{b}, and \eqref{c}
: can be formattedEq.~(\ref{a}--\ref{c})
: can be formatted, or should throw a warning(Languages should be considered)
The text was updated successfully, but these errors were encountered: