I am trying to define a new way to quote text. The result should be a single-spaced, rightragged, and indented (not only the first line but the whole paragraph) text. As far as the result is concerened, I am satisfied. Nevertheless, every call of the new command causes the engine to report the following error:
I have tried to understand where the error might be, but were unable to find out so far. Do you have an idea?LaTeX Error: Something's wrong -- perhaps a missing \item.
See the LaTeX manual ...
Code: Select all
\documentclass[a4paper,11pt,final,index=totoc,version=first,headsepline,oneside]{scrbook}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usepackage{csquotes}
\usepackage[dutch,ngerman,british]{babel}
\usepackage{setspace}
\begin{document}
\newcommand{\quotepre}{}\let\quotepre=\quote
\renewenvironment{quotepre}{\list{}{\rightmargin0pt\leftmargin4cm}\singlespacing\flushleft\small\item\relax}{\endlist}
\chapter{The UK and the Low Lands}
\begin{quotepre}
\textsl{\textbf{a lot of text}}
\end{quotepre}
\section{Introduction}
\begin{quotepre}
\textsl{God created the world, but the Dutch created Holland}
British saying
\end{quotepre}
\end{document}
Alexander