LyXFootnote problem (want to use same footnote several times)

Information and discussion about LyX, a WYSIWYM editor, available for Linux, Windows and Mac OS X systems.
Post Reply
cat
Posts: 3
Joined: Fri Oct 02, 2009 2:44 pm

Footnote problem (want to use same footnote several times)

Post by cat »

How do I go about to get this?

"
* Bladibla bla bla(1) and baldi bla.
* Bla bla (2)
* bal bal bla (1)

----------------------
1. bla bla lba
2. bla bla bla

Recommended reading 2024:

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

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10324
Joined: Mon Mar 10, 2008 9:44 pm

Footnote problem (want to use same footnote several times)

Post by Stefan Kottwitz »

Hi cat,

welcome to the board!
You could use the command \footnotemark, like

Code: Select all

\footnotemark[1]
Stefan
LaTeX.org admin
meho_r
Posts: 823
Joined: Tue Aug 07, 2007 5:28 pm

Footnote problem (want to use same footnote several times)

Post by meho_r »

Or, if you don't mind using footmisc package, you may use \footref command provided by it. Here's an example:

Code: Select all

\documentclass{report}
\usepackage{footmisc}

\begin{document}
Test\footnote{First footnote\label{first_footnote}} 
some text\footnote{Second footnote} and some more 
text\footref{first_footnote}
\end{document}
cat
Posts: 3
Joined: Fri Oct 02, 2009 2:44 pm

Re: Footnote problem (want to use same footnote several times)

Post by cat »

You are both awesome! Thank you soooo much! :thumbup:
Post Reply