for university I and a friend off mine have to do some typing.
We both use Latex to do that.
Editor is TeXnicCenter.
Mitex is installed.
OS W2k and WXP.
To save time I typed a part and my friend did the other one.
This went fine till we combined our work.
No errors showed up but still the PDF was corrupted.
So we had a close look and there it was:
"Fatal error occurerd, the output pdf file is not finished"
and
"Couldn't find input index file d:\... nor d:\..idx"
Our header is:
Code: Select all
Code, edit and compile here:
\documentclass[12pt,oneside]{article}\usepackage{ngerman,fancyhdr}\usepackage{a4}\usepackage{latexsym}\usepackage{amssymb}\usepackage{color}\usepackage{float}\title{\textbf{...}}\author{...}\date{...}%% this makes images possible both in latex and pdftex\newif\ifpdf\ifx\pdfoutput\undefined\pdffalse\else\pdfoutput=1\pdftrue\fi\ifpdf\usepackage[pdftex]{graphicx}\pdfinfo {/Title (...)/Author (...)}\else\usepackage{graphicx}\usepackage{float}\fi\begin{document}\pagenumbering{Roman}\maketitle\clearpage\renewcommand{\labelenumi}{\arabic{enumi}}\renewcommand{\labelenumii}{\arabic{enumi}.\arabic{enumii}}
What did we do wrong?
Thanks.