[latexrefman-commits] r450 - in /trunk: ChangeLog latex2e.texi

jhefferon at domain.hid jhefferon at domain.hid
Sat Oct 3 23:52:28 CEST 2015


Author: jhefferon
Date: Sat Oct  3 23:52:28 2015
New Revision: 450

URL: http://svn.gna.org/viewcvs/latexrefman?rev=450&view=rev
Log:
Footnotes in a table, minipage

Modified:
    trunk/ChangeLog
    trunk/latex2e.texi

Modified: trunk/ChangeLog
URL: http://svn.gna.org/viewcvs/latexrefman/trunk/ChangeLog?rev=450&r1=449&r2=450&view=diff
==============================================================================
--- trunk/ChangeLog	(original)
+++ trunk/ChangeLog	Sat Oct  3 23:52:28 2015
@@ -1,4 +1,9 @@
-2015-09-28  Jim Hefferon  <jhefferon at domain.hid>
+2015-10-03  Jim Hefferon  <jhefferon at domain.hid>
+
+	* latex2e.texi (Footnotes, Footnotes in a table): Provide examples.
+	This is a confusing topic.
+
+2015-09-29  Jim Hefferon  <jhefferon at domain.hid>
 
 	* latex2e.texi (Footnotes): Provide examples.
 

Modified: trunk/latex2e.texi
URL: http://svn.gna.org/viewcvs/latexrefman/trunk/latex2e.texi?rev=450&r1=449&r2=450&view=diff
==============================================================================
--- trunk/latex2e.texi	(original)
+++ trunk/latex2e.texi	Sat Oct  3 23:52:28 2015
@@ -2,7 +2,7 @@
 @c $Id$
 @comment %**start of header (This is for running Texinfo on a region.)
 @setfilename latex2e.info
- at domain.hid UPDATED September 2015
+ at set UPDATED October 2015
 @settitle @LaTeX{}2e unofficial reference manual (@value{UPDATED})
 @comment %**end of header (This is for running Texinfo on a region.)
 
@@ -4583,7 +4583,7 @@
 
 @cindex footnotes, creating
 
-Place a numbered footnote at the bottom of the current page, as here.
+Place a numbered footnote at the bottom of the current page as here.
 
 @example
 Noel Coward stated that having to read footnotes resembles having to go 
@@ -4591,19 +4591,20 @@
 love.\footnote at domain.hid truth, it doesn't resemble it all that much.@}
 @end example
 
- at domain.hid{} lets you place multiple footnotes on a page; if the text
-becomes too long it will flow to the next page.
+You can place multiple footnotes on a page; if the text becomes too long
+it will flow to the next page.
 
 You can also produce footnotes by combining the @code{\footnotemark} and
 the @code{\footnotetext} commands, which is useful in special
 circumstances.
 
 @menu
-* \footnote::           Insert a footnote.
-* \footnotemark::       Insert footnote mark only.
-* \footnotetext::       Insert footnote text only.
-* Symbolic footnotes::  Using symbols instead of numbers for footnotes.
-* Footnote parameters:: Parameters for footnote formatting.
+* \footnote::                Insert a footnote.
+* \footnotemark::            Insert footnote mark only.
+* \footnotetext::            Insert footnote text only.
+* Footnotes in a minipage::  Minipage footnotes.  
+* Footnotes in a table::     Table footnotes.  
+* Footnote parameters::      Parameters for footnote formatting.
 @end menu
 
 
@@ -4633,12 +4634,16 @@
 number.  If you use this option then the footnote number counter is not
 incremented, and if you do not use it then the counter is incremented.
 
-Change the symbol used to show the footnote counter with something like
- at domain.hid@}@}}
-(@pxref{\alph \Alph \arabic \roman \Roman \fnsymbol}).  To make this
-change globally put that in the preamble.  If you make the change
-locally then you may want to reset the counter with
- at domain.hid@}}.
+ at cindex footnotes, symbols instead of numbers
+ at findex \fnsymbol at domain.hid{, and footnotes}
+ at findex \@@fnsymbol
+Change how @LaTeX{} shows the footnote counter with something like
+ at code{\renewcommand at domain.hid@}@}}, which
+uses a sequence of symbols (@pxref{\alph \Alph \arabic \roman \Roman
+\fnsymbol}).  To make this change global put that in the preamble.  If
+you make the change local then you may want to reset the counter with
+ at code{\setcounter at domain.hid@}}.  By default @LaTeX{} uses arabic
+numbers.
 
 You cannot use @code{\footnote} in an argument to a sectioning command
 such as @code{\chapter}, or in figures, tables or in a @code{tabular}
@@ -4652,6 +4657,12 @@
 
 @findex \footnotemark
 
+Synopsis:
+
+ at example
+\footnotemark
+ at end example
+
 With no optional argument, the @code{\footnotemark} command puts the
 current footnote number in the text.  This command can be used in
 inner paragraph mode.  You give the text of the footnote separately,
@@ -4683,28 +4694,50 @@
 the page as a footnote.  This command can come anywhere after the
 @code{\footnotemark} command.  The @code{\footnotetext} command must
 appear in outer paragraph mode.
-
 The optional argument @var{number} changes the default footnote number.
 
 
- at domain.hid Symbolic footnotes
- at domain.hid Symbolic footnotes
-
- at domain.hid footnotes, symbolic instead of numbered
-
-If you want to use symbols for footnotes, rather than increasing
-numbers, redefine @code{\thefootnote} like this:
-
- at domain.hid
-\renewcommand at domain.hid@}@}
- at domain.hid example
-
- at domain.hid \fnsymbol at domain.hid{, and footnotes}
- at domain.hid \@@fnsymbol
-The @code{\fnsymbol} command produces a predefined series of symbols
-(@pxref{\alph \Alph \arabic \roman \Roman \fnsymbol}).  If you want to
-use a different symbol as your footnote mark, you'll need to also
-redefine @code{\@@fnsymbol}.
+ at node Footnotes in a minipage
+ at section Footnotes in a minipage
+
+ at cindex Footnotes, in a minipage
+ at cindex mpfootnote counter
+
+Inside a @code{minipage} environment the @code{\footnote} command uses
+the @code{mpfootnote} counter instead of the @code{footnote} counter, so
+they are numbered independently.  They are shown at the bottom of the
+environment, not at the bottom of the page.  And, by default they are
+shown alphabetically.
+
+You can change the alphabetic appearance with something like
+ at code{\renewcommand at domain.hid@}@}}
+(@pxref{\alph \Alph \arabic \roman \Roman \fnsymbol}).
+
+
+ at node Footnotes in a table
+ at section Footnotes in a table
+
+ at cindex Footnotes, in a table
+
+Inside a @code{table} environment the @code{\footnote} command does not
+work.  The solution is to use the @file{tablefootnote} package, as
+illustrated in this example.  If you put
+ at code{\usepackage at domain.hid@}} in the preamble and use the code
+shown then the footnote appears at the bottom of the page, numbered in
+sequence with other footnotes.
+
+ at example
+\begin at domain.hid@}
+  \centering
+     \begin at domain.hid@}
+     \textsc at domain.hid@}  &\textsc at domain.hid@} \\ \hline 
+     1862           &Fort Donelson \\ 
+     1863           &Vicksburg     \\  
+     1865           &Army of Northern Virginia\footnote at domain.hid the war@}
+     \end at domain.hid@}
+    \caption at domain.hid captured by US Grant@}
+\end at domain.hid@}
+ at end example
 
 
 @node Footnote parameters





More information about the latexrefman-commits mailing list