BibTeX, biblatex and biberGenerating a simple publication list with Bibtex?

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
byrond
Posts: 1
Joined: Mon Apr 25, 2011 7:48 am

Generating a simple publication list with Bibtex?

Post by byrond »

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.

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

Generating a simple publication list with Bibtex?

Post by kaiserkarl13 »

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:

Code: Select all

\makeatletter
\def\@biblabel#1{}
\makeatother
Repressing the "references" section heading requires something like this (the commented lines are the key), also inside \makeatletter...\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}
Post Reply