Math & Science ⇒ Cross-Referencing an equation
Cross-Referencing an equation
I'm a beginner in latex, and I have the following question:
How can I cross-reference a certain equation?
Also, if I have one number for a set of equations, how can I cross-reference them?
Thanks.
Aly
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
Cross-Referencing an equation
use \label and \ref. With amsmath, recommendable for all math texts, you could use \eqref. Here's an example:
Code: Select all
\documentclass[a4paper,10pt]{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
ax + by +c = 0 \label{eq1}
\end{equation}
See \eqref{eq1}.
\end{document}Re: Cross-Referencing an equation
Aly