Latex:IEEE会議テンプレートにundefined control sequenceincludegraphicsの問題解決方法が表示されます.
1323 ワード
最近、IEEE主催の国際会議に参加し、公式サイトで提供されたLatexテンプレートを使用して論文を書き、EPS形式の画像を挿入すると、エラーを提示します:undefined control sequenceincludegraphics.説明Latexはincludegraphicsを認識できず、前のプログラムにusepackage{graphicx}を入れるのはやはりだめなのか、たまたま海外のウェブサイトで解決策を発見したので、ここでまとめます.
前のgraphic related packagesを見つけます
デフォルトではすべてコメントされているため、プログラムでは使用できません.
解決方法:上図の赤い部分を注釈を外して、実行すればいいです.
前のgraphic related packagesを見つけます
% *** GRAPHICS RELATED PACKAGES ***
%
\ifCLASSINFOpdf
\usepackage[pdftex]{graphicx}
% declare the path(s) where your graphic files are
\graphicspath{{../pdf/}{../jpeg/}}
% and their extensions so you won't have to specify these with
% every instance of \includegraphics
\DeclareGraphicsExtensions{.pdf,.jpeg,.png}
\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.
\usepackage[dvips]{graphicx}
% declare the path(s) where your graphic files are
\graphicspath{{../eps/}}
% and their extensions so you won't have to specify these with
% every instance of \includegraphics
% \DeclareGraphicsExtensions{.eps}
\fi
デフォルトではすべてコメントされているため、プログラムでは使用できません.
解決方法:上図の赤い部分を注釈を外して、実行すればいいです.