MiKTeX 意外停止;字典有问题?

MiKTeX 意外停止;字典有问题?

我刚刚在 Windows 10 上安装了最新的 MiKTeX,并安装了最新的 WinEdt。很久以前,我曾在另一台机器(坏了)上使用过它们。我尝试从网上编译一个示例文件,它运行良好。对于我自己的文件,MiKTeX 意外停止。我尝试了 WinEdt 和 TeXworks。它们返回最后几行:

*geometry* detected driver: pdftex
("C:\Program Files\MiKTeX 2.9\tex/latex/hyperref\nameref.sty"
("C:\Program Files\MiKTeX 2.9\tex/generic/oberdiek\gettitlestring.sty"))
("C:\Program Files\MiKTeX 2.9\tex/latex/amsfonts\umsa.fd")
("C:\Program Files\MiKTeX 2.9\tex/latex/amsfonts\umsb.fd")
! Extra }, or forgotten \endgroup.
\@argtabularcr [#1]->\ifnum \z@ =`{\fi }
                                        &\omit {\ifnum \z@ =`}\fi \global \a...
l.106 

? 

但是我的 tex 文件中的第 106 行是空的...日志文件的最后一部分给出了

("C:\Program Files\MiKTeX 2.9\tex/latex/oberdiek\grfext.sty"
Package: grfext 2016/05/16 v1.2 Manage graphics extensions (HO)
)
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4
38.
Package grfext Info: Graphics extension search list:
(grfext)             [.pdf,.png,.jpg,.mps,.jpeg,.jbig2,.jb2,.PDF,.PNG,.JPG,.JPE
G,.JBIG2,.JB2,.eps]
(grfext)             \AppendGraphicsExtensions on input line 456.
)
(C:\Users\werf025\AppData\Roaming\MiKTeX\2.9\tex/latex/translator\translator-ba
sic-dictionary-English.dict
Dictionary: translator-basic-dictionary, Lang

我不知道发生了什么...如果有人能帮忙我会很感激,请记住我既不是技术专家也不是 TeX 的熟练爱好者。

非常感谢您的帮助!

谨致问候,埃德温

编辑:

\documentclass[11pt,reqno,a4paper]{article}  

\usepackage{pstricks,pstricks-add} %if only this line commented away then it works  
\usepackage{tabls} %if only this line commented away then it works  
%if both lines are commented away then it works  
%if both lines are being read then error...  

\begin{document}  
\begin{table}  
\begin{tabular}{ccccc}  

a & b & c & d  & e \\  
& 1 & 2 & 3 & 4\\  

\end{tabular}  
\end{table}  

\end{document}    

答案1

你的问题可以简化为

\documentclass{article}
\usepackage{array}
\usepackage{tabls} 
\begin{document}
\begin{tabular}{ccccc}
a & b & c & d  & e \\
& 1 & 2 & 3 & 4\\
\end{tabular}
\end{document} 

这给出了错误,并表明 tabls 与最新的 array.sty 版本不兼容。您可以尝试联系作者,也许他会纠正它。

相关内容