Why am I getting this error? This is my preamble which I include in the main document. My document is EMPTY. This worked before, but then I had to do a system restore and reinstall miktex and texmaker. the bibliography program is now set to biber and miktex is 64 version.
% ================================Präambel==============================
\usepackage{etex}
% Kodierung, Sprache, Patches {{{
\usepackage[T1]{fontenc} % Ausgabekodierung; ermoeglicht Akzente und Umlaute
% sowie korrekte Silbentrennung.
\usepackage[utf8]{inputenc} % Erlaub die direkte Eingabe spezieller Zeichen.
% Utf8 muss die Eingabekodierung des Editors sein.
\usepackage[ngerman]{babel} % Deutsche Sprachanpassungen (z.B. Ueberschriften).
\usepackage{microtype} % Optimale Randausrichtung und Skalierung.
\usepackage[
autostyle,
]{csquotes} % Korrekte Anfuehrungszeichen in der Literaturliste.
%\usepackage{fixltx2e} % Patches fuer LaTeX2e. %not needed according to debugger
\usepackage{scrhack} % Verhindert Warnungen mit aelteren Paketen.
% }}}
% Schriftarten {{{
\usepackage{mathptmx} % Times. Package 'times.sty' is obsolete.
\usepackage[scaled=.92]{helvet}
\usepackage{lmodern}
% }}}
% Text durchstreichen mit \sout; Option 'normalem' verhindert,
% dass das Makro \emph{} umdefiniert wird.
\usepackage[normalem]{ulem}
% ok-zeichen usw
\usepackage{amsfonts}
% Biblatex {{{
\usepackage[
style=alphabetic,
backend=biber,
backref=true
]{biblatex} % Biblatex mit alphabetischem Style und biber.
\bibliography{resources/Literatur}% Dateiname der bib-Datei.
% }}}
% Dokument- und Texteinstellungen {{{
\usepackage[
a4paper,
margin=2.54cm,
marginparwidth=2.0cm,
footskip=1.0cm
]{geometry} % Ersetzt 'a4wide'.
\clubpenalty=10000 % Keine Einzelzeile am Beginn eines Paragraphen
% (Schusterjungen).
\widowpenalty=10000 % Keine Einzelzeile am Ende eines Paragraphen
\displaywidowpenalty=10000 % (Hurenkinder).
\usepackage{floatrow} % Zentriert alle Floats.
\usepackage{ifdraft} % Ermoeglicht \ifoptionfinal{true}{false}
\pagestyle{plain} % keine Kopfzeilen
% \sloppy % großzügige Formatierungsweise
\deffootnote{1em}{1em}{\thefootnotemark.\ } % Verbessert Layout mehrzeiliger Fußnoten
\makeatletter
\AtBeginDocument{%
\hypersetup{%
pdftitle = {\@title},
pdfauthor = \@author,
}
}
\makeatother
% }}}
% Weitere Pakete {{{
\usepackage{graphicx} % Einfuegen von Graphiken.
\usepackage{tabu} % Einfuegen von Tabellen.
\usepackage{multirow} % Tabellenzeilen zusammenfassen.
\usepackage{multicol} % Tabellenspalten zusammenfassen.
\usepackage{booktabs} % Schönere Tabellen (\toprule\midrule\bottomrule).
\usepackage[nocut]{thmbox} % Theorembox bspw. fuer Angreifermodell.
\usepackage{amsmath} % Erweiterte Handhabung mathematischer Formeln.
\usepackage{amssymb} % Erweiterte mathematische Symbole.
\usepackage{rotating}
\usepackage[
printonlyused
]{acronym} % Abkuerzungsverzeichnis.
\usepackage[
colorinlistoftodos,
textsize=tiny, % Notizen und TODOs - mit der todonotes.sty von
\ifoptionfinal{disable}{}% Benjamin Kellermann ist das Package "changebar"
]{todonotes} % bereits integriert.
\usepackage{listings} % Spezielle Umgebung für...
\lstset{ % ...Quelltextformatierung.
language=C,
breaklines=true,
breakatwhitespace=true,
frame=L,
captionpos=b,
xleftmargin=6ex,
tabsize=4,
numbers=left,
numberstyle=\ttfamily\footnotesize,
basicstyle=\ttfamily\footnotesize,
keywordstyle=\bfseries\color{green!50!black},
commentstyle=\itshape\color{magenta!90!black},
identifierstyle=\ttfamily,
stringstyle=\color{orange!90!black},
showstringspaces=false,
}
% }}}
documentclass:
\documentclass[
fontsize=12pt,
headings=small,
parskip=half, % Ersetzt manuelles setzten von parskip/parindent.
bibliography=totoc,
numbers=noenddot, % Entfernt den letzten Punkt der Kapitelnummern.
open=any, % Kapitel kann auf jeder Seite beginnen.
% final % Entfernt alle todonotes und den Entwurfstempel.
]{scrreprt}
% ================================Präambel==============================
\usepackage{resources/myPreamble}
% ==========================Dokumentinformationen=========================
\title{......}
\author{.......}
%\newcommand{\geburtsdatumundort}{(........)}
%\newcommand{\matrikelnr}{..........}
%\newcommand{\studiengang}{..........}
%\newcommand{\pfaddesarbeitsbereichs}{.......}
%\newcommand{\meineemail}{.......}
%\newcommand{\firstsupervisor}{.......}
%\newcommand{\secondsupervisor}{..........}
%\newcommand{\typeofdocument}{..........}
%
%% ===============PDF-Einstellungen inkl Dokument-Infos===================
%\usepackage{resources/myPDFConfig}
% ============================Tooltip-Script==============================
%\usepackage{resources/tooltipScript}
% ================================Dokument==============================
\begin{document}
\end{document}
! No room for a new \count . \ch@ck ...\else \errmessage {No room for a new #3} \fi l.485 ...finable\flrow@foot{\newinsert\flrow@foot}
– DBRN Nov 02 '15 at 20:43\usepackage{etex}-- normally, you shouldn't need that package with an up-to-date TeX distribution in almost any case. The culprits arefloatrowandetex, but I don't know why at the moment – Nov 02 '15 at 21:02hyperref is in its own .sty file, with other pdf settings
– DBRN Nov 02 '15 at 21:07hyperrefyour example wasn't compilable at all – Nov 02 '15 at 21:09\usepackage{hyperref}and removing\usepackage{etex}solved the problem on my end; the process of producing a minimal example would almost certainly have revealed this to you. – dgoodmaniii Nov 02 '15 at 21:47