Text FormattingFootnote to jump to another section

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
orsisam
Posts: 4
Joined: Sat Jul 04, 2015 4:05 pm

Footnote to jump to another section

Post by orsisam »

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

Recommended reading 2024:

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

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

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Footnote to jump to another section

Post by Johannes_B »

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

Re: Footnote to jump to another section

Post by orsisam »

sorry for my bad english :D , I include examples of footnotes I mean. Footnotes will lead to another page, how do I make the footnotes like this?
Attachments
FootnotesExample
FootnotesExample
footnote.jpg (9.8 KiB) Viewed 6347 times
User avatar
cgnieder
Site Moderator
Posts: 2000
Joined: Sat Apr 16, 2011 7:27 pm

Footnote to jump to another section

Post by cgnieder »

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
site moderator & package author
orsisam
Posts: 4
Joined: Sat Jul 04, 2015 4:05 pm

Re: Footnote to jump to another section

Post by orsisam »

Thanks for your answer cgneider
Post Reply