ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Footnote disappears (TABLE, itemize)
@ 2011-03-20 21:08 Vedran Miletić
  2011-03-20 21:29 ` Wolfgang Schuster
  0 siblings, 1 reply; 3+ messages in thread
From: Vedran Miletić @ 2011-03-20 21:08 UTC (permalink / raw)
  To: NTG-ConTeXt mailing list


[-- Attachment #1.1: Type: text/plain, Size: 351 bytes --]

Hi,

the following code makes first footnote disappear.

\starttext
\placetable{My table}{\bTABLE
\bTR \bTD {\bf Something} \eTD \bTD \startitemize[1, packed]
        \item First
        \item Second\footnote{test1} hello
        \item Third\footnote{test2} hello
\stopitemize \eTD \eTR
\eTABLEbody
\eTABLE}
\stoptext

Vedran Miletić

[-- Attachment #1.2: Type: text/html, Size: 410 bytes --]

[-- Attachment #2: Type: text/plain, Size: 486 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Footnote disappears (TABLE, itemize)
  2011-03-20 21:08 Footnote disappears (TABLE, itemize) Vedran Miletić
@ 2011-03-20 21:29 ` Wolfgang Schuster
  2011-03-21 12:06   ` Vedran Miletić
  0 siblings, 1 reply; 3+ messages in thread
From: Wolfgang Schuster @ 2011-03-20 21:29 UTC (permalink / raw)
  To: mailing list for ConTeXt users


Am 20.03.2011 um 22:08 schrieb Vedran Miletić:

> Hi,
> 
> the following code makes first footnote disappear.
> 
> \starttext
> \placetable{My table}{\bTABLE
> \bTR \bTD {\bf Something} \eTD \bTD \startitemize[1, packed]
>         \item First
>         \item Second\footnote{test1} hello
>         \item Third\footnote{test2} hello
> \stopitemize \eTD \eTR
> \eTABLEbody
> \eTABLE}
> \stoptext

Add \automigrateinserts or use local footnotes, be aware that floats and footnotes don’t work well together.

\starttext

\placetable
  {My table}
  {\startlocalfootnotes
   \placelegend
     {\bTABLE
      \bTR
        \bTD {\bf Something} \eTD
        \bTD \startitemize[1, packed]
          \item First
          \item Second\footnote{test1} hello
          \item Third\footnote{test2} hello
          \stopitemize
        \eTD
      \eTR
      \eTABLE}
     {\placelocalfootnotes}
   \stoplocalfootnotes}

\stoptext

Wolfgang

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Footnote disappears (TABLE, itemize)
  2011-03-20 21:29 ` Wolfgang Schuster
@ 2011-03-21 12:06   ` Vedran Miletić
  0 siblings, 0 replies; 3+ messages in thread
From: Vedran Miletić @ 2011-03-21 12:06 UTC (permalink / raw)
  To: mailing list for ConTeXt users


[-- Attachment #1.1: Type: text/plain, Size: 1322 bytes --]

2011/3/20 Wolfgang Schuster <schuster.wolfgang@googlemail.com>

>
> Am 20.03.2011 um 22:08 schrieb Vedran Miletić:
>
> > Hi,
> >
> > the following code makes first footnote disappear.
> >
> > \starttext
> > \placetable{My table}{\bTABLE
> > \bTR \bTD {\bf Something} \eTD \bTD \startitemize[1, packed]
> >         \item First
> >         \item Second\footnote{test1} hello
> >         \item Third\footnote{test2} hello
> > \stopitemize \eTD \eTR
> > \eTABLEbody
> > \eTABLE}
> > \stoptext
>
> Add \automigrateinserts or use local footnotes, be aware that floats and
> footnotes don’t work well together.
>

Thanks, but please consider this:

\starttext
\placetable{My table}{\bTABLE
\bTR \bTD {\bf Something} \eTD \bTD \startitemize[1, packed]
        \item First\footnote{test1} hello
        \item Second\footnote{test2} hello
\stopitemize \eTD \eTR
\eTABLEbody
\eTABLE}
\stoptext

both footnotes now appear; or even this:

\starttext
\placetable{My table}{\bTABLE
\bTR \bTD {\bf Something} \eTD \bTD \startitemize[1, packed]
        \item First\footnote{test1} hello
        \item Second\footnote{test2} hello
        \item Third\footnote{test3} hello
\stopitemize \eTD \eTR
\eTABLEbody
\eTABLE}
\stoptext

all three footnotes appear.

Regards,

Vedran Miletić

[-- Attachment #1.2: Type: text/html, Size: 1859 bytes --]

[-- Attachment #2: Type: text/plain, Size: 486 bytes --]

___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-03-21 12:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-03-20 21:08 Footnote disappears (TABLE, itemize) Vedran Miletić
2011-03-20 21:29 ` Wolfgang Schuster
2011-03-21 12:06   ` Vedran Miletić

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).