Justin Wood wrote:
> The template files do actually have this embrace, but it doesn't prevent
> the parsing error.
No. \addto\extrasenglish is not embraced by \AtBeginDocument{}
> Or do you mean the next release will do something else
> that will fix the problem? Thanks Jürgen.
No. Look below.
> For completeness, this is the preamble, taken directly from the chapter
> template:
[...]
>
> *\addto\extrasenglish{*
>
> * \renewcommand{\equationautorefname}{\hspace{-\abc}}*
>
> * \renewcommand{\sectionautorefname}{sec.\negthinspace}*
>
> * \renewcommand{\subsectionautorefname}{sec.\negthinspace}*
>
> * \renewcommand{\subsubsectionautorefname}{sec.\negthinspace}*
>
> * \renewcommand{\figureautorefname}{Fig.\negthinspace}*
>
> * \renewcommand{\tableautorefname}{Tab.\negthinspace}*
>
> *}*
>
change this to
\AtBeginDocument{%
\addto\extrasenglish{
\renewcommand{\equationautorefname}{\hspace{-\abc}}
\renewcommand{\sectionautorefname}{sec.\negthinspace}
\renewcommand{\subsectionautorefname}{sec.\negthinspace}
\renewcommand{\subsubsectionautorefname}{sec.\negthinspace}
\renewcommand{\figureautorefname}{Fig.\negthinspace}
\renewcommand{\tableautorefname}{Tab.\negthinspace}
}
}
Jürgen