LyX ⇒ Footnote problem (want to use same footnote several times)
Footnote problem (want to use same footnote several times)
"
* Bladibla bla bla(1) and baldi bla.
* Bla bla (2)
* bal bal bla (1)
----------------------
1. bla bla lba
2. bla bla bla
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Footnote problem (want to use same footnote several times)
welcome to the board!
You could use the command \footnotemark, like
Code: Select all
\footnotemark[1]
Footnote problem (want to use same footnote several times)
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}