小型大写字母不适用于部分

小型大写字母不适用于部分

我正在使用 \article类进行编写,我想让其每个部分都居中且小写,不加粗。我sectsty为此使用了包。

我试过这种方法

\documentclass{article}
\usepackage{amssymb,amsmath,sectsty, blindtext}

\title{\scshape This Is The Title\\\large and this is another text}
\author{Azlif}
\date{Somewhere in 2018}
\sectionfont{\centering \scshape\normalfont} 
\renewcommand{\abstractname}{Abstrak}
\begin{document}
\maketitle
\begin{abstract}
This paper only contains blind text
\end{abstract}
\section{I Hope I can Be a Small Caps Someday}
\blind text
\section{Other Section}
\section{Yet Another Section}
\end{document}

我也尝试添加 \usepackage[sc]{titlesec}。它可以工作,但是节标题不居中。

答案1

这是一个相当简单的人为错误。\normalfont重置字体设置,因此\scshape\normalfont与相同\normalfont

尝试\normalfont\scshape

答案2

使用titlesec,只需添加到您的序言中

\titleformat*{\filcenter\scshape}

相关内容