你好,当我尝试改变部分的大小时,必须位于部分编号附近的点消失了。
部分 > 转动 > 1 部分
\documentclass{article} \usepackage{titlesec} \titleformat{\section} {\normalfont\fontsize{12}{15}\bfseries}{\thesection}{1em}{} \titlelabel{\thetitle.\quad} \begin{document} \section{Test Section} test \end{document}
答案1
正如@samcarter 指出的那样,您想要的点缺少\titleformat{\section}{...}
:
\documentclass{article}
\usepackage{titlesec}
\titleformat{\section}
{\normalfont\fontsize{12}{15}\bfseries}{\thesection.}{1em}{}% The missing dot
\titlelabel{\thetitle.\quad}
\begin{document}
\section{Test Section}
test
\end{document}