格式化 Latex 章节和目录

格式化 Latex 章节和目录

我正在尝试将章节标题设为 在此处输入图片描述

目录包含标题、日期和页码。

到目前为止,我只安排了以下日期vspace

\documentclass[10pt]{book}

\usepackage[explicit,compact]{titlesec}
\titleformat{\chapter}[block]
{\bfseries\huge}{\filright\huge Experiment \thechapter.}{1ex}{\huge\filright #1}
\begin{document}
\tableofcontents

\chapter{My title with date}
\vspace{-1.5in}\hfill Date: 05/10/2023\vspace{1in}
\section*{Aim:}
Hello

\end{document}

只是目录没有管理。

我也尝试过:

\documentclass[10pt]{book}

\usepackage[explicit,compact]{titlesec}
\titleformat{\chapter}[block]
{\normalfont}{Date: #1 \\\filright\huge Experiment \thechapter.}{1ex}{\huge\filright #2}
\begin{document}
\tableofcontents

\chapter{05/10/23}{My title with date}
\section*{Aim:}
Hello

\end{document}

这也不起作用。

您能否检查一下如何正确获取章节标题和目录?

相关内容