General[SOLVED] Customize "thebibliography" heading style?

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
franzrogar
Posts: 4
Joined: Mon Dec 01, 2008 4:15 am

[SOLVED] Customize "thebibliography" heading style?

Post by franzrogar »

Hello,

I've searched over the net but was unable to find a solution to my dilema.

I've a document style (all chapters have font size \Large and an \hline under them) but I can't reproduce the same effect on "thebibliography" chapter (or section, or whatever it's).

So, instead of "default" look:
Bibliography

Entry 1
Entry 2
I want this:
Bibliography
-----------------------------

Entry 1
Entry 2

So, that's my question: is there any way to customize "thebibliography" chapter name?

Thank you very much :-)

EDIT:
Here's the tex UTF-8 file: book.tex
Last edited by franzrogar on Mon Dec 01, 2008 12:37 pm, edited 1 time in total.

Recommended reading 2024:

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

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

franzrogar
Posts: 4
Joined: Mon Dec 01, 2008 4:15 am

[SOLVED] Customize "thebibliography" heading style?

Post by franzrogar »

I've found the solution (after founding this post)

Code: Select all

\documentclass[...]{...}
\usepackage{natbib}
% Custom chapter heading def

\begin{document}

\renewcommand{\bibsection}{%
\chapter{\bibname}}

\bibliographystyle{plainnat}
\bibliography{bibliography_database}

\end{document}
Post Reply