我用标题安全装饰部分和子部分的包装。但我不知道如何改变左边距或者缩进为此。看图片,绿线是我想要移动该部分的位置。
我用这个代码
\documentclass[a4paper, 14pt]{extreport}
\usepackage{titlesec}
\titleformat{\section}{}{\thesection}{14pt}{}
答案1
您可以通过以下方式获得所需的布局
\documentclass{report}
\usepackage{indentfirst}
\usepackage{titlesec}
\usepackage{lipsum}
\newlength{\normalparindent}
\AtBeginDocument{\setlength{\normalparindent}{\parindent}}
\titleformat{name=\section}[block]
{\LARGE}
{\hspace*{\normalparindent}\thesection}
{1em}
{}
\titleformat{name=\section,numberless}[block]
{\LARGE}
{}
{0pt}
{\hspace*{\normalparindent}}
\begin{document}
\section{Lorem Ipsum Dolor}
\lipsum[1]
\section*{Nam Dui Ligula}
\lipsum[2]
\end{document}
必须指定numberless
变体,否则未编号部分的缩进将不被遵守。调整大小(我使用了\LARGE
)以及编号和标题之间的间距(我使用了 1em)。
的定义和设置\normalparindent
是必要的,因为\parindent
是不是当 LaTeX 排版章节标题时可用(最好将其设置为零)。
笔记。我一点也不喜欢这样的布局。