I am new to the community, so maybe it has escaped me, but I did not find an answer to this problem.
I have defined a new environment, with its proper counter
Code: Select all
\newenvironment{spec}[2]{
\textbf{Specification~\ref{#2}}: #1
\label{#2}
\begin{small}
\begin{tabbing}
}
{
\end{tabbing}
\end{small}
}
\newcounter{spec}
Code: Select all
\newcounter{appendix}
%\renewcommand\thespec{\Alph{appendix}\arabic{spec}}
\setcounter{spec}{0}
%\renewcommand{\thespec}{A.\arabic{spec}}
\appendix
%\makeatletter
%\def\@seccntformat#1{Appendix\ \csname the#1\endcsname\quad}
%\makeatother
\input{appendix}
I have tried to adapt the solutions proposed for figure and table, by using
\thespec
, but that does not do anything. Any suggestions?
thanks
paolo