I am a new user of TexMaker, using MikTex2.9 and TexMaker 4.4.1.
I have a question regarding the tex file I got from my coauthor.
When I run the tex file, it runs normally with no errors.
However, the eps file does not show up in the pdf output when I hit 'QuickBuild'.
Could you tell me where it went wrong?
I have been struggling for so long, and start to wish I had not left Scientific Workplace...
Code: Select all
\documentclass[12pt]{article}
\usepackage[display]{texpower}
\usepackage[landscape]{geometry}
\usepackage[scaled=0.92]{helvet} % set Helvetica as the sans-serif font
\renewcommand{\rmdefault}{ptm} % set Times as the default text font
\usepackage{fancybox}
\input seteps
\usepackage{longtable}
\usepackage{graphicx}
\begin{document}
> Here is the code to call the eps file. Of course, I save XXX.eps file in the same folder as the tex file.
\begin{center}
\seteps{0in}{8in}{3.5in}{XXX.eps}
\end{center}
> Finally, here is the 'seteps.tex'.
\def\seteps#1#2#3#4{\vskip#3\relax\noindent\hskip#1\relax
\special{eps:#4 x=#2, y=#3}}
\def\centereps#1#2#3{\vskip#2\relax\centerline{\hbox to#1{\special
{eps:#3 x=#1, y=#2}\hfil}}}
THANK YOU FOR YOUR HELP.
\end{document}