Unfortunately your post contains only very few useful information. From the
\refname command I guess that you are using the
article class (or one that is based on it). For your purpose you have to modify the
thebibliography environment which is also used when creating the reference list with BibTeX. To do so, add the lines below to your preamble.
Code: Select all
\makeatletter
\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}
\makeatother
This code block is taken from the original »article.cls« file. The commented lines become superfluous in this case.
Best regards
Thorsten