我正在使用 fancyhdr 作为标题。
我想减少其中文本的缩进(标题 - 斜体文本):
现在就像图片中那样
但我希望两者的缩进量相同(页眉和正文 - \titleformat
= 0.15 厘米)。有什么建议吗?
这是我的代码:
\documentclass[12pt,a4paper,twoside]{article}
\usepackage[vmargin={25mm,25mm},hmargin={25mm,25mm},includefoot,headheight=15pt]{geometry}
\linespread{1.3}
\usepackage[utf8x]{inputenc}
\usepackage[main=english,portuguese]{babel}
\setlength{\parindent}{0.65cm} % indentation
\usepackage{indent first}
\usepackage{titlesec}
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyfoot{}
\fancyhead[LE,RO]{\thepage}
%sections format
\renewcommand\thesection{\arabic{section}.}
\renewcommand\thesubsection{\thesection\arabic{subsection}}
\titleformat{\section}
{\normalfont\Large\bfseries}{\thesection}{0.15cm}{}
\titleformat{\subsection}
{\normalfont\large\bfseries}{\hspace{0.65cm}\thesubsection.}{0.15cm}{}
\titleformat{\subsubsection}
{\normalfont\bfseries}{\hspace{1.65cm}\thesubsubsection.}{0.15cm}{}
%mainmatter
\begin{document}
\section{Introduction}
\end{document}
提前致谢