I use acronym package in my Latex file. Strangely, some of its commands, like \Ac are not defined when I compile my file. The \ac command works fine though.
\documentclass[12pt]{extarticle}
\usepackage[printonlyused]{acronym}
\usepackage{multicol}
\title{Physical Layer Security}
\begin{document}
\maketitle
\Ac{BER} is a metric.
\section{Acronyms}
\begin{multicols}{2}
\begin{acronym}
\acro{BER}{bit-error rate}
\end{acronym}
\end{multicols}
\end{document}
And here is the error I see:
! Undefined control sequence. \Ac
acronym. Take a look into the log file. The version should be 1.42 or higher. This version is on CTAN since yesterday – gernot Nov 13 '19 at 17:14