Is it possible to put an equation environment in a table caption? Here is an outdated answer that does not compile for me with the code
\documentclass[12pt]{report}
\usepackage{caption}
\begin{document}
\begin{table}
\caption{
\begin{minipage}{\linewidth}
\begin{equation}
x=y
\end{equation}
\end{minipage}
}
\end{table}
\end{document}
which gives the error
! Argument of \caption@ydblarg has an extra }.<inserted text>\par \end{minipage}}
! Paragraph ended before \caption@ydblarg was complete.<to be read again>\par \end{minipage}}


\caption{$\displaystyle x=y$}? – Mico May 19 '17 at 04:36