I am using How to create both list of abbreviations and list of nomenclature using nomencl package? to create a list of abbreviations. The code is below:
\usepackage{nomencl}
\usepackage{etoolbox}
\renewcommand\nomgroup[1]{%
\item[\Large\bfseries
\ifstrequal{#1}{N}{Nomenclature}{%
\ifstrequal{#1}{A}{List of Abbreviations}{}}%
]\vspace{10pt}}
\begin{document}
\makenomenclature
\nomenclature[A]{\textbf{LC/MS-MS}}{liquid chromatography-tandem mass spectrometry }
\nomenclature[A]{\textbf{DDA}}{data dependent acquisition}
\nomenclature[A]{\textbf{PRM}}{parallel reaction monitoring}
\printnomenclature[2cm]
\end{document}
How can I delete Nomenclature and leave only List of Abbreviations in the final document?
