Search found 1 match

by vivek9837
Mon Apr 04, 2016 1:04 pm
Forum: Math & Science
Topic: \caption outside float in algorithm package
Replies: 1
Views: 7515

\caption outside float in algorithm package

I am trying to write the following algorithm using latex


\documentclass{article}
\usepackage{algorithm,algpseudocode}

\begin{document}
\begin{algorithm}
\caption{Euclid's algorithm}\label{euclid}
\begin{algorithmic}[1]
\Procedure{Euclid}{$a,b$}\Comment{The gcd of $a$ and $b$}
\State $r \gets ...