Biblatex APA Style NICHT in Kapitälchen
Hallo zusammen,
ich wurde im goLatex-Forum hierhin verwiesen, da sich hier ein paar Biblatex-Profis rumtreiben sollen. :)
Ich habe folgendes Problem mit meiner Bibliography: Ich schreibe meine Bachelorarbeit in Englisch und muss den APA Zitierstil verwenden. Ich benutze TeXniCenter und Miktex2.9. Soweit habe ich das Grobe auch hinbekommen mit Hilfe von
\usepackage[
style=apa,
%%--- Backend --- --- ---
backend=biber, % (bibtex, biber)
% bibwarn=true, %
texencoding=auto, % auto-detect the input encoding
bibencoding=auto, % (auto (equal to tex), <encoding>)
]{biblatex}
\DeclareLanguageMapping{american}{american-apa}
Läuft auch alles soweit durch und das Literaturverzeichnis wird eingebunden.
Jetzt habe ich allerdings das Problem, dass die Autoren immer in Kapitälchen geschrieben werden, was nicht so sein soll.
Hier der benötigte `.bib` Eintrag (exportiert von Citavi)
@book{Johnson.2011,
author = {Johnson, Gerry and Scholes, Kevan and Whittington, Richard},
year = {2011},
title = {Exploring corporate strategy: [text {\&} cases]},
address = {Harlow},
edition = {9. ed},
publisher = {Financial Times Prentice Hall},
isbn = {9780273737025}
}
Im text sieht es dann folgendermaßen aus (mit Kapitälchen, small caps):
> irgendein Text (JOHNSON, SCHOLES, and WHITTINGTON, 2011)
Der Eintrag im Literaturverzeichnis dann so (auch mit Kapitälchen):
> JOHNSON, G., SCHOLES, K., & WHITTINGTON, R. (2011): Exploring corporate
strategy: [text & cases] (9. ed). Harlow: Financial Times Prentice Hall.
Wie bzw. wo kann ich diesen Style bearbeiten? Hab mich schon durch diverse Foren gewühlt, aber bin leider nicht fündig geworden oder einfach zu blöd! Gibt es evtl. einen `\renewcommand` Befehl, der das alles ein wenig abkürzt?
Vielen Dank und schonmal schöne Weihnachten!Hier das Minimalbeispiel:
<code>
<code>
\documentclass[%
%draft=true, % draft mode (no images, layout errors shown)
draft=false, % final mode
%%% --- Paper Settings ---
paper=a4,% [Todo: add alternatives]
paper=portrait, % landscape
pagesize=auto, % driver
%%% --- Base Font Size ---
fontsize=12pt,%
%%% --- Koma Script Version ---
version=last, %
%%% --- Global Package Options ---
english, % language (passed to babel and other packages)
% (ngerman, english, french, ...)
]{scrbook} % Classes: scrartcl, scrreprt, scrbook
\usepackage[english, american]{babel}
\usepackage[
style=apa,
%%--- Backend --- --- ---
backend=biber, % (bibtex, biber)
% bibwarn=true, %
texencoding=auto, % auto-detect the input encoding
bibencoding=auto, % (auto (equal to tex), <encoding>)
]{biblatex}
\DeclareLanguageMapping{american}{american-apa}
\IfPackageLoaded{biblatex}{%
\ExecuteBibliographyOptions{%
%--- Sorting --- --- ---
sorting=nty, % Sort by name, title, year.
% other options:
% nty Sort by name, title, year.
% nyt Sort by name, year, title.
% nyvt Sort by name, year, volume, title.
% anyt Sort by alphabetic label, name, year, title.
% anyvt Sort by alphabetic label, name, year, volume, title.
% ynt Sort by year, name, title.
% ydnt Sort by year (descending), name, title.
% none Do not sort at all. All entries are processed in citation order.
% debug Sort by entry key. This is intended for debugging only.
%
sortcase=true,
sortcites=true, % do/do not sort citations according to bib
%--- Dates --- --- ---
date=comp, % (short, long, terse, comp, iso8601)
% origdate=
% eventdate=
% urldate=
% alldates=
datezeros=true, %
dateabbrev=true, %
%--- General Options --- --- ---
% maxnames=1,
% minnames=1,
maxbibnames=15,%
maxcitenames=1,%
uniquename=true,% (biber only)
maxalphanames=1,% (biber only)
% autocite= % (plain, inline, footnote, superscript)
autopunct=true,
language=auto,
babel=none, % (none, hyphen, other, other*)
block=none, % (none, space, par, nbpar, ragged)
notetype=foot+end, % (foot+end, footonly, endonly)
hyperref=true, % (true, false, auto)
backref=true,
backrefstyle=three, % (none, three, two, two+, three+, all+)
backrefsetstyle=setonly, %
indexing=false, %
% options:
% true Enable indexing globally.
% false Disable indexing globally.
% cite Enable indexing in citations only.
% bib Enable indexing in the bibliography only.
refsection=none, % (part, chapter, section, subsection)
refsegment=none, % (none, part, chapter, section, subsection)
abbreviate=true, % (true, false)
defernumbers=false, %
punctfont=false, %
arxiv=abs, % (ps, pdf, format)
%--- Style Options --- --- ---
% The following options are provided by the standard styles
isbn=false,%
url=false,%
doi=false,%
eprint=false,%
}%
}% \IfPackageLoaded{biblatex}
\begin{document}
\mainmatter
...planned innovations can be categorized and prioritized so that companies can focus on developing and improving the important issues in their portfolio (\cite{Johnson.2011}).
\IfPackageLoaded{biblatex}{
\cleardoublepage
\IfDefined{phantomsection}{\phantomsection}\label{sec:bibliography}
\printbibliography[%
heading=bibintoc, % (bibintoc, bibnumbered)
]
</code>