在使用创建的算法的标题中algorithm2e
,
\documentclass{article}
\usepackage[ruled]{algorithm2e}
\begin{document}
\begin{algorithm}[H]
\caption{Caption.}
pseudocode
\end{algorithm}
\end{document}
“算法 1:”以粗体显示。我怎样才能将其字体更改为小写?
另外,我怎样才能让“算法 1.”出现呢?
答案1
该algorithm2e
包提供\SetAlgoCaptionSeparator
更改标题分隔符和\AlCapFnt
控制标题标签的字体的功能:
\documentclass{article}
\usepackage[ruled]{algorithm2e}
\SetAlgoCaptionSeparator{.}
\renewcommand\AlCapFnt{\normalfont\scshape}
\begin{document}
\begin{algorithm}[H]
\caption{Caption.}
pseudocode
\end{algorithm}
\end{document}