我想在我的 latex 文件中添加一个算法。我通过执行以下操作来添加它:
\usepackage{algorithm}
\usepackage{algpseudocode}
\begin{document}
.....
\begin{algorithm}
\begin{algorithmic}
\caption{Waypoint-reduction algorithm.}
\procedure REDUCE \\
\state $i \gets N_*$
\state $\mathbb{P} \gets$ InitializePath
\end{algorithmic}
\end{algorithm}
但是,当我这样做时,它也会改变我的图形及其标题的布局。这是在添加 algortihm 包之前:
之后的情况如下:
有人知道如何纠正这个问题吗?