I'm trying to change the fontsize of the Bibliography title to a normal size but I can't do it.
I already try (without results):
\let\chapter=\chapter
\let\chapter=\section %works, but all the other section titles changes too and it's a mess
\renewcommand{\biblistfont}{
\normalfont
\normalsize}
% this last one show an error
\renewcommand{\bibsection}{%
\titleformat{\chapter} {\normalfont\tiny\filcenter\bfseries}{}{}{}
\titlespacing*{\chapter} {0pt}{60pt}{18pt}
\chapter*{ \bibname \markboth{\bibname}{\bibname}%
Also, this others commands to change the title name are not working (I want NEW TITLE instaed of New Title):
\renewcommand\bibname{New Title}
\renewcommand\refname{New Title}
\addto\captionsngerman{\renewcommand{\refname}{New Title}}
Here is a minimal example of my code:
\documentclass[letterpaper,oneside,11pt]{book}
\usepackage[spanish]{babel}
\usepackage[latin1]{inputenc}
\usepackage{natbib}
\usepackage{fancyhdr}
\pagestyle{fancy}
\begin{document}
\chapter{bla}
Bla bla bla
\section{bla bla}
Bla bla bla
\bibliographystyle{my style}
\bibliography{my bib}
\end{document}
I wanted in normal size, upper case, at the left, starting in a new page as default chapter, and I want it more closer to the top of the page too. But the most important thing is to reduce the size; the rest is secundary.
– Álvaro Mar 29 '12 at 20:18