我尝试在框架阴影环境中放置一个表格。 MWE 实际上工作正常,但当我尝试在我正在编写的文档中编译它时,我收到错误:
LaTeX 错误:浮点数丢失。
我尝试将位置修饰符更改为H
,虽然没有出现错误,但我没有在任何地方看到表格。
这是 MWE:
\documentclass[tikz]{standalone}
\usepackage{tabularx}
\usepackage{threeparttable}
\usepackage{booktabs}
\usepackage{framed}
\definecolor{shadecolor}{gray}{.85}%
\newenvironment{ShadedTest}{\par \begin{shaded*} \medskip \small }{\par \end{shaded*}}
\begin{document}
\begin{ShadedTest}
Test of shaded table:
\begin{table*}[t]
\centering
\begin{threeparttable}
\begin{tabular}{@{}lccc@{}}\toprule
& \multicolumn{3}{c}{\textbf{Column}} \\ \cmidrule{2-4}
& \textbf{A} & \textbf{B} & \textbf{C} \\ \midrule
First row & $\alpha$\tnote{\textdagger} & $\beta$ \tnote{\textdaggerdbl} & $\gamma$ \\
Second row & $\delta$ & $\iota$ \\
\bottomrule
\end{tabular}
\begin{tablenotes}
\item[\textdagger] First footnote
\item[\textdaggerdbl] Second footnote
\end{tablenotes}
\end{threeparttable}
\caption{Table caption}
\end{table*}
\end{ShadedTest}
\end{document}