Possible Duplicate:
Usage of table/figures shown in caption
Is there any way to make back-references, outside bibtex, so that by using something like \backref LaTeX would show where there are references to an item? For instance:
...
\begin{enumerate}
\item \label{1} Something. Referenced by [\backref].
\item \label{2} Something else. Referencing [\ref{1}].
\end{enumerate}
...
Outputting something like this:
- Something. Referenced by [2].
- Something else. Referencing [1].
Well, it will be useful for genealogical texts, where each item is a family, and each subitem a person. When the person marries, I can refer to what family he/she is from, but it would be useful to see to what family he/she belongs also. Perhaps an example will help ; ) :
\begin{enumerate}
\item \label{f:1} John and Mary had:
\begin{enumerate}
\item \label{p:1} James
\end{enumerate}
\item \label{f:2} Bruce and Alina had:
\begin{enumerate}
\item \label{p:2} Elisabeth
\end{enumerate}
\item \label{f:3} James [\ref{p:1}] and Elisabeth [\ref{p:2}] married.
\end{enumerate}
The \backref would make me able to show were James and Elisabeth married.
\backrefhere; in this example,\refwould seem to do as well since there's a clear\labelto point to.\backrefdoes make sense in a bibliography, where the pointer is to a\citein the body of the text, and there's no other labeling mechanism. can you provide a more compelling example? – barbara beeton Dec 11 '11 at 16:16p:1thatJames (married \backref{p:1})and inp:2thatElisabeth (married \backref{p:2}). – Ryan Reich Dec 11 '11 at 17:48\refI can show James' parents, in my example, but if I want to know where his marriage is, the only way I know is to put/ref{f:3}in the itemp:1by hand, but it should be doable by a command like\backref...Marco Daniel spotted a very similar question, but only with page numbers. I'm trying to understand how it works in the example there.
– Parjánya Dec 11 '11 at 18:18