We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hyperref
Tested with v0.99 and earlier. If the user includes any text formatting within their title, such as
\title{Solving {\it Some} Equations}
or any LaTeX mathematics such as
\title{Solving \(x^2 = 0\) Quickly}
then the compiler will throw the following bug
\@setfontsize #1#2#3->\@nomath #1 \ifx \protect \@typeset@protect \let \@curr... l.123 } {}
if the user is also using the hyperref package. This comes from trying to pass a formatted string to pdftitle in this code
pdftitle
% If with-hyperref selected, configure its default settings \ifthenelse{\boolean{with-hyperref}}{ ... \RequirePackage[pdftitle={\@title}, ...]{hyperref} ... } {} } {}
The issue can be fixed by removing the formatting from \@title before passing it to pdftitle.
\@title
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Tested with v0.99 and earlier. If the user includes any text formatting within their title, such as
or any LaTeX mathematics such as
then the compiler will throw the following bug
if the user is also using the
hyperref
package. This comes from trying to pass a formatted string topdftitle
in this codeThe issue can be fixed by removing the formatting from
\@title
before passing it topdftitle
.The text was updated successfully, but these errors were encountered: