用語集の列ヘッダー

用語集の列ヘッダー

用語集の列にヘッダーを追加しようとしていますが、うまくいきません。列ヘッダーを追加する方法をご存知の方はいらっしゃいますか? 以下のコードは用語集のタイトルを「メイン」に変更しますが、期待した列ヘッダーが表示されません。

\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} 

出力

ここに画像の説明を入力してください

関連情報