使用 algorithm2e 创建的算法重新设计标题

使用 algorithm2e 创建的算法重新设计标题

在使用创建的算法的标题中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}

在此处输入图片描述

相关内容