\documentclass{article}
\usepackage{algorithm2e}
\SetAlgoCaptionSeparator{.}
\begin{document}
\begin{algorithm}
code\;
\caption{I want to align this caption left}
\end{algorithm}
\end{document}
我无法将此标题设为左对齐。由于标题包样式不影响 algorithm2e,我不知道如何将标题左对齐。
答案1
\usepackage{caption}
\DeclareCaptionType{algo}
\captionsetup[algo]{
name=Algorithm,
singlelinecheck=off
}
和
\begin{algorithm}
captionof{algo}{your caption}
\end{algorithm}