Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
orsisam
Posts: 4 Joined: Sat Jul 04, 2015 4:05 pm
Post
by orsisam » Sat Nov 07, 2015 4:52 pm
Hi,
What command to produce footnote that will jump to other page, chapter or section?
Thanks before
Last edited by
cgnieder on Sat Nov 07, 2015 5:22 pm, edited 1 time in total.
Reason: typo
NEW: TikZ book now 40% off at Amazon.com for a short time.
Johannes_B
Site Moderator
Posts: 4182 Joined: Thu Nov 01, 2012 4:08 pm
Post
by Johannes_B » Sat Nov 07, 2015 5:17 pm
Sorry, i have no idea what you might want to do. Can you explain what you are trying to do in a few sentences? Google translate might be helpful.
Additionally, a
minimal working example would be great, that shows us a part of what you do (or want) with code. Code doesn't have a language barrier.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
orsisam
Posts: 4 Joined: Sat Jul 04, 2015 4:05 pm
Post
by orsisam » Mon Nov 09, 2015 7:32 am
sorry for my bad english
, I include examples of footnotes I mean. Footnotes will lead to another page, how do I make the footnotes like this?
Attachments
FootnotesExample footnote.jpg (9.8 KiB) Viewed 6415 times
cgnieder
Site Moderator
Posts: 2000 Joined: Sat Apr 16, 2011 7:27 pm
Post
by cgnieder » Mon Nov 09, 2015 11:15 am
Just use the standard
\label
/
\ref
/
\pageref
mechanism:
Code: Select all
\documentclass{article}
\usepackage{lipsum}% for dummy text
\begin{document}
\section{Foo}\label{sec:foo}
\lipsum
Text\footnote{See section~\ref{sec:foo-bar} on page~\pageref{sec:foo-bar}.}
Text\footnote{See section~\ref{sec:bar} on page~\pageref{sec:bar}.}
Text\footnote{See section~\ref{sec:baz} on page~\pageref{sec:baz}.}
\section{Foo bar}\label{sec:foo-bar}
\lipsum
\section{Bar}\label{sec:bar}
\lipsum
\section{Baz}\label{sec:baz}
\lipsum
\end{document}
Regards
orsisam
Posts: 4 Joined: Sat Jul 04, 2015 4:05 pm
Post
by orsisam » Tue Nov 10, 2015 2:36 pm
Thanks for your answer cgneider