我是 Latex 的新手,因此这可能是个小问题。但是,我无法处理它。
我想将我的小节标题设为粗体和斜体。我尝试了一些方法,但无法实现。
\documentclass[preprint,authoryear,12pt]{elsarticle}
\usepackage[utf8]{inputenc}
\begin{document}
\maketitle
\section{Introduction}
\subsection{My Life}
\end{document}
小节部分的样式My Life
是斜体而不是粗体。我想让它既粗体又斜体。顺便说一句,我必须使用上面示例代码中的文档类。这是我所在大学的文章所有者提供的必需品。
答案1
\documentclass[preprint,authoryear,12pt]{elsarticle}
\usepackage[utf8]{inputenc}
\makeatletter
\renewcommand\subsection{\@startsection {subsection}{2}{\z@}%
{3.5ex \@plus -1ex \@minus -.2ex}%
{1.5ex \@plus.2ex\noindent}%
{\normalsize\bfseries\itshape}%
}
\makeatother
\begin{document}
\maketitle
\section{Introduction}
\subsection{My Life}
\end{document}
答案2
这里是我的评论作为答案,使用包 titlesec:
\documentclass[preprint,authoryear,12pt]{elsarticle}
\usepackage[utf8]{inputenc}
\usepackage{titlesec}
\titleformat{\subsection}
{\normalfont\fontfamily{phv}\fontsize{12}{17}\bfseries\itshape}{\thesubsection}{1em}{}
\begin{document}
\maketitle
\section{Introduction}
\subsection{My Life}
\end{document}