GeneralHelp to remove Algorithm Numbering

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
Abu Noor-Eddin
Posts: 2
Joined: Thu May 26, 2011 10:04 pm

Help to remove Algorithm Numbering

Post by Abu Noor-Eddin »

Hello,

I have the following code

Code: Select all

\floatname{algorithm}{}
\begin{algorithm}
\caption{Proposed Algorithms}
\label{alg:algorithm1}
\begin{algorithmic}[1]
......
\end{algorithmic}
\end{algorithm}
This produces a title for the algorithm as

1 Proposed Algorithms

How can I remove the number 1 that appears before "Proposed Algorithms"

Thanks
Last edited by Abu Noor-Eddin on Fri May 27, 2011 1:48 pm, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Abu Noor-Eddin
Posts: 2
Joined: Thu May 26, 2011 10:04 pm

Re: Help to remove Algorithm Numbering

Post by Abu Noor-Eddin »

SOLVED

add \renewcommand{\thealgorithm}{}
after \begin {algorithm}

Thanks.
Post Reply