这里命令在和\tcc{iterate over all training examples}
之间产生较大的间隙。左对齐是可以的。但是如何减少间隙并使其紧凑呢?examples
*/
答案1
\SetNoFillComment
在环境内部本地使用该命令或在加载时algorithm
使用全局选项。nofillcomment
algorithm2e
MWE(借用自链接答案):
\documentclass{article}
\usepackage{xcolor}
\usepackage[linesnumbered,ruled,vlined]{algorithm2e}
\newcommand\mycommfont[1]{\footnotesize\ttfamily\textcolor{blue}{#1}}
\SetCommentSty{mycommfont}
\begin{document}
\begin{algorithm}[H]
\DontPrintSemicolon
\SetNoFillComment % <---------------------------
\KwData{Training set $x$}
$\Delta_{ji}^l := 0$ \tcp*{will be used to compute $\partial x$}
\tcc{iterate over all training examples}
\caption{Example code}
\end{algorithm}
\end{document}
输出: