想要在两列文章页面的顶部中央放置一个大表格

想要在两列文章页面的顶部中央放置一个大表格
\documentclass[11pt, twocolumn]{article}

\usepackage{fontspec} %%Should compile with XeLatex
\defaultfontfeatures{Mapping=tex-text}
\setmainfont[SmallCapsFont = Delicious SmallCaps]{Delicious-Roman} %%Want to use this FONT

\usepackage{multicol}

\title{\textsc{My Title}}
\author{
    Author Details }
\date{\today}

\begin{document}
...

\begin{table}[!h]
\setlength{\extrarowheight}{1.5pt}
\begin{center}
\begin{tabular}{|l|l|l|l|l|}
\hline
Ename & \underline{Eid} & Salary & Dno & Supervisor\_eid \\
\hline
\end{tabular}
\end{center}
\caption {\textbf{EMP} Database Schema}
\end{table}

...

\end{document}

使用table*环境时{XeLatex}编译失败。该如何解决?

错误: [4] ! Extra }, or forgotten \endgroup. \@endfloatbox ...pagefalse \outer@nobreak \egroup \color@endbox l.317 \end{table*}

答案1

使用\usepackage{multicol,array}我对你的例子没有问题。当前 TeXLive 2011

相关内容