Quote:
Originally Posted by emath
|
Looks like latex isn't generating the dvi file, but it's not raising any error at that stage so the error appears in a later phase (dvips and convert). That's strange since the latex compilation phase didn't have any change in this last update. I assume it was working for you earlier, which makes it even more strange.
To troubleshot this, let's try to reproduce manually all the commands that the mod issues.
Please, do something like this:
1. Log in ssh to your server
2. cd to the vlatex/temp directory
3. Make sure that the directory is almost empty (there should be only a index.htm file; if some temporary file wasn't properly deleted it should be safe to delete it now).
4. Create a test.tex file with the following contents (for instance, do it with nano test.tex)
Code:
\documentclass[10pt]{article}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\let\dst=\displaystyle
\newcommand{\dd}{\mathrm{d}}
\newcommand{\ee}{\mathrm{e}}
\newcommand{\eee}[1]{\mathrm{e}^{#1}}\pagestyle{empty}
\newlength{\formuladepth}
\newsavebox{\formulabox}
\begin{lrbox}{\formulabox}
$E = m c^2$
\end{lrbox}
\settodepth{\formuladepth}{\usebox{\formulabox}}
\newwrite\opdepth
\immediate\openout\opdepth=\jobname.depth
\immediate\write\opdepth{\the\formuladepth}
\closeout\opdepth
\begin{document}
\usebox{\formulabox}
\end{document}
5. Compile the test file with
Code:
latex --interaction=nonstopmode test.tex
6. Please, report back tell me any error that appears after doing that. Report back also the list of files in the directory after that operation (that is, copy into the forum the result of "ls -l" after running step 5).
Feel free to send me the results via PM if you don't want to post that information to the wild