BibTeX, biblatex and bibertwo issues with bibtex

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
drowsy
Posts: 44
Joined: Tue Dec 23, 2008 6:00 am

two issues with bibtex

Post by drowsy »

Hi,

I am having two issues with bibtex that I cannot fix yet
(apart from manually editing the .bbl file, which is ugly).

1) For some reason, bibtex puts a space after "et al. ".
For example, (Devil et al. , 1666), which should be
(Devil et al., 1666)
(no space after at al).



2) The second problem is
when I use "unpublished", for example,

Code: Select all

@unpublished{Putnam,
	author = "Ian F. Putnam",
	title  = "Orbit equivalence of Cantor minimal systems: a survey and a new proof",
	note   = "\url{http://www.math.uvic.ca/faculty/putnam/r/0803_main.pdf}",
        year   = "preprint"
the title ends up in italics in bibliography.
How can I make it normal?

I use bibtex as follows:

Code: Select all

\usepackage[round]{natbib}
...
\bibliographystyle{authordate1}
\bibliography{bibliography}
Does anybody know how to fix these?

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

two issues with bibtex

Post by gmedina »

Hi,

the idea is to do some minor modifications to the .bst style file. Unload authordate1.bst from here and save it as, for example, myauthordate1.bst in the same folder that contains your .tex;

Search myauthordate1.bst for this bit of code:

Code: Select all

FUNCTION {unpublished}
{ output.bibitem
  format.authors "author" output.check
  author format.key output
  output.year.month.check
  new.block
  format.btitle "title" output.check
  new.block
  note "note" output.check
  fin.entry
}
and replace this line

Code: Select all

  format.btitle "title" output.check
with

Code: Select all

  format.title "title" output.check
(only a "b" has to be deleted). And save the change.

In your .tex file, of course, now you have to use

Code: Select all

\bibliographystyle{myauthordate1}
This will solve problem 2). Now, I was unable to reproduce problem 1) with the mentioned .bst file. If this problem persists after applying my suggestion, please provide a minimal working example showing the undesired behaviour.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
drowsy
Posts: 44
Joined: Tue Dec 23, 2008 6:00 am

Re: two issues with bibtex

Post by drowsy »

gmedina, thank you!

This solved both problems.
Post Reply