Page LayoutOmit citation in bibliography, but refer to it in the text?

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
arwintcher
Posts: 29
Joined: Thu Feb 19, 2009 3:23 pm

Omit citation in bibliography, but refer to it in the text?

Post by arwintcher »

I'm using the Harvard reference style (an author-date variation). Under the rules of this style, if you read about something you wish to refer to, but haven't read the original text itself, you are supposed to leave the original text out of the bibliography. For instance, if I cite a translated quote from an older or out-of-print work, I would say something like "Buddha (1998, cited in Frederick 2001) claims that blah blah blah...". In the bibliography, Buddha 1998 should not be listed.

Is there any way to cite something in the text and tell LaTex to format the citation in the body of the work, but not put it in the bibliography?

Recommended reading 2024:

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

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

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Omit citation in bibliography, but refer to it in the text?

Post by gmedina »

Hi,

process your document in the following way

Code: Select all

(pdf)latex myfile
(pdf)latex myfile
bibtex myfile
Now, in an editor, open the file myfile.bbl (that resides in the same folder containing myfile.tex) and delete the entry corresponding to the item you don't want to appear in the bibliography. Save the changes to myfile.bbl and finally, run

Code: Select all

(pdf)latex myfile
make sure not to run BiBTeX this last time.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Re: Omit citation in bibliography, but refer to it in the text?

Post by localghost »

I wonder about the sense in that. Just write »Buddha (1998, cited in Frederick 2001)« in your text.


Best regards
Thorsten
arwintcher
Posts: 29
Joined: Thu Feb 19, 2009 3:23 pm

Re: Omit citation in bibliography, but refer to it in the text?

Post by arwintcher »

Yeah, it's just that having all those references highlighted in the text editor was helping me keep things organized in my head as I write. I'll probably just end up doing what localghost suggests.
Post Reply