Advertisement
syvshc

bug of etoolbox and hyperref

Feb 25th, 2022
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.55 KB | None | 0 0
  1. \documentclass{article}
  2. \usepackage{etoolbox}
  3. % biblatex fails
  4. \usepackage{biblatex}
  5. \addbibresource{xampl.bib}
  6. % If I load hyperref in \AtEndPreamble,
  7. % biblatex's cite hyperlink didn't work
  8. % bibtex's could work
  9. % If I just load hyperref, both of them worked
  10. \AtEndPreamble{\usepackage[colorlinks]{hyperref}}
  11. % \usepackage[colorlinks]{hyperref}
  12. \begin{document}
  13. % test if hyperref works
  14. \section{test}\label{sec}\ref{sec}
  15.  
  16.  \cite{article-full}
  17.   \printbibliography
  18.   % \bibliographystyle{plain}
  19.   % \bibliography{xampl.bib}
  20. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement