Man hat mehrere Möglichkeiten.
# 1. Auskommentieren
Einfach in der `.bib`-Datei bei allen Artikeln die Zeile mit `issue` auskommentieren. Lässt sich unter GNU/Linux auch automatisiert erledigen
<pre>
sed -e 's/^\(\s*\)issue/\1%issue/g' 's/^\\(\\s*\\)issue/\\1%issue/g' test.bib
</pre>
\documentclass{article}
\pagestyle{empty}
\begin{filecontents*}{\jobname.bib}
@article{PhysRevLett.50.1395,
title = {Anomalous Quantum Hall Effect: An Incompressible Quantum Fluid with Fractionally Charged Excitations},
author = {Laughlin, R. B.},
journal = {Phys. Rev. Lett.},
volume = {50},
%issue = {18},
pages = {1395--1398},
numpages = {0},
year = {1983},
month = {May},
publisher = {American Physical Society},
doi = {10.1103/PhysRevLett.50.1395},
url = {http://link.aps.org/doi/10.1103/PhysRevLett.50.1395}
}
\end{filecontents*}
\usepackage[style=apa,apamaxprtauth=99,backend=biber]{biblatex}
\addbibresource{\jobname.bib}
\begin{document}
\cite{PhysRevLett.50.1395}
\end{document}
# 2. biblatex-apa anpassen
Verantwortlich für das ausgeben der Issue nach dem Jahr ist das bibmacro `cite:plabelyear+extrayear`. Die Definition findet man in `apa.cbx`. Die kopiert man ins Dokument und tilgt alles was mit `issue` zu tun hat. Übrig bleibt
\documentclass{article}
\begin{filecontents*}{\jobname.bib}
@article{PhysRevLett.50.1395,
title = {Anomalous Quantum Hall Effect: An Incompressible Quantum Fluid with Fractionally Charged Excitations},
author = {Laughlin, R. B.},
journal = {Phys. Rev. Lett.},
volume = {50},
issue = {18},
pages = {1395--1398},
numpages = {0},
year = {1983},
month = {May},
publisher = {American Physical Society},
doi = {10.1103/PhysRevLett.50.1395},
url = {http://link.aps.org/doi/10.1103/PhysRevLett.50.1395}
}
\end{filecontents*}
\usepackage[style=apa,apamaxprtauth=99,backend=biber]{biblatex}
\renewbibmacro*{cite:plabelyear+extrayear}{%
\iffieldundef{labelyear}
{}
{\printtext[bibhyperref]{%
\printfield[noformat]{origyear}\setunit*{\addslash}%
\printfield{labelyear}\printfield{extrayear}}}}
\addbibresource{\jobname.bib}
\begin{document}
\cite{PhysRevLett.50.1395}
\end{document}
# 3. issue temporär löschen
Man kann beim Aufruf von `\cite` über sogenannte Hooks vorher Code ausführen. Zum Beispiel kann man das Feld `issue` dabei leeren `\AtEveryCitekey{\clearfield{issue}}`. Im Beispiel
\documentclass{article}
\begin{filecontents*}{\jobname.bib}
@article{PhysRevLett.50.1395,
title = {Anomalous Quantum Hall Effect: An Incompressible Quantum Fluid with Fractionally Charged Excitations},
author = {Laughlin, R. B.},
journal = {Phys. Rev. Lett.},
volume = {50},
issue = {18},
pages = {1395--1398},
numpages = {0},
year = {1983},
month = {May},
publisher = {American Physical Society},
doi = {10.1103/PhysRevLett.50.1395},
url = {http://link.aps.org/doi/10.1103/PhysRevLett.50.1395}
}
\end{filecontents*}
\usepackage[style=apa,apamaxprtauth=99,backend=biber]{biblatex}
\AtEveryCitekey{\clearfield{issue}}
\addbibresource{\jobname.bib}
\begin{document}
\cite{PhysRevLett.50.1395}
\end{document}
> ![alt text][1]
[1]: http://texwelt.de/wissen/upfiles/test_83.png