「記号、ギリシャ文字、下付き文字と上付き文字」のリストの最初の文字もデフォルトで大文字にしたい。頭字語リスト「略語と頭字語」では、次のようにして機能した。
\setabbreviationstyle[acronym]{long-short}
\glssetcategoryattribute{acronym}{glossdesc}{firstuc}
後\makeglossaries
。
MWE:
\documentclass{scrbook}
\usepackage[nomain,toc,acronym,automake]{glossaries-extra}
\renewcommand{\glsnamefont}[1]{\textbf{#1}}
\setlength\glsdescwidth{0.8\hsize}
\newglossary[slg]{symbolslist}{syi}{syg}{List of symbols}
\makeglossaries
\setabbreviationstyle[acronym]{long-short}
\glssetcategoryattribute{acronym}{glossdesc}{firstuc}
\loadglsentries{myglossaries_mwe}
\begin{document}
\glsaddall
\printglossary[type=\acronymtype,title=Abbreviations and Acronyms,nonumberlist,nopostdot,style=long]
\printglossary[type=symbolslist,title={Symbols, Greek Letters, Sub- \& Superscripts},nonumberlist,nopostdot,style=long]
\end{document}
これは用語集ファイル「myglossaries_mwe」です:
\newacronym{POX}{POX}{polyoxazolidinone}
\newacronym{HPT}{HPT}{high performance thermoplastic}
\newacronym{MF}{MF}{microfiltration}
\newacronym{UF}{UF}{ultrafiltration}
\newglossaryentry{nu}{name=\ensuremath{\nu},description={stoichiometric number},sort=x, type=symbolslist}
\newglossaryentry{Tg}{name=\ensuremath{T\textsubscript{g}},description={glas transition temperature},sort=x, type=symbolslist}
答え1
シンボルリストは汎用用語集として追加されるため、対応するカテゴリはgeneral
ではなく になりますacronym
。追加
\glssetcategoryattribute{general}{glossdesc}{firstuc}
コードに追加します。
シンボル固有の組み込みコマンドがあります(この答え)には
\glssetcategoryattribute{symbol}{glossdesc}{firstuc}
その代わり。