From 6e5c153939e869f3c2f346a39d73b97459a85e11 Mon Sep 17 00:00:00 2001 From: Bastien Dumont Date: Wed, 6 Aug 2025 08:39:15 +0200 Subject: [PATCH] Minor improvements in the manual --- doc/crossrefenum.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/crossrefenum.md b/doc/crossrefenum.md index f3700ac..5c74a5d 100644 --- a/doc/crossrefenum.md +++ b/doc/crossrefenum.md @@ -55,7 +55,7 @@ The macro `\crossrefenum` has the following syntax: > \\crossrefenum\[_type_\]\[_print prefix?_\]{_enumeration_} - * _type_ is the type of reference. Built-in possible values are: + * _type_ is the type of the references. Built-in possible values are: * For LaTeX and ConTeXt: `page`, `note`, `pagenote`; * For ConTeXt only: `line`, `pageline`; * For LaTeX with _reledmac_: `edpage`, `edline`, `edpageline`. @@ -425,7 +425,9 @@ to disable _hyperref_ locally: ``` {.tex} \makeatletter \let\oldcrfnm@enum\crfnm@enum -\def\crfnm@enum[#1][#2]#3{\begin{NoHyper}\oldcrfnm@enum[#1][#2]{#3}\end{NoHyper}} +\def\crfnm@enum[#1][#2]#3{% + \begin{NoHyper}\oldcrfnm@enum[#1][#2]{#3}\end{NoHyper}% +} \makeatother ```