I'm using the abbrevs package to provide nicer formatting of BC/AD in dates, but when I use one of the commands in a caption I get an error. Example document:
\documentclass{article}
\usepackage{abbrevs}
\begin{document}
\begin{figure}
\caption{1500--1000 \BC.}
\end{figure}
\end{document}
The error is:
! Argument of \@caption has an extra }.
Removing the \BC eliminates the error, which leads me to think the problem is in the combination of the two... so how can I use an abbreviation in a caption? Alternatively, is there a better package for formatting BC/AD in dates?
\caption. Use\protect\BC. – egreg Mar 4 at 9:09