I'm using latex to do syntactical analysis, using the following specifications:
For super-script \tss{super-script}
\newcommand*{\tss}[1]{\textsuperscript{#1}}
\newcommand\tabspace{1cm} % Adjust tab length here
\newcommand\mytabs{\hspace{\tabspace}\=\hspace{\tabspace}\=\hspace{\tabspace}\=\hspace{\tabspace}\=\hspace{\tabspace}\=}
\newenvironment{syntax}[1][\mytabs] % The syntax environment, used for syntactical analyses
{\begin{tabbing}#1\kill}
{\end{tabbing}}
\newcommand{\tab}[2][\>]{#1 #2} % Tab command, used in syntactical analyses
Currently, I can make five times \tab. My question is how I can change the number of possible \tab(s), so at to make it larger.

\mytabswhich can obviously be extended, buttabbingis a pretty useless latex environment so often it's best not to base the markup on tabbing. It is hard to offer any advice given the lack of information in the question. Please always make a complete (small) document that shows what you are trying to do. – David Carlisle Jul 11 '14 at 13:36\documentclass{...}and ending with\end{document}. – Jul 11 '14 at 13:43