章节名称下是否有小斜体文字?

章节名称下是否有小斜体文字?

我想在章节名称下方写一个小字体、斜体注释。例如:

\section{First Section}
\comment{Some comment goes here.}
Here section text begins.

是否有一个包或者命令可以做到这一点?

答案1

这是一个可以完成您想要的操作的简单命令:

\documentclass{article}

\newcommand{\comment}[1]{\hspace{4em}{\small\textit{#1}}\bigskip\par}

\begin{document}
    \section{First Section}
    \comment{Some comment goes here.}
    Here section text begins.
\end{document}

\hspace{4em} 将其缩进该部分,\small 减小尺寸(注意它周围的括号),\textit 使其变为斜体,而 \bigskip\par 在其后添加空格。

相关内容