Is there any way to insert square bracket in the short caption of a table?
Below is a minimal example of my code:
Code: Select all
\documentclass{report}
\begin{document}
\listoftables
\begin{table}
\caption[I wish to insert $[a,b]$]{Long caption}
\centering
\begin{tabular}{cc}
a&b\\
c&d\\
\end{tabular}
\end{table}
\end{document}