user3560311
user3560311

Reputation: 85

Remove bibliography title and pagebreak from \bibliography

I would like to remove the title 'Bibliography' and the pagebreak which is put automatically using \bibliography{myPublications}. So far, I have found that with \renewcommand{\bibname}{} you can remove the title, and \renewcommand{\chapter}{} removes the pagebreak, but leaves an asterisk in the pdf. \renewcommand{\chapter*}{} gives the error: \chapter *undefined. Any workaround?

\section*{Publications}
\renewcommand{\bibname}{}
\renewcommand{\chapter}{}

\nocite{myPaper}

\bibliographystyle{unsrt} 
\bibliography{publications}

Upvotes: 4

Views: 10264

Answers (1)

Werner
Werner

Reputation: 15105

In this very particular case, you can try

\makeatletter
\renewcommand{\chapter}{\@gobbletwo}
\makeatother

which makes \chapter gobble two tokens following it, meaning the * and the title argument.

Upvotes: 5

Related Questions