[Tex/LaTex] How to completely remove bibliography

bibliographiesbibtex

I am writing an internal company document in LaTeX (class report) and I do not want to have any citations, references or bibliography section. If I just omit the \bibliographystyle, the LaTeX compiler throws an error. And I just CANNOT find how to remove the bibliography section, google gives me bunch of links how to modify the bibliography, but not how to completely remove it. I have found a site which has a list of bibliography styles and "None" was not in the list. Your help would be very appreciated.

Best Answer

Presumably your document has \cite commands, which you want to disable. This is done in the following way:

\renewcommand{\cite}[2][]{}

Note that \cite may have two arguments, one being optional.

Then you can either comment out \bibliography and \bibliographystyle or redefine them as well

\renewcommand{\bibliography}[1]{}
\renewcommand{\bibliographystyle}[1]{}
Related Question