Bibliografía encabezamiento alineación izquierda

Bibliografía encabezamiento alineación izquierda

Tengo el siguiente código, debido al cual el encabezado de bibliografía/referencias está alineado al centro, si \titleformat{\chapter}[display]se elimina, entonces está justificado a la izquierda pero todo el encabezado del capítulo también está justificado a la izquierda, quiero que el encabezado del capítulo esté alineado al centro con el encabezado de la bibliografía justificado a la izquierda.

\documentclass[12pt,a4paper]{report}
\usepackage{graphicx, subfigure}
\usepackage{amsmath}
%\renewcommand\bibname{References}
\usepackage{fancyhdr}
\makeatletter
\let\ps@plain\ps@fancy
\makeatother
\usepackage{titlesec}
\titleformat{\chapter}[display]
    {\normalfont\LARGE\bfseries\centering}{\chaptertitlename\ \thechapter}{5pt}{\LARGE}
\titlespacing*{\chapter}{0pt}{-30pt}{10pt}
\titleformat{\section}
    {\normalfont\normalsize\bfseries}{\thesection}{5pt}{\normalsize}
\titlespacing*{\section}{0pt}{2pt}{2pt}
\titleformat{\subsection}
    {\normalfont\normalsize\bfseries}{\thesubsection}{5pt}{\normalsize}
\titlespacing*{\subsection}{0pt}{0pt}{0pt}
\titleformat{\subsubsection}
    {\normalfont\normalsize\bfseries}{\thesubsubsection}{5pt}{\normalsize}
\titlespacing*{\subsubsection}{0pt}{0pt}{0pt}
\begin{document}
\include{chapter1}
\include{chapter2 }
\nocite{*}
\bibliographystyle{ieeetr}
\bibliography{xyz}
\addcontentsline{toc}{chapter}{References}
\end{document} 

Respuesta1

Puedes simplemente repetir la definición de \chapteromitir \centeringmust antes de la \bibliographyinstrucción, es decir:

...
\titleformat{\chapter}[display]
    {\normalfont\LARGE\bfseries}{\chaptertitlename\ \thechapter}{5pt}{\LARGE}
\bibliographystyle{ieeetr}
\bibliography{xyz}

Por cierto, agregar \addcontentsline{toc}{chapter}{References}después de la bibliografía produce un resultado incorrecto si la bibliografía tiene más de una página. Es mejor utilizar el tocbibindpaquete para insertar la bibliografía/referencias en el índice.

información relacionada