I am working on my German PhD in law. I found out that the package csquotes is perfect for citations and quotes. The only problem I am facing is that I need two environments for "displayquote". One with guillemets as quotation marks and one without any quotation marks. The latter one is for citing law texts.
This is what I got so far:
Code: Select all
\documentclass[a4paper,10pt,fncontinued]{jurabook}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\usepackage{parskip}
\usepackage[normalem]{ulem}
\usepackage[babel,german=guillemets]{csquotes}
\newenvironment{zitat}[2]{\begin{small}\begin{displayquote}#1#2 }{\end{displayquote} \end{small}}
\newenvironment*{zitatc}{\displaycquote}{\enddisplaycquote}
\newenvironment{gzitat}[2]{\begin{small}\begin{displayquote}#1#2}{\end{displayquote}\end{small}}
\renewcommand{\mkbegdispquote}[2]{\openautoquote}
\renewcommand{\mkenddispquote}[2]{\closeautoquote#1#2}
\begin{document}
test
\end{document}
Can anyone help me on this? Thank you!!