如何在演算法中建立和縮排“前導碼”部分?

如何在演算法中建立和縮排“前導碼”部分?

我正在用來algorithm2e寫演算法。我這樣做的方式是,在實際演算法之前,我有一個用於輸入和輸出參數的部分,以及相關時對文件中可能很遠的其他演算法和方程式的引用。就像這樣:

這是正確渲染的

我已經介紹了參考文獻的“序言”部分\SetKwInput{KwRef}{Referências}。到目前為止,一切都很好。

但我這樣做的方式似乎不是最聰明的方式。我\quad在每個項目的開頭使用:

\begin{algorithm}
        \caption{My example}
        \KwIn{\\
            \quad$X$: something\\
            \quad$Y$: something else
        }
        \KwOut{\\
            \quad$R$: the result
        }
        \KwRef{\\
            \quad$f(\cdot)$ is the function introduced in Equation~\ref{eq:znorm}
        }
        $R \leftarrow X + Y$\;
    \end{algorithm}

明智的做法是什麼?

答案1

\quad您可以透過tabular;自動執行放置這似乎適合您目前的用法:

在此輸入影像描述

\documentclass{article}

\usepackage[utf8]{inputenc}
\usepackage{algorithm2e}

\renewcommand{\KwIn}[1]{%
  \KwIna{\strut\\ \quad\begin{tabular}{@{} l @{}} #1 \end{tabular}}}
\renewcommand{\KwOut}[1]{%
  \KwOuta{\strut\\ \quad\begin{tabular}{@{} l @{}} #1 \end{tabular}}}
\newcommand{\KwRef}[1]{%
  \KwRefa{\strut\\ \quad\begin{tabular}{@{} l @{}} #1 \end{tabular}}}
\SetKwInput{KwIna}{Parâmetros de Entrada}
\SetKwInput{KwOuta}{Parâmetros de Saída}
\SetKwInput{KwRefa}{Referências}

\begin{document}

\begin{algorithm}
  \caption{My example}
  \KwIn{%
    $X$: something \\
    $Y$: something else
  }
  \KwOut{%
    $R$: the result
  }
  \KwRef{%
    $f(\cdot)$ is the function introduced in Equation~\ref{eq:znorm}
  }
  $R \leftarrow X + Y$\;
\end{algorithm}

\renewcommand{\theequation}{2.3}% Just for this example
\begin{equation}
  f(x) = ax^2 + bx + c \label{eq:znorm}
\end{equation}

\end{document}

相關內容