更改影响目录的章节样式

更改影响目录的章节样式

我正在改变我的章节的样式,反过来这会影响目录标题。

这是我的目录页:

在此处输入图片描述

这是我的章节页面:

在此处输入图片描述

这是代码片段:

\documentclass[12pt,a4paper,final]{report}
\usepackage{fancyhdr}
\usepackage{tikz}
\usetikzlibrary{calc}
\usepackage{eso-pic}

\usepackage{titlesec}
\titleformat{\section}[block]
{\fontsize{16}{18}\bfseries}
{\thesection}
{1em}
{}
\titleformat{\subsection}[block]
{\fontsize{14}{15}\bfseries}
{\thesubsection}
{1em}
{}

\usepackage{blindtext}
\newcommand{\hsp}{\hspace{0pt}}
\titleformat{\chapter}[hang]
{\flushright\fontseries{b}\fontsize{80}{100}\selectfont}{\fontseries{b}\fontsize{72}{84}\selectfont\textcolor{black}\thechapter\hsp}{0pt}
{.\\ \Huge\bfseries}
[]
\titlespacing*{\chapter}{0pt}{540pt}{20pt}

答案1

\titleformat更新\chapter调用时设置的设置方式。因此,如果您想延迟章节格式化,只需延迟调用\titleformat

% ...
\usepackage{titlesec}
% ...

\chapter{A chapter}% Default formatting for \chapter

% ...

\titleformat{\chapter}% ...

\chapter{Another chapter}% New/updated formatting for \chapter

% ...

相关内容