von Floyd » Mi 12. Nov 2014, 12:59
Ich muss für meine Arbeit einige Berichte des amerikanischen Kongresses zitieren. Leider habe ich dafür noch keine Beispiele gefunden, wie sich die erforderlichen Bestandteile mit Biblatex abbilden lassen.
Es gibt keine 100% akzeptierte Zitierweise, aber recht verbreitet erscheint mir dieses Format:
U.S. Senate Armed Services Committee. Bombing in Cambodia. United States Senate, 93rd Cong, 1st sess. Washington DC: US Government Printing Office, 1973.
Den Verlag brauche ich nicht, wenn ich den Stil footnote-dw nutze, aber das ist nicht das Problem. Wie trage ich am besten die Angaben zur Sitzung ein, also das "93rd Congress, 1st sess". Die zusätzlichen Angaben dort können ziemlich unübersichtlich werden, da dort im Titel oftmals alle möglichen Informationen versteckt sind.
Meine bisherige Lösung war, dafür das subtitle-Feld zu missbrauchen. So in etwa:
\documentclass[ngerman]{scrartcl}
\usepackage{filecontents}
\begin{filecontents}{\test.bib}
@book{executive_1973,
author = {U.S. Senate, Committee on the Judiciary},
title = {Executive privilege, secrecy in government, freedom of information.},
subtitle = {Hearings before the subcommittee on Intergovernmental Relations of the
Committee on Government Operations and the Subcommittees on
Separation of Powers and Administrative Practice and Procedure of
the Committee on the Judiciary United States Senate. 93rd
Congress, 1st Session, April 10,11,12; May 8,9,10 and 16 1973},
shorthand = {Ervin Report},
year = {1973},
address = {Washington D.C.},
keywords = {Report}
},
\end{filecontents}
\usepackage[latin9]{inputenc}
\usepackage{babel,csquotes}
\usepackage[Stylist=footnote-dw]{biblatex}
\addbibresource{\test.bib}
\begin{document}
Dies ist nur ein kleines Testdokument.\footcite[213]{executive_1973}
\nocite{*}
\printbibliography
\end{document}
Fällt da jemanden eine bessere Lösung ein?
Ich muss für meine Arbeit einige Berichte des amerikanischen Kongresses zitieren. Leider habe ich dafür noch keine Beispiele gefunden, wie sich die erforderlichen Bestandteile mit Biblatex abbilden lassen.
Es gibt keine 100% akzeptierte Zitierweise, aber recht verbreitet erscheint mir dieses Format:
[quote]
U.S. Senate Armed Services Committee. Bombing in Cambodia. United States Senate, 93rd Cong, 1st sess. Washington DC: US Government Printing Office, 1973.
[/quote]
Den Verlag brauche ich nicht, wenn ich den Stil footnote-dw nutze, aber das ist nicht das Problem. Wie trage ich am besten die Angaben zur Sitzung ein, also das "93rd Congress, 1st sess". Die zusätzlichen Angaben dort können ziemlich unübersichtlich werden, da dort im Titel oftmals alle möglichen Informationen versteckt sind.
Meine bisherige Lösung war, dafür das subtitle-Feld zu missbrauchen. So in etwa:
[code]
\documentclass[ngerman]{scrartcl}
\usepackage{filecontents}
\begin{filecontents}{\test.bib}
@book{executive_1973,
author = {U.S. Senate, Committee on the Judiciary},
title = {Executive privilege, secrecy in government, freedom of information.},
subtitle = {Hearings before the subcommittee on Intergovernmental Relations of the
Committee on Government Operations and the Subcommittees on
Separation of Powers and Administrative Practice and Procedure of
the Committee on the Judiciary United States Senate. 93rd
Congress, 1st Session, April 10,11,12; May 8,9,10 and 16 1973},
shorthand = {Ervin Report},
year = {1973},
address = {Washington D.C.},
keywords = {Report}
},
\end{filecontents}
\usepackage[latin9]{inputenc}
\usepackage{babel,csquotes}
\usepackage[Stylist=footnote-dw]{biblatex}
\addbibresource{\test.bib}
\begin{document}
Dies ist nur ein kleines Testdokument.\footcite[213]{executive_1973}
\nocite{*}
\printbibliography
\end{document}
[/code]
Fällt da jemanden eine bessere Lösung ein?