I have defined a custom floating environment using newfloat to describe some application scenarios. These scenarios have distinctive and short names, which I would like to use as the "number" of the floating environment instead of a real number. Is there any way to achieve this:
MWE:
\documentclass{article}
\usepackage{hyperref}
\usepackage{newfloat}
\DeclareFloatingEnvironment[name=Scenario,within=none]{scenario}
\begin{document}
\begin{scenario}
\center
This is a scenario description text
\caption{This is scenario ABC\@. Should start with Scenario~ABC.}
\label{scenario:abc}
\end{scenario}
Here I want to reference \autoref{scenario:abc} as Scenario~ABC\@.
\end{document}
Basically, the caption in this MWE should be "Scenario ABC: ..." and the \autoref should look the same.
