I'm new to this and i'm having some trouble.
i just installed miktex and texniccenter (newest versions) and i want to write my thesis in tex. [im running win7 64bit with acrobat pro 9]
i'm using matlab and found a tool to save screens to .eps & .tex file (matlabfrag.m - http://www.mathworks.de/matlabcentral/f ... ange/21286 ) and i am now trying to insert them in the document.
the documentation of matlabfrag tells me two ways to insert:
1)
- \usepackage{graphicx,psfrag}
\input{FileName.tex}
\includegraphics{FileName.eps}
- \usepackage{pstool}
\psfragfig{FileName}
the first version gives this error:
removed, see log file
and the second version gives 5 errors including the note: ... -shell -escape not activated:
removed, see log file
i didnt found any option to activate this shell escape stuff ;/
so please help me

maybe you can help me with a better solution for my needs, ... some other way?
my code is visible on the screens but ill post it here again:
Code: Select all
%
% Beispiel 1
%
\documentclass[pdftex,a4paper]{scrartcl}
\usepackage{ngerman}
%\usepackage{graphicx,psfrag}
\usepackage{pstool}
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\title{Erstes Beispiel}
\author{Dein Name}
\begin{document}
\maketitle
\tableofcontents
\section{Unser erstes Beispiel} Dies ist das erste Beispieldokument.
%\input{FileName.tex}
%\includegraphics{FileName.eps}
\psfragfig{FileName.eps}
\end{document}
%
% EOF
%
thank you in advance!
K