感谢 Bernard,我才得以实现这个造型:这正是我想要的。不过,我的 ToC 也受到了以下影响:,我想让我的 ToC 看起来正常,就像什么都没发生一样。我编写了 titleformat 以便从第一张图片中获得外观,但是有没有办法配置 ToC 外观以使其看起来正常?我的代码如下所示:
\titleformat{\section}[display]{ \scshape \bfseries }{}
{3ex}
{{\fontsize{149}{50}\selectfont \color{ForestGreen} \thesection}\quad \Huge}
\titlespacing*{\section}{0pt}{2in}{10ex}
谢谢,新年快乐!
答案1
该数字(titlesec 术语中的标签)属于 titleformat 的第三个参数:
\RequirePackage{fix-cm}
\documentclass{article}
\usepackage{titlesec}
\usepackage[dvipsnames]{xcolor}
\titleformat{\section}
{\scshape \bfseries}
{\fontsize{149}{50}\selectfont \color{ForestGreen} \thesection}
{20pt}
{\Huge}
%\titlespacing*{\section}{0pt}{2in}{10ex}
\begin{document}
\tableofcontents
\section{abc}
blblbl
\end{document}