我知道可能还有很多问题喜欢但我自己却无法弄清楚这一切。
我正在寻找一种以稍大一点的字体定义自己的章节或部分的方法,例如:
1.第一个练习
1a.练习第一部分
能够在标题中使用它们(如章节)
自动编号(也为 1a、1b……)
答案1
以下内容或多或少可以解决您的问题。
如果你使用标题安全包裹。
以下是相关代码。您想控制章节、节和小节的编号(我擅自添加了它)。然后您控制它们的显示方式。也许您还想控制间距。
您可以进行必要的调整以适合您的口味。
有关命令的更多信息,请阅读包装文档。
\documentclass{book}
\usepackage{times}
\usepackage{titlesec}
% Control number formats
\def\thesection{\arabic{chapter}\alph{section}}
\def\thesubsection{\arabic{chapter}\alph{section}(\roman{subsection})}
% Control display formats
\titleformat{\chapter}[block]{}{\large\thechapter.\ }{0.0mm}{\large}
\titleformat{\section}[block]{}{\large\thesection.\ }{0.0mm}{\large}
\titleformat{\subsection}[block]{}{\thesubsection.\ }{0.0mm}{}
% Control spacing
\titlespacing{\chapter}{0.0mm}{\bigskipamount}{\medskipamount}
\titlespacing{\section}{0.0mm}{\medskipamount}{\smallskipamount}
\titlespacing{\subsection}{0.0mm}{\smallskipamount}{\smallskipamount}
\parindent 0.0mm
\begin{document}
\chapter{First exercise}
This exercise in on\dots
\section{First part of exersice}
In the first part you need to answer\dots
\section{Second part of exersice}
The second part has a number of subparts\dots
\subsection{Second One}
Please tell us\dots
\subsection{Second Two}
And tell us\dots
\end{document}