在章节、小节和小子节的长标题内缩进如下:删除([sub]sub)章节编号下方的空格并使文本适合下方

在章节、小节和小子节的长标题内缩进如下:删除([sub]sub)章节编号下方的空格并使文本适合下方

如何将文本从节、小节和小小节标题移向空格(用红色标记)?(这不是我的风格,我应该用这种格式重现类似 Word 的文档,但我不想使用 Word)。MWE 如下。

在此处输入图片描述

\documentclass[a4paper]{article}
 
\begin{document}
    \section{La increíble y triste historia de la cándida Eréndira y de su abuela desalmada}
 (...)
    
    \subsection{Die unglaubliche und traurige Geschichte 
    von der einfältigen Eréndira und ihrer herzlosen Großmutter}
     (...)
    \subsubsection{La incredibile e triste storia della candida Eréndira e della sua nonna snaturata}
     (...)
\end{document}

答案1

该格式在某种程度上内置于 LaTeX 中并且可以进行修补。

A

\documentclass[a4paper]{article}    

\usepackage{showframe} % ONLY to show the margins

%*************************************** added <<<<<<<<<<<<<<<
\usepackage{etoolbox} % needed for the patch    
\makeatletter
\patchcmd{\@sect}
{\@hangfrom{\hskip #3\relax\@svsec}}
{\@svsec}
{}{}
\makeatother
%***************************************

\begin{document}
    \section{La increíble y triste historia de la cándida Eréndira y de su abuela desalmada}
    (...)
    
    \subsection{Die unglaubliche und traurige Geschichte 
        von der einfältigen Eréndira und ihrer herzlosen Großmutter}
    (...)
    \subsubsection{La incredibile e triste storia della candida Eréndira e della sua nonna snaturata}
    (...)
\end{document}

相关内容