I'm new to this forum and tried to search already for any posts relating to a similar problem, but to no avail.
I'm writing a thesis and using the breqn and flexisym packages to deal with multi-line equations. However I get an Latex error: bad math environment delimiter, and the original captions for both tables and figures containing greek math symbols are incorrectly reproduced in the list of tables/list of figures.
Has anybody else come across this conflict?
Kind thanks,
The minimal code reproducing the error is here:
Code: Select all
\documentclass[12pt,english, oneside]{book}
\usepackage{babel}
\usepackage{mathpazo}
\usepackage[mathpazo]{flexisym}
\usepackage{breqn}
\begin{document}
\frontmatter
\listoftables
\mainmatter
\begin{table*} [!ht]
\centering
\caption{\footnotesize Coefficients calculated for limits of agreement regression lines with n=36 and $t_{\alpha/{2,n-1}}$ = 2.03}
\begin{tabular}{l r r}
\hline\hline
& Resistance & Compliance\\
\hline
$b_{0}$ & 0.053 & 2.544\\
$b_{1}$ & -0.0005 & -0.085\\
$c_{0}$ & -0.557 & -1.294\\
$c_{1}$ & 0.280 & 0.095\\
\hline
\end{tabular}
\label{tab:LOAcoefficients}
\end{table*}
\end{document}