アルゴリズムの分析について書きたいと思います。条件によっては複数のケースが発生します。ケースを参考にしたいのですがないのみに基づく行番号に本質的には、hyperref で機能するカスタム ラベルが必要です。
\documentclass{article}
\usepackage{algorithm2e}
\begin{document}
\vspace{2em}
\begin{algorithm}[H]
\KwData{this text}
\KwResult{how to write algorithm with \LaTeX2e }
initialization\;
\While{not at end of this document}{
read current\;
\eIf{understand}{
go to next section \tcp*[f]{Case (1)} \;
current section becomes this one\;
}{
go back to the beginning of current section\;
}
}
\end{algorithm}
Analyis: Consider Case (1).
\end{document}
答え1
algorithm2e
カスタム行番号を設定する手段を提供しますそして\nlset
通常の と一緒にを介して参照します\label
:
\documentclass{article}
\usepackage{algorithm2e}
\newcommand{\algcaseref}{Case~\ref}
\begin{document}
\begin{algorithm}[H]
\KwData{this text}
\KwResult{how to write algorithm with \LaTeX2e }
initialization\;
\While{not at end of this document}{
read current\;
\eIf{understand}{
\nlset{(1)}\label{case:1}go to next section\;
current section becomes this one\;
}{
\nlset{(B)}\label{case:2}go back to the beginning of current section\;
}
}
\end{algorithm}
Analysis: Consider \algcaseref{case:1}. Also consider \algcaseref{case:2}.
\end{document}
答え2
カスタム カウンターを作成することでこれを実行できます。
\documentclass{article}
\usepackage{algorithm2e}
\usepackage{hyperref}
\newcounter{cases}
\newcommand{\case}[1]{\refstepcounter{cases}\label{#1}}
\begin{document}
\vspace{2em}
\begin{algorithm}[H]
\KwData{this text}
\KwResult{how to write algorithm with \LaTeX2e }
initialization\;
\While{not at end of this document}{
read current\;
\eIf{understand}{
go to next section \tcp*[f]{Case (1)} \case{mycase} \;
current section becomes this one\;
}{
go back to the beginning of current section\;
}
}
\end{algorithm}
Analyis: Consider Case (\ref{mycase}).
\end{document}
この MWE では、\case{}
コマンドはカウンターを増加させcases
、そのカウンターに応じてケースにラベルを付けます。