修复了章节编号和章节标题之间的章节缩进

修复了章节编号和章节标题之间的章节缩进

我正在写我的学士论文,我的导师给了我一个 Word 模板。不过我喜欢 LaTeX,我会将 Word 模板转换为 LaTeX 模板。我通常都能做到这一点,但现在我有点不知所措。我尝试使用以下命令在章节标题和章节编号之间创建 1.5 厘米的缩进:

\usepackage{titlesec} \titlespacing*{\section}{0pt}{38pt}{10pt}
\titleformat{\section}{\normalfont\fontsize{14}{17}\bfseries}{\thesection}{1.5cm}{}
\titleformat{\subsection}{\normalfont\fontsize{12}{15}\bfseries}{\thesubsection}{1.5cm}{} 
\titleformat{\subsubsection}{\normalfont\fontsize{12}{15}\bfseries}{\thesubsubsection}{1.5cm}{}

这会在我的章节编号和章节标题之间创建一个 1.5 厘米的空间,因此它看起来像这样:

在此处输入图片描述

我想要复制这个单词设置:

在此处输入图片描述

因此它看起来像这样:

在此处输入图片描述

我已经阅读过titlesec 文档但没有找到任何对我有帮助的东西。如何才能实现节号和节标题之间的所需边距?

答案1

这是你想要的吗?

\documentclass{article}

\usepackage{titlesec}
\titlespacing*{\section}{0pt}{38pt}{10pt}
\titleformat{\section}{\sffamily\fontsize{14}{17}\bfseries}{\makebox[1.5cm][l]{\thesection}}{0pt}{}
\titleformat{\subsection}{\sffamily\fontsize{12}{15}\bfseries}{\makebox[1.5cm][l]{\thesubsection}}{0pt}{}
\titleformat{\subsubsection}{\sffamily\fontsize{12}{15}\bfseries}{\makebox[1.5cm][l]{\thesubsubsection}}{0pt}{}
\usepackage{lipsum}

\begin{document}

\setcounter{section}{1}\sffamily

\section{Background and theory}
\lipsum[2]

\subsection{B \& T subsection}
\lipsum[3]

\subsection{B \& T subsubsection. A very long title, spreading over two lines}
\lipsum[4]

\end{document} 

在此处输入图片描述

相关内容