LaTeX 错误:动态 OT 表生成器的数组中有非法字符

LaTeX 错误:动态 OT 表生成器的数组中有非法字符

我收到许多错误消息,例如“!包数组错误:使用了非法的前缀标记([):`c'。”关于此代码:

\begin{center} \renewcommand*\arraystretch{1.2}
\scalebox{0.9}[0.9]{\begin{tabular}[t]{|llc||c|c|c|c:c|c|c:c|c|} \hline
        \multicolumn{3}{|c||}{\textipa{i$_{\mu}^{H}$}} & {*[--low]} & {Max-$\mu$} & {Lic-$\mu$} & {Max[--high]} & {Lic-H} & {Max-T} & {Max[+high]} & {Max[--low]} & \textit{H} \\[0.5ex]
        \hline  \multicolumn{3}{|c||}{Weights} & 9.0 & 5.0 & 4.0 & 3.0 & 3.0 & 2.0 & 1.0 & 1.0 & \\
        \hline \hline & a. & \textipa{i$_{\mu}^{H}$} & -1 & & & & & & & & -9 \\
        \hline & b. & \textipa{$_{\mu}^{H}$} & & & -1 & & -1 & & -1 & -1 & -9 \\
        \hline \ding{43} & c. & \textipa{$_{\mu}$} & & & -1 & & & -1 & -1 & -1 & -8 \\
        \hline \end{tabular}} \renewcommand*\arraystretch{1} \end{center} \label{HG1}

两周前它还能用,但后来我需要重新安装 MiKTeX 才能使用 beamer 包。不知道为什么。问题是现在我之前的所有文档都无法编译,并显示相同的错误消息。

我很感激任何帮助!

耶莲娜

答案1

我刚清洗过的水晶球上写着:装上arydshln包裹后再装上包裹array

\documentclass{beamer}

\usepackage{array}
\usepackage{arydshln} % Remove this line to recreate the error

\begin{document}

\begin{frame}
    \begin{tabular}{|c:c|}
     1 & 2\\
  \end{tabular}
\end{frame} 

\end{document}

相关内容