-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
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
No capitals for sections when using \autoref #9
Comments
Hi Ilia, |
The issue is still present in the latest commit of iacrtrans, with MacTex 2018. Below is the minimal example.
Running Logs here: test.zip |
@ikizhvatov There are several ways to solve this: If you don't need the If you are using the \usepackage{hyperref}
\addto\extrasenglish{
\def\sectionautorefname{Section}
} This is your minimal example with the fixes applied: \documentclass[journal=tches,submission]{iacrtrans}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{hyperref}
\addto\extrasenglish{
\def\sectionautorefname{Section}
}
\begin{document}
\title{Title}
\author{John Doe}
\institute{Institute}
\maketitle
\section{Foo}
\label{sec:foo}
Nothing
\section{Bar}
In \autoref{sec:foo}, we did not describe anything.
\end{document} references |
\def\sectionautorefname{Section} does not seem to have effect. Observed with pdflatex, TeX Live 2017.
The text was updated successfully, but these errors were encountered: