Skip to content

Instantly share code, notes, and snippets.

@Lenchik
Created July 21, 2015 21:19
Show Gist options
  • Save Lenchik/81b49e6f6002a6a4740a to your computer and use it in GitHub Desktop.
Save Lenchik/81b49e6f6002a6a4740a to your computer and use it in GitHub Desktop.
Попытка написать функцию по борьбе с неэкранированными символами в ссылках из библиографии LaTeX
\makeatletter
\verbtocs{\diez} |#|
\newcommand*{\doit}[2]{%
\StrSubstitute{#2}{_}{\_}[\doit@text]%
% \StrSubstitute{\doit@text}{\diez}{\diez}[\doit@text]%
\StrSubstitute{\doit@text}{<}{\textless}[\doit@text]%
\StrSubstitute{\doit@text}{>}{\textgreater}[\doit@text]%
\StrSubstitute{#1}{<}{\@percentchar3C}[\doit@link]%
% \StrSubstitute{\doit@link}{\diez}{\%23}[\doit@link]%
\StrSubstitute{\doit@link}{>}{\@percentchar3E}[\doit@link]%
\href{\doit@link}%
{\doit@text}%
}
\makeatother
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment