GeneralSome Text Before Bibliography

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
spiderchee84
Posts: 9
Joined: Sat Feb 14, 2009 11:47 pm

Some Text Before Bibliography

Post by spiderchee84 »

Dear all,

Is it possible to insert some text before the bibliography? I have browsed through the web and couldn't find any solution. This is a minimal example of what I want.

Code: Select all

\documentclass{report}

\begin{document}

\begin{thebibliography}{9}

I want to insert some text here.

\bibitem{1stRef} My first reference.

\end{thebibliography}

\end{document}
Thanks.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Stefan Kottwitz
Site Admin
Posts: 10345
Joined: Mon Mar 10, 2008 9:44 pm

Some Text Before Bibliography

Post by Stefan Kottwitz »

Hi, here's a quick way:

Code: Select all

\documentclass{report}
\begin{document}
\begin{thebibliography}{9}
\item[]\hspace{-\leftmargin}Text to be inserted
\bibitem{1stRef} My first reference.
\end{thebibliography}
\end{document}
Stefan
LaTeX.org admin
Post Reply