我正在改变我的章节的样式,反过来这会影响目录标题。
这是我的目录页:
这是我的章节页面:
这是代码片段:
\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
% ...