我对我的章节和小节标题使用了以下格式(居中并且数字带有点):
\documentclass[12pt]{article}
\usepackage[center]{titlesec}
\titlelabel{\thetitle.\quad} %dots after title number
但是我无法使用大多数取消粗体命令来取消粗体,因为大多数命令中的居中都会发生变化。有没有办法用这种格式取消粗体部分和小节标题?
答案1
如果您不想使用该\titleformat
命令,请使用
\usepackage[center,md]{titlesec}
答案2
最简单的方法是使用sectsty
“传统”方式添加句点。
\documentclass{article}
\usepackage{sectsty}
\usepackage{lipsum} % just for the example
% titles are medium weight and centered
\allsectionsfont{\mdseries\centering}
% we want a period after the section number
\makeatletter
\renewcommand{\@seccntformat}[1]{\csname the#1\endcsname.\quad}
\makeatother
\begin{document}
\section{A section}
\lipsum[2]
\subsection{A subsection}
\lipsum[3]
\end{document}