Text Formatting ⇒ text in wrap figure enviroment
text in wrap figure enviroment
i put a text in a wrapfigure enviroment as I have been suggested in this forum. but in this text there're a foot note. in the pdf file there're the numbers of note but in botton of the page there aren't the notes.
How i can resolve this problem?
thanks!!
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
text in wrap figure enviroment
we will need a minimal working example (MWE) showing this undesired behaviour; I ask you for this MWE since the following test code works OK for me (see the resulting pdf file included as an attachment):
Code: Select all
\documentclass{book}
\usepackage{wrapfig}
\begin{document}
\begin{wrapfigure}{r}{5.2cm}
\rule{5cm}{2cm}%to simulate an actual figure
\caption{A test figure}
\label{fig:testfig}
\end{wrapfigure}
text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text\footnote{a test footnote} text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text\footnote{another test footnote} text text text text text text text text text text text text text text text text text text text text text
\end{document}
- Attachments
-
- test.pdf
- (14.96 KiB) Downloaded 460 times
text in wrap figure enviroment
Code: Select all
\documentclass{book}
\usepackage{wrapfig}
\begin{document}
\begin{wrapfigure}{r}{0.5 \textwidth}
blablabla lfjf fie feie fdiew
blablabla lfjf fie feie fdiew
blablabla lfjf fie feie fdiew\footnote{fed}
blablabla lfjf fie feie fdiew
blablabla lfjf fie feie fdiew
\end{wrapfigure}
\end{document}
text in wrap figure enviroment
Code: Select all
\documentclass{book}
\usepackage{wrapfig}
\begin{document}
\begin{wrapfigure}{r}{0.5\textwidth}
blablabla lfjf fie feie fdiew
blablabla lfjf fie feie fdiew
blablabla lfjf fie feie fdiew\footnotemark[1]
blablabla lfjf fie feie fdiew
blablabla lfjf fie feie fdiew
\end{wrapfigure}
\footnotetext[1]{fed}
\stepcounter{footnote}%to increase the standard footnote's counter
text text\footnote{a standard test footnote}
\end{document}