Hello !
I using the following command:
\section*{Introduction}
and after, when I using in equation the command \label
the Latex nyumerates my formulas in the following way:
(0.1) ...
How I cen do that it will numerated like: (1.1) ?
Thank you
Text Formatting ⇒ Numeration Formulas
NEW: TikZ book now 40% off at Amazon.com for a short time.

Numeration Formulas
Maybe you can solve this by using \section{Introduction} instead of section*{Introduction} and controlling numeration depth globally with \setcounter{secnumdepth}{0}
Re: Numeration Formulas
If you want the Introduction to be section 1, then indeed, you should use \section{Introduction} rather than \section*{Introduction}. If you want it to be treated as section one, even when it isn't, then I suppose you could use \refstepcounter{section} right after \section*{Introduction}, but you need to roll it back with \addtocounter{section}{-1} right before the next section, unless you want it to be Section 2. But that solution might be confused to readers.