我正在使用并且很喜欢这个algorithmicx
包,但是想调整一下它的缩进大小。
在algorithms
包中,我可以使用 来执行此操作\algsetup{indent=1em}
,但在这里似乎不起作用。
有什么想法吗?
答案1
您可以更新内部命令\algorithmicindent
:
\algrenewcommand\algorithmicindent{2.0em}%
将 更改2.0em
为您想要的任何内容。
以下是从文档中提取并改编的 MWE:
\documentclass{article}
\usepackage{algorithmicx}
\usepackage[ruled]{algorithm}
\usepackage{algpseudocode}
\usepackage{algpascal}
\usepackage{algc}
\newcommand{\euk}{Euclid}
\algrenewcommand\algorithmicindent{2.0em}%
\begin{document}
\begin{algorithmic}[1]
\algrenewcommand{\algorithmiccomment}[1]{\hskip3em$\rightarrow$ #1}
\State $x\gets x+1$\Comment{Here is the new comment}
\end{algorithmic}
\alglanguage{pseudocode}
\begin{algorithm}[H]
\caption{\euk's algorithm}\label{euclid}
\begin{algorithmic}[1]
\Procedure{\euk}{$a,b$}\Comment{The g.c.d. of a and b}
\State $r\gets a\bmod b$
\While{$r\not=0$}\Comment{We have the answer if r is 0}
\State $a\gets b$
\State $b\gets r$
\State $r\gets a\bmod b$
\EndWhile\label{euclidendwhile}
\State \Return $b$\Comment{The gcd is b}
\EndProcedure
\end{algorithmic}
\end{algorithm}
\end{document}