有期刊要求我采用以下格式:
1. 部分
1.1.子部分
请注意,该小节的编号也未加粗。
换句话说,在所有章节中添加句号,但删除小节中的粗体并仅在标题中添加斜体。
通过这个网站,我找到了如何做到上述两种情况之一但不能同时做到。想要添加句号的人可以使用这个
\usepackage{titlesec} \titlelabel{\thetitle.\quad}
但当有人想用斜体字时,他们建议
\titleformat{\subsection}
{\normalfont\fontfamily{phv}\fontsize{12}{17}\bfseries}{\thesubsection}{1em}{}
如何才能调整两者之一来完成这两项任务呢?这真是令人沮丧。
答案1
这是你想要的吗?
\documentclass{article}
\usepackage[scale=0.9]{tgheros}
\usepackage{newtxtext,newtxmath}
\usepackage{titlesec}
\titleformat{\section}
{\normalfont\large\sffamily\bfseries}
{\thesection.}
{1em}
{}
\titleformat{\subsection}
{\normalfont\large\sffamily}
{\thesubsection.}
{1em}
{\itshape}
\begin{document}
\section{Section}
\subsection{Subsection}
Some text
\end{document}