ich verzweifle gerade an folgenden Problemen:
1. ich möchte gerne, dass im Text der Verweis auf die Literatur wie folgt aussieht, sofern ein oder zwei Autoren das Paper schreiben:
Acemoglu und Robinson (2012)
wenn es drei Autoren oder mehr sind:
Acemoglu et al. (2008)
Das Latex nur das Jahr in Klammern setzt machen ich mit \textcite
Mein Problem: Es kommt immer nur EIN Autor... und bei dem Acemoglu Beispiel steht auch immer noch der Anfangsbuchstabe vom Vornamen, was nicht sein sollte...
2. mein zweites Problem ist, dass im Literaturverzeichnis der Abstand zwischen den Quellen zu klein ist. Ich stelle mir das wie folgt vor: eine Quelle mit einfachem Zeilenabstand, dann ein 1,5facher Zeilenabstand und dann die nächste Quelle, also in etwa so:
xxxxxxx
xxxxxx
yyyyyyyyy
yyyyyyy
zzzzzzz
zzzzzzz
Hier einmal mein Latex Code:
%Latexgrundgerüst \documentclass{scrreprt} \KOMAoptions{titlepage, parskip=half, fontsize=12, DIV=12, paper=a4,fontsize=12pt,headsepline, headings=small} \setkomafont{caption}{\footnotesize} \setkomafont{captionlabel}{} \usepackage[left=5cm,right=1cm,top=2cm,bottom=2cm]{geometry} \usepackage{setspace} \pagestyle{headings} \usepackage[utf8]{inputenc} \usepackage[T1]{fontenc} \usepackage{lmodern} \usepackage[english,ngerman]{babel} \usepackage{lipsum} \usepackage[german=quotes]{csquotes} \MakeAutoQuote {¡}{“} \usepackage{nicefrac} \usepackage{amsmath} \usepackage{booktabs} \usepackage {graphicx} \usepackage{tikz} \usepackage{float} \usepackage[bibencoding=utf8,backend=bibtex,style=authoryear,natbib=true,maxcitenames=2]{biblatex} \bibliography{Bachelor} \setkomafont{disposition}{\normalcolor\bfseries} \usepackage{hyperref} %am Ende aller Packages laden, stellt anklickbare Links im pdf dokument zur Verfügung. \hypersetup{colorlinks=true, urlcolor=blue, linkcolor=blue, citecolor=blue} %Formatierung des Links \begin{document} \textcite{Acemoglu2001}\\ \citep{Ostrom1986}\\ \textcite{Acemoglu2012} \printbibliography \end{document}
@ARTICLE{Ostrom1986, author = {Elinor Ostrom}, title = {An agenda for the study of institutions}, journaltitle = {Public Choice,}, year = {1986}, volume = {48}, pages = {3-25}, owner = {dominikevert}, timestamp = {2013.08.30} @BOOK{Acemoglu2012, author = {Acemoglu D., Robinson J.}, title = {Why Nations Fail: The Origins of Power, Prosperity, and Poverty}, year = {2012}, publisher = {Crown Publishing Group}, location = {New York}, owner = {dominikevert}, timestamp = {2013.09.26} @ARTICLE{Acemoglu2001, author = {Acemoglu D., Johnson S., Robinson J.}, title = {The Colonial Origins of Comparative Development: An Empirical Investigation}, journaltitle = {American Economic Review,}, year = {2001}, volume = {91(5)}, pages = {1369-1401}, owner = {dominikevert}, timestamp = {2013.09.26}
LG
Dome