答案1
如果您想确保标题对齐,您可以在固定宽度的框中设置数字。
如果您还有具有合适定义的子部分,则可能需要更大的宽度\titleformat
。
\documentclass{book}
\usepackage{titlesec}
\titleformat{\chapter}
{\normalfont\bfseries\Huge}
{\makebox[40pt][l]{\thechapter}}
{0pt}
{}
\titlespacing*{\chapter}{0pt}{0pt}{40pt}
\titleformat{\section}
{\normalfont\bfseries\Large}
{\makebox[40pt][l]{\thesection}}
{0pt}
{}
\begin{document}
\chapter{Literature review}
\section{Introduction}
\end{document}
答案2
正如@Bernard 在评论中所建议的,将该行更改为
\titleformat{\chapter}{\normalfont\bfseries\Huge}{\thechapter}{1em}{\Huge}
对齐单词并解决问题。