论文章节格式

论文章节格式

我已开始尝试自定义我的论文格式。我正在使用书籍文档类。

我已经能够按照这里的一些技巧来获得例如带下划线的章节标题等,但我在这个页面上看到了一种非常漂亮的风格:

https://s3.amazonaws.com/dissertate.io/generic.pdf

有人知道复制此内容的简单方法吗?或者至少让数字下方带有文字并向右对齐?

非常感谢您的帮助。

答案1

这是来自包裹quotchap https://www.ctan.org/tex-archive/macros/latex/contrib/quotchap

\documentclass{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{mathpazo}
\usepackage[palatino]{quotchap}
\definecolor{chaptergrey}{rgb}{0.6471, 0.1098, 0.1882}
\begin{document}
\begin{savequote}[8cm]
  ``All changes, even the most longed for, have their melancholy;
  for what we leave behind us is a part of ourselves; we must
  die to one life before we can enter another.''
  \qauthor{Anatole France}
  `The moment a man starts to behave ridiculous to a woman
  you know he is serious at it.'
  \qauthor{Colette}
\end{savequote}
\makeatletter
\chapter{Quote to be quoted}
This is an example of a normal chapter page.

\chapter{Enjoy the whitespace}
This is an example of a chapter without quotes.

\chapter*{More space for tocs and bibs}
This is an example of a non-numbered page.

\begin{savequote}[5cm]
  Who's gonna {\upshape\ttfamily U:\textasciitilde} tonight?
  \qauthor{The Cars}
\end{savequote}
\chapter*{Do not trust everyone}
This is to show there is not much space in the star version chapters.

\end{document}

相关内容