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
\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}}
\setcounter{secnumdepth}{40}
\tableofcontents
\listoftables
\listoffigures
\clearpage
\pagenumbering{arabic}
\pagestyle{fancy}
\lhead{\footnotesize{...}}
\chead{}
\rhead{\thepage}
\cfoot{}
\renewcommand{\headrulewidth}{0,4pt}
\renewcommand{\footrulewidth}{0,4pt}
\parindent 0pt
What did we do wrong?
Thanks.