von MarkGIP » Di 3. Apr 2012, 02:37
Kein Problem... Hier ist ein einfaches Beispiel... Es wäre toll, wenn parskip für das Literaturverzeichnis deaktiviert werden könnte.
1000 Dank
\documentclass[ngerman]{scrartcl}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@Book{test1,
author = {Goossens, Michel and Mittelbach,
Frank and Samarin, Alexander},
title = {The LaTeX Companion},
publisher = {Addison-Wesley},
location = {Reading, Mass.},
year = {1994},
}
@Book{test2,
author = {Michel and Mittelbach,
Frank and Samarin, Alexander},
title = {The LaTeX Companion},
publisher = {Addison-Wesley},
location = {Reading, Mass.},
year = {1994},
}
\end{filecontents}
\usepackage[latin9]{inputenc}
\usepackage{babel,csquotes}
\usepackage{parskip}
\usepackage[style=authoryear]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
Dies ist nur ein kleines Testdokument.\footcite{test1}
Dies ist nur ein kleines Testdokument.\footcite{test2}
\nocite{*}
\printbibliography
\end{document}
Kein Problem... Hier ist ein einfaches Beispiel... Es wäre toll, wenn parskip für das Literaturverzeichnis deaktiviert werden könnte.
1000 Dank
[code]\documentclass[ngerman]{scrartcl}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@Book{test1,
author = {Goossens, Michel and Mittelbach,
Frank and Samarin, Alexander},
title = {The LaTeX Companion},
publisher = {Addison-Wesley},
location = {Reading, Mass.},
year = {1994},
}
@Book{test2,
author = {Michel and Mittelbach,
Frank and Samarin, Alexander},
title = {The LaTeX Companion},
publisher = {Addison-Wesley},
location = {Reading, Mass.},
year = {1994},
}
\end{filecontents}
\usepackage[latin9]{inputenc}
\usepackage{babel,csquotes}
\usepackage{parskip}
\usepackage[style=authoryear]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
Dies ist nur ein kleines Testdokument.\footcite{test1}
Dies ist nur ein kleines Testdokument.\footcite{test2}
\nocite{*}
\printbibliography
\end{document}[/code]