如果我这样做,我无法同时使 tim 变为粗体和大写:
\titleformat{\paragraph}[runin]
{\normalfont\scshape\bfseries}{\theparagraph}{1em}{}
它们是粗体但不是大写
如果我做
\titleformat{\paragraph}[runin]
{\normalfont\scshape}{\theparagraph}{1em}{}
那么它们是大写的,但不加粗。
我该如何解决?谢谢!
答案1
这应该有效:
\documentclass{article}
\usepackage[T1]{fontenc}
\usepackage{titlesec}
\titleformat{\paragraph}[runin]
{\bfseries\scshape}{\theparagraph}{1em}{}
\begin{document}
\paragraph{Some} text
\end{document}