latex中的undefined control sequence

很简单的一段话(见后面),但是始终运行不了%!Mode::“Tex:UTF:8”\documentclass{article}\author{yourname}\title{My First \LaTeX{}article}\begin{document} \makettitle Wow! This is my First\LaTeX{}Article! Hello World! \end{document}

undefined control sequence 的含义是出现了非法的命令。比如使用的命令,忘记加相应的宏包;或者键入了错误的命令。 仅从你的这段代码看,是没有问题的,当然要求编译的方式是 latex,而不能用 pdflatex。 建议:1)undefined control sequence 前面有行号,在源文件中找到该行,发现错误; 2)或者注释掉纳入图形的这段,看看是否还有问题。追问

你抄别人的吧,有意思吗?

温馨提示:答案为网友推荐,仅供参考
第1个回答  2020-03-02
两处 “\LaTex{}” 换成 “LaTex”
第2个回答  2018-03-30
题主已经知道答案了吗?求告知
第3个回答  2017-11-05

%Mode::“Tex:UTF:8”
\documentclass{article}

\author{yourname}
\title{My First \LaTeX article}
\date{\today}
\begin{document}
\maketitle
Wow! This is my First\LaTeX Article! Hello World! \end{document}

就可以了

相似回答