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
LyX ⇒ Footnote problem (want to use same footnote several times)
NEW: TikZ book now 40% off at Amazon.com for a short time.
- Stefan Kottwitz
- Site Admin
- Posts: 10324
- Joined: Mon Mar 10, 2008 9:44 pm
Footnote problem (want to use same footnote several times)
Hi cat,
welcome to the board!
You could use the command \footnotemark, like
Stefan
welcome to the board!
You could use the command \footnotemark, like
Code: Select all
\footnotemark[1]
LaTeX.org admin
Footnote problem (want to use same footnote several times)
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}
Re: Footnote problem (want to use same footnote several times)
You are both awesome! Thank you soooo much! :thumbup: