I am trying to use the labbook document class and find that I am neither able to load the hyperref package nor make an experiment section.
MWE:
\documentclass[hyperref]{labbook}
\usepackage{siunitx}
\begin{document}
\labday{27 September 2021}
\experiment[test1]{This is a test experiment}
\end{document}
And I get two errors:
! Class labbook Error:hyperref option given, but package not loaded.
and
!Missing \endcsname inserted <to be read again>\let \end{document}
I've tried pdflatex as well as xelatex. My OS is Linux Mint. My frontend is TeXMaker.
labbookmanual, you still have to loadhyperrefmanually. It is best not to auto load it as (1) it needs to be last and (2) a few packages need to be loaded afterhyperref– daleif Sep 27 '21 at 16:22