如何将文本从节、小节和小小节标题移向空格(用红色标记)?(这不是我的风格,我应该用这种格式重现类似 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 中并且可以进行修补。
\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}