참고문헌 제목 왼쪽 정렬

참고문헌 제목 왼쪽 정렬

참고문헌/참조 제목이 가운데 정렬되는 다음 코드가 있습니다. \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}문헌 뒤에 추가하면 참고문헌이 한 페이지보다 길 경우 잘못된 결과가 발생합니다. tocbibind목차에 참고문헌/참고문헌을 삽입하려면 패키지를 사용하는 것이 더 좋습니다.

관련 정보