我正在嘗試在詞彙表中的列中添加標題,但我無法使其工作。有誰知道如何新增列標題?下面的程式碼將術語表的標題更改為“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
.
微量元素:
\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}
輸出