용어집의 열에 헤더를 추가하려고 하는데 제대로 작동하지 않습니다. 열 헤더를 추가하는 방법을 아는 사람이 있나요? 아래 코드는 용어집 제목을 "Main"으로 변경하지만 예상한 열 헤더를 제공하지 않습니다.
\documentclass[12pt]{article}
\usepackage[]{glossaries}
\glossarystyle{tree}
\renewcommand*{\glossaryname}{Main}
\renewcommand*{\entryname}{Acronyms}
\renewcommand*{\descriptionname}{Description}
\renewcommand*{\pagelistname}{Page}
\newglossaryentry{test}{
name={test},
description={Description of test}
}
\newglossaryentry{test2}
{
name={test2},
description={Description of test2}
}
\makeglossary
\begin{document}
\printglossary
\vspace{5cm}
\gls{test}, \gls{test2}
\end{document}
답변1
예를 들어 헤더를 지원하는 스타일을 사용해야 합니다 long3colheader
. 그런데 이 명령 \glossarystyle
은 \setglossarystyle
.
MWE:
\documentclass[12pt]{article}
\usepackage[]{glossaries}
\setglossarystyle{long3colheader}
\renewcommand*{\glossaryname}{Main}
\renewcommand*{\entryname}{Acronyms}
\renewcommand*{\descriptionname}{Description}
\renewcommand*{\pagelistname}{Page}
\newglossaryentry{test}{
name={test},
description={Description of test}
}
\newglossaryentry{test2}
{
name={test2},
description={Description of test2}
}
\makeglossary
\begin{document}
\printglossary
\vspace{5cm}
\gls{test}, \gls{test2}
\end{document}
산출