BibTeX, biblatex and biberVery weird APA-Error

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
dashcon1
Posts: 4
Joined: Tue Feb 01, 2011 8:35 pm

Very weird APA-Error

Post by dashcon1 »

Hi,

I get the following output using APA-Style citations of the same author and year:

Code: Select all

[Author 2011a] Author: ... 2011a.
[Author 2011b] Author: ... 2011b.
How can I stop the a,b,... to show up behind the "real" year???

MWE:

Code: Select all

\documentclass[]{article}

\begin{document}
\title{Title}
\author{Author}
\date{Today}
\maketitle
Text\cite{1}
Text\cite{2}
\bibliography{Testbib} 
\bibliographystyle{apalike} 
\end{document}
bib:

Code: Select all

@book{1,
	Author = {Author},
	Title = {Test2},
	Year = {2011}}
@book{2,
	Author = {Author},
	Title = {Test1},
	Year = {2011}}
Thanks!
Last edited by dashcon1 on Sun Mar 20, 2011 8:08 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

dashcon1
Posts: 4
Joined: Tue Feb 01, 2011 8:35 pm

Very weird APA-Error

Post by dashcon1 »

got it myself...

in FUNCTION {format.org.or.pub}
there is a

Code: Select all

{ "year" bibinfo.check extra.label * }
just replace it with

Code: Select all

{ "year" bibinfo.check " "*}
and you're good! =)
Post Reply