Estou tendo o seguinte código, devido ao qual o título da bibliografia/referências está alinhado ao centro, se \titleformat{\chapter}[display]
for removido, será justificado à esquerda, mas todo o título do capítulo também será justificado à esquerda, quero que o título do capítulo seja alinhado ao centro com o título da bibliografia justificado à esquerda.
\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}
Responder1
Você pode simplesmente repetir a definição de \chapter
omitir \centering
must antes da \bibliography
instrução, ou seja:
...
\titleformat{\chapter}[display]
{\normalfont\LARGE\bfseries}{\chaptertitlename\ \thechapter}{5pt}{\LARGE}
\bibliographystyle{ieeetr}
\bibliography{xyz}
A propósito, adicionar \addcontentsline{toc}{chapter}{References}
depois da bibliografia produz um resultado errado se a bibliografia tiver mais de uma página. É melhor usar o tocbibind
pacote para inserir a bibliografia/referências no índice