Hey,
thanks for the quick answer. Unfortunately, it did not change anything.
It says now
- undefined option autostyle=true for package csquotes
- undefined option german=quotes for package csquotes
and in the text - undefined control sequence for \enquote{...}
When I open the style-file of csquotes, there is written, that there is a problem with the etoolbox. I already installed that with the package manager of Miktex 2.8
Code: Select all
%% Compatibility and requirements
\RequirePackage{etoolbox}
\RequirePackage{keyval}
\@ifpackagelater{etoolbox}{2008/06/28}
{}
{\PackageError{csquotes}
{Outdated 'etoolbox' package}
{Upgrade to etoolbox v1.7 (2008/06/28) or later.\MessageBreak
I found: '\csuse{ver@etoolbox.sty}'.\MessageBreak
This is a fatal error. I'm aborting now.}%
\endinput}
My code looks like this now:
Code: Select all
\documentclass[pdftex,a4paper,12pt]{scrreprt}
\usepackage[ngerman]{babel}
\usepackage[autostyle=true,german=quotes]{csquotes}
\usepackage[ansinew]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[round]{natbib}
\usepackage{textcomp}
\usepackage{array,tabularx}
\usepackage{pdflscape}
\begin{document}
This is a \enquote{test}.
\end{document}