BibTeX, biblatex and biber ⇒ add text to bibliography
add text to bibliography
Is there a package to allow the addition of text to the bibliography? There requirement is to use bibtex in the normal way, but to be able to add a few lines of text between the title 'bibliography' and the first bibliography entry:
Bibliography
Some text...
[1] bibliography item 1
Bibliography
Some text...
[1] bibliography item 1
NEW: TikZ book now 40% off at Amazon.com for a short time.
add text to bibliography
Hi,
there's no need to use a particular package; all you have to do is to redefine the thebibliography environment. If you tell us which document class are you using, we can show you how to do that.
there's no need to use a particular package; all you have to do is to redefine the thebibliography environment. If you tell us which document class are you using, we can show you how to do that.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: add text to bibliography
The book class. However, the document is created to produce a main bibliography (which is already formatted correctly) and a second bibliography in the appendix. It is the second bibliography where the requirement is to add text
Re: add text to bibliography
And exactly how are you producing the two bibliographies? It would be really helpful if you post a skeleton of your document showing the packages and settings used to produce the bibliographies.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Re: add text to bibliography
Dont' worry, found the answer somewhere else http://groups.google.co.uk/group/latexu ... a462b5d3f5
add text to bibliography
Hi there,
I stumbled over this topic since I want to do exactly the same: Adding text between the title, and the first bibitem. I couldn't get out the information from the link that was posted here. Can someone please help me how I do that?
I use the AMSbook class. The document is split in three parts, where each one has it's own Bibliography. Here is a sketch on how I have done this for now:
I also want the title of the Bibliographies to be 'References and further reading'. But this I achieved already with renewing the
Would be glad if someone could help me with this!
EDIT: I also use the Hyperref package, and want that the bibliographies appear the right way, and are clickable, in the table of content. (As it is now this works.)
I stumbled over this topic since I want to do exactly the same: Adding text between the title, and the first bibitem. I couldn't get out the information from the link that was posted here. Can someone please help me how I do that?
I use the AMSbook class. The document is split in three parts, where each one has it's own Bibliography. Here is a sketch on how I have done this for now:
Code: Select all
\part{...}
.
.
\begin{thebibliography}
\part{...}
.
.
\begin{thebibliography}
\bibname
command.Would be glad if someone could help me with this!

EDIT: I also use the Hyperref package, and want that the bibliographies appear the right way, and are clickable, in the table of content. (As it is now this works.)
Last edited by cgnieder on Fri Sep 07, 2012 5:18 pm, edited 1 time in total.
add text to bibliography
I just found in the
So doesn't
natbib.sty
a command:
Code: Select all
\let\bibpreamble\@empty
\def\bibpreamble{Some text here}
do exactly what you want?
Last edited by cgnieder on Wed Oct 31, 2012 9:42 pm, edited 1 time in total.