I use the glossaries package and when I print the acronyms using \printglossary[type=\acronymtype,title={List of Abbreviations}], part of the output I get is as shown below.
I have specified acronyms in a separate file as follows:
\newacronym{brdf}{BRDF}{bidirectional reflectance distribution function}
\newacronym{cnn}{CNN}{convolutional neural network}
\newacronym{awgn}{AWGN}{additive white Gaussian noise}
Is there a way to capitalize first letter of all words in the list of acronyms ONLY, when printing? (And have them in lower-case in the text)
Edit:
example
\documentclass[a4paper,oneside,12pt]{report}
% Abbreviations
\usepackage[acronym,style=super,nogroupskip,nonumberlist,toc]{glossaries}
\loadglsentries{def_abr} % file with acronyms
\makeglossaries
\begin{document}
% abstract, toc, list of figures here
\renewcommand{\glsnamefont}[1]{\textbf{#1}}
\printglossary[type=\acronymtype,title={List of Abbreviations}]
\chapter*{Example Usage}
\gls{brdf}, \gls{awgn}, \gls{psnr}, \gls{cnn}
% chapters
\end{document}
def_abr.tex file:
\newacronym{brdf}{BRDF}{bidirectional reflectance distribution function}
\newacronym{cnn}{CNN}{convolutional neural network}
\newacronym{psnr}{PSNR}{peak-signal-to-noise ratio}
\newacronym{snr}{SNR}{signal to noise ratio}
\newacronym{awgn}{AWGN}{additive white Gaussian noise}







psnrnot defined. – Steven B. Segletes Mar 25 '19 at 11:07}after the CNN definition, otherwise it looks ok I think. – Marijn Mar 25 '19 at 12:00