I want to generate a simple publication list (for a CV) using Bibtex and I haven't been able to do the following two necessary things.
(1) Suppress the "References" section heading that is automatically generated.
(2) Suppress the citations that appear at the beginning of each listed reference in the bibliography i.e. "[1]", "[Dom, 2003b]" etc.
I did manage to find the first topic addressed here (http://www.latex-community.org/forum/vi ... 50&t=11617), but I'm hoping to find something more straightforward.
I haven't found anything on the second topic however.
BibTeX, biblatex and biber ⇒ Generating a simple publication list with Bibtex?
NEW: TikZ book now 40% off at Amazon.com for a short time.

-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Generating a simple publication list with Bibtex?
I'm not sure how robust this is, but it seemed to do something similar to what I think you want when I tried it just now:
Repressing the "references" section heading requires something like this (the commented lines are the key), also inside \makeatletter...\makeatother:
Code: Select all
\makeatletter
\def\@biblabel#1{}
\makeatother
Code: Select all
\renewenvironment{thebibliography}[1]
{%\section*{\refname}%
%\@mkboth{\MakeUppercase\refname}{\MakeUppercase\refname}%
\list{\@biblabel{\@arabic\c@enumiv}}%
{\settowidth\labelwidth{\@biblabel{#1}}%
\leftmargin\labelwidth
% \advance\leftmargin\labelsep
%\@openbib@code
\usecounter{enumiv}%
\let\p@enumiv\@empty
\renewcommand\theenumiv{\@arabic\c@enumiv}}%
\sloppy
\clubpenalty4000
\@clubpenalty \clubpenalty
\widowpenalty4000%
\sfcode`\.\@m}
{\def\@noitemerr
{\@latex@warning{Empty `thebibliography' environment}}%
\endlist}