用 \input{tcilatex} 画图吗?

用 \input{tcilatex} 画图吗?

我有这些文件但图像没有出现,请问为什么?

我放入了文档“tcilatex.tex”和图形,但图像没有出现,只有它的名字,请问该怎么办。

\documentclass[a4paper,twoside,12pt]{article}
\usepackage{cite,amsmath,amssymb,amsthm,amsfonts}


\setcounter{MaxMatrixCols}{10}


\input{tcilatex.tex}
\begin{document}


\begin{equation}
\FRAME{itbpFU}{4.715in}{4.715in}{0in}{\Qcb{Figure 1: A}}{}{%
figure1.jpg}{\special{language "Scientific Word";type
"GRAPHIC";maintain-aspect-ratio TRUE;display "USEDEF";valid_file "F";width
4.715in;height 4.715in;depth 0in;original-width 6.25in;original-height
6.25in;cropleft "0";croptop "1";cropright "1";cropbottom "0";filename
'Figure1.jpg';file-properties "XNPEU";}}
\end{equation}

\end{document}

答案1

您可以要求提供此文件的人提供导出为便携式乳胶的版本,但如果问题仅仅在于图像,只需用标准乳胶标记替换以包含Figure1.jpg可能随文档附带的内容。

\documentclass{article}
\usepackage{graphicx}

\begin{document}

\begin{figure}
\includegraphics{Figure1}
\caption{The graph $G$ for $n=4$}\end{figure}
\end{document}

相关内容