GeneralOverriding enumeration of equations

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
yoda
Posts: 4
Joined: Tue Oct 07, 2008 1:48 am

Overriding enumeration of equations

Post by yoda »

Hi, I´m quite new in Latex, so I would appreciate if you can help me.
The point is, I like to introduce an equation, but I want to override the number of the equation (because I re-write the equation from a previous chapter). Here is my attempt,

\begin{equation*}
\Delta R_r=\frac{1}{E_s}[(1+\nu_s+\nu_m)\overline{\sigma_r}] \qquad (\ref{eq:deltaRr})
\end{equation*}

where \ref{eq:deltaRr} is the label of this equation introduced in a previous chapter. The problem is that on the one hand, the spacing \qquad is insufficient and on the other hand, the equation is no longer centered.

It would be great if there´s a command like \flushright that could be used in the mathematical environment.

Thanks

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

Juanjo
Posts: 657
Joined: Sat Jan 27, 2007 12:46 am

Overriding enumeration of equations

Post by Juanjo »

Try this:

Code: Select all

\begin{equation*}
   \Delta R_r=\frac{1}{E_s}[(1+\nu_s+\nu_m)\overline{\sigma_r}] \tag{\ref{eq:deltaRr}}
\end{equation*}
The CTAN lion is an artwork by Duane Bibby. Courtesy of www.ctan.org.
yoda
Posts: 4
Joined: Tue Oct 07, 2008 1:48 am

Re: Overriding enumeration of equations

Post by yoda »

Thanks Juanjo, that is what I need!!!
Post Reply