Equation 1.1
Equation 1.2
Equation 1.3
etc. (where the first digit is the chapter number).
I know that to achieve the numbering within chapters I should just need to add:
Code: Select all
\numberwithin{equation}{chapter}
Code: Select all
\numberwithin{equation}{chapter}
NEW: TikZ book now 40% off at Amazon.com for a short time.
Code: Select all
\labelformat{equation}{Equation~#1}
Code: Select all
\renewcommand{\theequation}{Equation \thechapter.\arabic{equation}}
The document you linked to is quite outdated. The latest version can be obtained from CTAN: http://tug.ctan.org/tex-archive/info/ma ... /mathmode/gmedina wrote: Here (page 61) is the answer to your question.
From varioref:FreddieWidgeon wrote:I'm really sorry about this Ted but I think I must be missing something. After reading the documentation for the varioref, hyperref and cleveref pacakges it looks to me like they only change the text in references to items such as equations or figures. What I'm looking to do is replace the default numbering system of (1), (2), (3), etc. which are displayed next to the equations into the words Equation 1.1, Equation 1.2, Equation 1.3, etc. I can't see anything in the options for the three packages which will let me do this.
Code: Select all
\labelformat{equation}{Equation~(#1)}
Code: Select all
\labelformat{equation}{\textup{(#1)}}
NEW: TikZ book now 40% off at Amazon.com for a short time.