algorithm2e compact \tcc 注释

algorithm2e compact \tcc 注释

这里命令在和\tcc{iterate over all training examples}之间产生较大的间隙。左对齐是可以的。但是如何减少间隙并使其紧凑呢?examples*/

答案1

\SetNoFillComment在环境内部本地使用该命令或在加载时algorithm使用全局选项。nofillcommentalgorithm2e

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} 

输出:

在此处输入图片描述

相关内容