BibTeX, biblatex and biber(document) after each reference

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
vitalylerner
Posts: 2
Joined: Mon Apr 02, 2012 6:40 pm

(document) after each reference

Post by vitalylerner »

Hello
I use Lyx with OSA style files (osajnl.bst and osajnl2.sty)
The problem is that every(!) reference is followed by (document). Example:

Code: Select all

\bibliographystyle{osajnl}
\begin{thebibliography}{10}
\newcommand{\enquote}[1]{``#1''}

...
\bibitem{LohmannBrown1969}
B.~R. Brown and A.~W. Lohmann, \enquote{{Computer-generated Binary Holograms},}
  IBM Journal of Research and Development \textbf{13}, 160--168 (1969).

...
Result:

23. B. R. Brown and A. W. Lohmann, "Computer-generated Binary Holograms", IBM Journal of Research and Development 13, 160-168 (1969). (document)

How to get rid of the (document)?
Last edited by Stefan Kottwitz on Mon Apr 02, 2012 6:57 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.

Stefan Kottwitz
Site Admin
Posts: 10346
Joined: Mon Mar 10, 2008 9:44 pm

(document) after each reference

Post by Stefan Kottwitz »

Hi,

welcome to the board!

This looks like a back reference, i.e. like a reference to sections or to pages, for xample, but to "document".

This might be caused by a hyperref feature. Check hyperref options or set the options backref and pagebackref to false, such as by this code in your document preamble:

Code: Select all

\hypersetup{backref=false, pagebackref=false}
If this doesn't work, provide more information, such as document class, packages and settings, post a Infominimal working example, perhaps the .log file.

Stefan
LaTeX.org admin
vitalylerner
Posts: 2
Joined: Mon Apr 02, 2012 6:40 pm

Re: (document) after each reference

Post by vitalylerner »

Thank you so much!
Actually, there was more than one place with this backref property so everywhere I set it to false, and it worked!
Thanks again
Post Reply