LaTeX/excel2latex 的奇怪问题

LaTeX/excel2latex 的奇怪问题

我尝试使用excel2latex将 Excel 表格转换为 LaTeX。这是我使用的简单代码:

\documentclass[10pt,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{booktabs}
\begin{document}
\begin{table}[htbp]
\centering
\caption{Add caption}
\begin{tabular}{rrrr}
\toprule
1     & 4     & 6     & 8 \\
\midrule
-53   & 9     & 10    & 10 \\
\bottomrule
\end{tabular}%
\label{tab:addlabel}%
\end{table}%
\end{document}

excel2latex基本上,当我从插件中复制LaTeX 代码并将其粘贴到我的 LaTeX 代码中时,会出现大量错误,错误列表但如果我删除最后两行并手动输入,它就会起作用。

答案1

当 TeX 显示 时^^@,它想要表示 ASCII 字符NUL(字节 0)。从错误消息来看,似乎你的编辑器插入了一行由NUL字符组成的行。

为了防止这种不可见字符,如果在输入文件中发现^^@(或),LaTeX 会声明 无效。NUL

检查您的文件并删除有问题的字符。

相关内容