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?
Page Layout ⇒ Omit citation in bibliography, but refer to it in the text?
-
- Posts: 29
- Joined: Thu Feb 19, 2009 3:23 pm
NEW: TikZ book now 40% off at Amazon.com for a short time.
Omit citation in bibliography, but refer to it in the text?
Hi,
process your document in the following way
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
make sure not to run BiBTeX this last time.
process your document in the following way
Code: Select all
(pdf)latex myfile
(pdf)latex myfile
bibtex myfile
Code: Select all
(pdf)latex myfile
1,1,2,3,5,8,13,21,34,55,89,144,233,...
- 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?
I wonder about the sense in that. Just write »Buddha (1998, cited in Frederick 2001)« in your text.
Best regards
Thorsten
Best regards
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 29
- Joined: Thu Feb 19, 2009 3:23 pm
Re: Omit citation in bibliography, but refer to it in the text?
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.