우분투에서는 # apt-get install texlive-science패키지를 설치하면 사용할 수 있게 된다. latex algorithms 패키지를 쓰려고 했는데 안 되더군... 아마도 다른 패키지로 대체되어서 그런 듯 싶다. algorithmicx 패키지를 쓰면 된다. \usepackage{algorithm} \usepackage{algpseudocode} hyperref 를 쓰고 있다면 그것보다 뒤에 배치해야 됨. \newcommand{\factorial}{\ensuremath{\mbox{\sc Factorial}}} \begin{algorithm} \caption{Euclid’s algorithm}\label{euclid} \begin{algorithmic}[1] \Procedure{Euclid..