I have a peculiar issue with an older Layout file of mine. Whenever I try to compile it (pdflatex), it never comes to a stop. And when I try to look at the log file, which increases continuously, the editor crashes.
I've tested it with TexStudio on Linux with TexLive 2014, and with TexStudio and Texniccenter with Miktex 2.9 on Windows 7.
A friend of mine tried to run it too, he got an error after a little while saying his "disk was full".
This is a part of the code, but it already shows that strange behaviour. I have tried commenting out line-by-line, or see which if two packages have compatibility issues... but I was unable to pinpoint the problem.
Code: Select all
\documentclass[a4paper, 11pt]{scrartcl} %format, scrartcl: european standard
\usepackage[margin=0.8 in]{geometry}
\usepackage[T1]{fontenc} %Encoding
\usepackage[utf8]{inputenc} %utf8 encoding (ö, ä, ü etc.)
\usepackage[ngermanb]{babel} %spelling
\addtokomafont{sectioning}{\rmfamily} %Section titles are in nice writing as well
\usepackage{array}
\usepackage{multirow} % \multirow{#of rows}{alignment}{content}
\usepackage{enumerate}
\usepackage{multicol} % \begin{multicols*}{#columns}... \end{multicols*}
\usepackage{booktabs} % midrule, bottomrule, toprule
\usepackage{tabularx} % Für Ausrichtung von mehrzeiligem text in Tabellen
\usepackage[usenames]{color}
\newcolumntype{L}[1]{>{\raggedright\arraybackslash}p{#1}}(I don't want to be the cause of any loss of data or so)
\newcolumntype{C}[1]{>{\centering\arraybackslash}p{#1}}
\newcolumntype{R}[1]{>{\raggedleft\arraybackslash}p{#1}}
%Bsp: \begin{tabular}{L{2cm}|R{3.5cm}}
%Mathe
\usepackage{mathrsfs,amssymb,amsmath,wasysym} % Zusatzzeichen, math, \diameter
%Figures
\usepackage{graphicx} %to add graphics
\usepackage[absolute]{textpos} %to position pictures at a specific place
%
% Subfigures
\usepackage{caption}
%\usepackage[margin=10pt,font=small,labelfont=bf]{caption} %Smaller font under figures
%\usepackage{subcaption}
% Handling tikz
\usepackage{tikz,pgfplots}
\pgfplotsset{compat=newest}
\pgfplotsset{plot coordinates/math parser=false}
%Code
\usepackage{listings}
\usepackage{bigfoot} % To use verbatim in footnotes
%\usepackage{booktabs}
%Titel
\title{Titel}
\subtitle{Untertitel}
\author{Author}
\date{\today}
\begin{document}
\maketitle
\tableofcontents
\newpage
\end{document}
Thanks!