我有以下代码来自定义章节标题的外观:
\documentclass[12pt]{report}
\usepackage[english,french]{babel}
\usepackage{graphicx}
\usepackage{color}
\usepackage{titlesec}
\definecolor{gray75}{gray}{0.75}
\newcommand{\hsp}{\hspace{20pt}}
\titleformat{\chapter}[hang]{\Huge\bfseries}{\thechapter\hsp\textcolor{gray75}{|}\hsp}{0pt}{\Huge\bfseries}
\begin{document}
\chapter{Chapter}
\end{document}
在一台计算机上,自定义确实有效,但在另一台计算机上,它只显示“章节”,没有任何内容,甚至没有章节编号。
为什么我会有这些不同的行为?为什么我的第二台电脑上的代码不起作用?如果缺乏信息让您给出答案,我应该尝试调查什么?
如果有帮助的话,我在两台计算机上都使用 texmaker,并且使用“快速构建”功能。