When using ctable with the tufte-latex class (in xelatex), I get an error when defining a caption (and hence a label).
! Undefined control sequence. \@tufte@stored@caption ->\@ctblcaptionarg**
Anybody knows a way to correctly place a caption and a label, maybe using the doinside option of ctable? It's not possible to enclose ctable in another float.
Here's a small example:
\documentclass[nols,nofonts]{tufte-handout}
\usepackage{textcomp}
\usepackage{fontspec}
\usepackage{ctable}
\usepackage{pdflscape}
\begin{document}
\ctable[pos = Htbp,
left,
caption = thisisacaption,
label = thisisalabel
]{lrcr}
{% notes
}
{% rows
\FL
\parbox[b]{0.41\columnwidth}{\raggedright
\emph{This}
} & \parbox[b]{0.20\columnwidth}{\raggedleft
\emph{Is}
} & \parbox[b]{0.20\columnwidth}{\centering
\emph{An}
} & \parbox[b]{0.18\columnwidth}{\raggedleft
\emph{Example}
}
\LL
}
\end{document}