LATEX的改错问题~~表格打不出来了

来源:百度知道 编辑:UC知道 时间:2024/09/21 11:20:17
不知道出现了什么问题,就是不能打出来啊~~希望高手帮帮忙~~~找找错误
\begin{tabular}{|l|l|l|}
\hline
Name & Division & Book \\
\hline
Aris Kang & seller1 & the world is flat \\
\hline
Ingrid feng & seller2 & Harry Potter \\
\hline
Zhang Dan & seller3 & brave new world \\
\hline
Lin Yingxian & seller4 & The Little Prince \\
\hline

\end{tabular}

文件没有任何问题。可能是源文件中其他的地方有错。

完整的例子,你编译下面的文件肯定没有问题。
\documentclass{article}
\begin{document}
\begin{tabular}{|l|l|l|}
\hline
Name & Division & Book \\
\hline
Aris Kang & seller1 & the world is flat \\
\hline
Ingrid feng & seller2 & Harry Potter \\
\hline
Zhang Dan & seller3 & brave new world \\
\hline
Lin Yingxian & seller4 & The Little Prince \\
\hline
\end{tabular}
\end{document}