BibTeX, biblatex and biber ⇒ Generating a simple publication list with Bibtex?
Generating a simple publication list with Bibtex?
(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.
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Generating a simple publication list with Bibtex?
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}