我被我想用于首字母缩略词的词汇表困住了。问题是,现在当我想开始一个句子时,它以小写和单数形式书写。我试过了,makefirstuc
但没有成功。有没有办法强制将首字母大写并以复数形式书写单词?或者我可以Desoxyribonucleic Acid
在首字母缩略词列表中用大写字母书写,然后在文本中将大写字母改为A
小写字母a
?
\documentclass{article}
\usepackage[acronym,nonumberlist,nopostdot]{glossaries}
\makenoidxglossaries
\newacronym{dna}{DNA}{desoxyribonucleic acid}
\newacronym{rna}{RNA}{ribonucleic acid}
\newacronym{a}{A}{Adenosine}
\newacronym{g}{G}{Guanine}
\newacronym{c}{C}{Cytosine}
\newacronym{t}{T}{Thymine}
\newacronym{u}{U}{Uracil}
\begin{document}
\section{DNA, RNA and Nucleobases}
\gls{dna} contain the nucleobases of \gls{a}, \gls{g}, \gls{c} and \gls{t}.
In contrast \gls{rna} contains \gls{u} instead of a \gls{t}.
\printnoidxglossaries
\end{document}