ich habe ein Problem beim Versuch Literaturverweise in mein Dokument zu integrieren. Die Fehlermeldung, die erscheint, ist dass die Zitate undefiniert sind.
Hier das Minimalbeispiel (von dem ich hoffe dass es brauchbar ist, entschuldigt bitte falls das nicht so ist):
\documentclass[english, fontsize=12pt, parskip=half,]{scrartcl} \usepackage[T1]{fontenc} \usepackage{kpfonts} \usepackage{microtype} \usepackage[utf8]{inputenc} \usepackage{babel} \begin{filecontents*}{beispieldaten.bib} @book{Gilbert.2006, abstract = {{\dq}Margaret Gilbert offers an incisive new approach to a classic problem of political philosophy: when and why should I do what the laws of my country tell me to do? A Theory of Political Obligation will be essential reading for political philosophers and theorists.{\dq}--Jacket.}, author = {Gilbert, Margaret}, year = {2006}, title = {{A} {T}heory of {P}olitical {O}bligation: {M}embership, {C}ommitment and the {B}onds of {S}ociety}, address = {Oxford and New York}, publisher = {Oxford University Press}, isbn = {978-0-19-927495-6} } @book{Horton.2010, author = {Horton, John}, year = {2010}, title = {{P}olitical {O}bligation}, address = {London}, edition = {2nd revised edition}, publisher = {Palgrave Macmillan} } \end{filecontents*} \begin{document} Das ist der Beispieltext mit einer { ~\cite{Gilbert.2006}} und einer anderen Referenz { ~\cite{Horton.2010}. \nocite{*} \bibliographystyle{decsci} \bibliography{beispieldaten} \end{document}