latex中control sequence
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了latex中control sequence相关的知识,希望对你有一定的参考价值。
\beginfigure
\includegraphics[width=5cm]nonlineartu.eps
\endfigure
运行时,总是出现undefined control sequence
请问是什么意思,怎么改?谢谢(已经在文件中写了宏包\usepackagegraphicx)
仅从你的这段代码看,是没有问题的,当然要求编译的方式是 latex,而不能用 pdflatex。
建议:1)undefined control sequence 前面有行号,在源文件中找到该行,发现错误; 2)或者注释掉纳入图形的这段,看看是否还有问题。本回答被提问者采纳
Latex:IEEE会议模板中出现undefined control sequence includegraphics问题解决方法
最近要参加一个IEEE主办的国际会议,使用中官网提供的Latex模板写论文,当插入EPS格式的图片时,提示错误:undefined control sequence \\includegraphics。 说明Latex无法识别\\includegraphics, 在前面的程序中加入\\usepackagegraphicx还是不行,偶然在一个国外网站发现解决方案,现总结于此:
找到前面的graphic related packages
% *** GRAPHICS RELATED PACKAGES ***
%
\\ifCLASSINFOpdf
<span style="color:#ff0000;">\\usepackage[pdftex]graphicx</span>
% declare the path(s) where your graphic files are
<span style="color:#ff0000;">\\graphicspath../pdf/../jpeg/</span>
% and their extensions so you won't have to specify these with
% every instance of \\includegraphics
<span style="color:#ff0000;">\\DeclareGraphicsExtensions.pdf,.jpeg,.png</span>
\\else
% or other class option (dvipsone, dvipdf, if not using dvips). graphicx
% will default to the driver specified in the system graphics.cfg if no
% driver is specified.
<span style="color:#ff0000;"> \\usepackage[dvips]graphicx</span>
% declare the path(s) where your graphic files are
<span style="color:#ff0000;">\\graphicspath../eps/</span>
% and their extensions so you won't have to specify these with
% every instance of \\includegraphics
% \\DeclareGraphicsExtensions.eps
\\fi
由于默认的情况是全部注释掉的,都无法在程序中使用。
解决方法:把上图中红色的部分取消掉注释,在运行就可以了。
以上是关于latex中control sequence的主要内容,如果未能解决你的问题,请参考以下文章
Latex:IEEE会议模板中出现undefined control sequence includegraphics问题解决方法
Latex Undefined control sequence. ...m
LATEX 使用问题 报错是undefined control sequence \documentclass[10pt, conference, compsocconf]IEEE