BibTeX, biblatex and biberAdd Stuff to Labels in Bibliography

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
manojg
Posts: 24
Joined: Thu Apr 28, 2011 3:20 am

Add Stuff to Labels in Bibliography

Post by manojg »

Hi,

I use

Code: Select all

\begin{thebibliography}{99}
    \bibitem{Hill:2011}
    ............
\end{thebibliography}
for my bibliography, and in the text it appears as [1], [2].... I want to insert a word "Exhibit:" so that it appears as [Exhibit: 1], [Exhibit: 2].
How can I do this? Any suggestion will be helpful.

Thanks.

Recommended reading 2024:

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

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

kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

Add Stuff to Labels in Bibliography

Post by kaiserkarl13 »

Code: Select all

\makeatletter
\def\@biblabel#1{[Exhibit: #1]}
\makeatother
manojg
Posts: 24
Joined: Thu Apr 28, 2011 3:20 am

Re: Add Stuff to Labels in Bibliography

Post by manojg »

Thanks.
Post Reply