1

TeXとパッケージ「algorithmic」を使用して、疑似コードでアルゴリズムをレイアウトしようとしています。混乱します。単語間にスペースがなく、改行もありません。誰でも私を助けることができますか?

アルゴリズムのコメントに間隔と改行を入れるにはどうすればよいですか?

ありがとう!

これが私のTeXコードです:

\documentclass{llncs}
\usepackage{algorithmic}

\begin{document}
\begin{algorithmic}

\REQUIRE{ $ Some long text here. Unfortunately this text is a mess. Spaces and line breaks are missing and the text gets weird block layout when setting line breaks manually. $}
\FORALL{$i = 1 \ldots \mid L_{items}\mid $  } 
\STATE { $  i miss spaces here, too $}
\ENDFOR

\end{algorithmic}
\end{document}
4

1 に答える 1

4

最初の問題は$ ... $、数学モードで入力することを意味するドル記号でテキストを持っていることです。したがって、間隔はかなりずれます。これを試して

\REQUIRE{ Some long text here. Unfortunately this text is a mess. Spaces and line breaks are missing and the text gets weird block layout when setting line breaks manually. }
\FORALL{$i = 1 \ldots \mid L_{items}\mid $  } 
\STATE {   i miss spaces here, too But I can get math $x = x +1$ }
于 2010-06-16T13:44:01.193 に答える