You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
\begin{description}
\itemsep1pt\parskip0pt\parsep0pt
\item[\hyperref[go]{testing}]
this is a body
\end{description}
which produces an error resembling:
! Argument of \Hy@babelnormalise has an extra }.
because of the nested bracket parameters ([] inside []).
The solution would be to group (wrap in {}) the definition text (ideally only when a hyperref or another command with [] occurs). That is, the output should be:
\begin{description}
\itemsep1pt\parskip0pt\parsep0pt
\item[{\hyperref[go]{testing}}]
this is a body
\end{description}
The text was updated successfully, but these errors were encountered:
A hyperref inside a definition list's definition; such as this:
is represented as:
that produces latex that resembles:
which produces an error resembling:
because of the nested bracket parameters (
[]
inside[]
).The solution would be to group (wrap in
{}
) the definition text (ideally only when a hyperref or another command with[]
occurs). That is, the output should be:The text was updated successfully, but these errors were encountered: