subfiles icon indicating copy to clipboard operation
subfiles copied to clipboard

support rollback prior to 2019/10/01

Open mrpiggi opened this issue 4 years ago • 2 comments

Following example fails with current release as it relies on the robust definition of \end (precisely \csname end \endcsname) which was introduced with 2019/10/01

\begin{filecontents*}{\jobname-sub.tex}
\documentclass[\jobname]{subfiles}
\begin{document}
\jobname-sub: sub text
\end{document}
\end{filecontents*}

\RequirePackage[2019/10/00]{latexrelease}
\documentclass{minimal}
\usepackage{subfiles}
\begin{document}
text

\subfile{\jobname-sub}

even more text
\end{document}

This PR resolves this issue.

mrpiggi avatar Feb 08 '21 16:02 mrpiggi