删除标题部分、小节和正文的缩进

删除标题部分、小节和正文的缩进

代码示例:

\usepackage{resume}
\begin{document}  % begin the content of the document


\roottitle{RootTitle}

\headedsection  % sets the header for the section and includes any subsections
  {HeadedSection}
  {%
  \headedsubsection
    {HeadedSubSection}
   
    {\bodytext{
    BodyText
    }}
}

\end{document}

外观:

在此处输入图片描述

我想删除每个部分的缩进:标题部分、小节和正文

答案1

您可以使用包titlesec。它提供了函数\titleformat{...},允许您格式化默认定义的不同标题。我为您提供了一个您可以修改的基本模板,我认为我所包含的注释将为您提供足够的信息供您编辑。

\documentclass{article}
\usepackage{titlesec}           % Change title format

\titleformat{\section}
{\bfseries} % format
{}          % label
{0.0cm}     % separation between label and body
{}          % code preceding title body
[]          % code following title body

\titleformat{\subsection}
{\bfseries} % format
{}          % label
{0.0cm}     % separation between label and body
{}          % code preceding title body
[]          % code following title body

\titleformat{\subsubsection}
{\bfseries} % format
{}          % label
{0.0cm}     % separation between label and body
{}          % code preceding title body
[]          % code following title body

\begin{document}  % begin the content of the document


\section{RootTitle}
\subsection{HeadedSection}
\subsubsection{HeadedSubSection}
body text

\end{document}

最终结果如下:

https://i.stack.imgur.com/MwomY.png

相关内容