我想删除单词 chapter ,当我\chapter{title}
添加命令 1 时,但我不再有编号,我添加了命令 2,但当我这样做时,\ chapter*{Intro}
他把我0. 简介
主目录
---
documentclass: report
output:
pdf_document:
includes:
in_header: preambule.tex
word_document: default
subparagraph: yes
---
\tableofcontents
\chapter*{Intro}
\addcontentsline{toc}{chapter}{Intro}
\chapter{Title}
序言
\usepackage{titlesec}
%\titleformat{\chapter}[display]{\normalfont\bfseries}{}{0pt}{\Huge} **command 1**
\titleformat{\chapter}[display]{\normalfont\bfseries}{}{0pt}{\Huge\thechapter.\ } **command 2**
答案1
只需输入说明
\let\chaptername\relax
在序言中。\renewcommand\chaptername{}
也有效。
完整的 MWE (最小工作示例):
\documentclass{report}
\let\chaptername\relax
\begin{document}
\tableofcontents
\chapter*{Intro}
\addcontentsline{toc}{chapter}{Intro}
bla bla bla
\chapter{Title}
more bla bla bla
\end{document}