参考文献の見出しの左揃え

参考文献の見出しの左揃え

次のコードがあります。これにより、参考文献/参照の見出しが中央揃えになります。\titleformat{\chapter}[display]削除すると左揃えになりますが、すべての章の見出しも左揃えになります。章の見出しを中央揃えにして、参考文献の見出しを左揃えにしたいです。

\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} 

答え1

命令の前に mustを\chapter省略する定義を繰り返すだけです。つまり、次のようになります。\centering\bibliography

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

ちなみに、 \addcontentsline{toc}{chapter}{References}参考文献が1ページを超える場合、参考文献の後に追加すると間違った結果が生成されます。パッケージを使用してtocbibind目次に参考文献/参照を挿入することをお勧めします。

関連情報