ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* using both footnotes and endnotes in a document
@ 2018-07-27  0:01 Robert Zydenbos
  2018-07-27  1:22 ` Henri Menke
  0 siblings, 1 reply; 5+ messages in thread
From: Robert Zydenbos @ 2018-07-27  0:01 UTC (permalink / raw)
  To: mailing list for ConTeXt users

A puzzle for note specialists: I would like to use both endnotes as well as footnotes in one and the same document, for different kinds of notes.

Ideally, I should be able to write something like:

-----
Here is a footnote,\footnote{The footnotes comes here.} and now comes an note that should appear at the end of my text.\endnote{And this is the endnote.}
-----

For this I would need commands for determining the kind of markers for the notes (I know what to do for footnotes: this looks like \setupfootnotes [conversion=characters]; but what does one do for endnotes?)

Robert
___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: using both footnotes and endnotes in a document
  2018-07-27  0:01 using both footnotes and endnotes in a document Robert Zydenbos
@ 2018-07-27  1:22 ` Henri Menke
  2018-07-27  9:47   ` Robert Zydenbos
  0 siblings, 1 reply; 5+ messages in thread
From: Henri Menke @ 2018-07-27  1:22 UTC (permalink / raw)
  To: ntg-context

On 27/07/18 12:01, Robert Zydenbos wrote:
> A puzzle for note specialists: I would like to use both endnotes as well as footnotes in one and the same document, for different kinds of notes.
> 
> Ideally, I should be able to write something like:
> 
> -----
> Here is a footnote,\footnote{The footnotes comes here.} and now comes an note that should appear at the end of my text.\endnote{And this is the endnote.}
> -----
> 
> For this I would need commands for determining the kind of markers for the notes (I know what to do for footnotes: this looks like \setupfootnotes [conversion=characters]; but what does one do for endnotes?)

\setupnotation[footnote][numberconversion=characters]
\setupnotation[endnote] [numberconversion=set 2]
\starttext

\footnote{Hello}
\footnote{World}
\footnote{Oeps}
\footnote{\CONTEXT}
\endnote{Goodbye}
\endnote{Earth}
\endnote{End}
\endnote{Notes}

\placenotes[endnote]

\stoptext


> 
> Robert
> ___________________________________________________________________________________
> 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://context.aanhet.net
> archive  : https://bitbucket.org/phg/context-mirror/commits/
> wiki     : http://contextgarden.net
> ___________________________________________________________________________________
> 
___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: using both footnotes and endnotes in a document
  2018-07-27  1:22 ` Henri Menke
@ 2018-07-27  9:47   ` Robert Zydenbos
  2018-07-28 14:48     ` Pablo Rodriguez
  0 siblings, 1 reply; 5+ messages in thread
From: Robert Zydenbos @ 2018-07-27  9:47 UTC (permalink / raw)
  To: mailing list for ConTeXt users

This works fine with MkIV, but not with MkII (I tried by altering \setupnotation to the MkII command \setupfootnotes, but that doesn't work). I need MkII for my project.

Is what I am looking for at all possible in MkII?

> On 27. Jul 2018, at 03:22, Henri Menke <henrimenke@gmail.com> wrote:
> 
> On 27/07/18 12:01, Robert Zydenbos wrote:
>> A puzzle for note specialists: I would like to use both endnotes as well as footnotes in one and the same document, for different kinds of notes.
>> Ideally, I should be able to write something like:
>> -----
>> Here is a footnote,\footnote{The footnotes comes here.} and now comes an note that should appear at the end of my text.\endnote{And this is the endnote.}
>> -----
>> For this I would need commands for determining the kind of markers for the notes (I know what to do for footnotes: this looks like \setupfootnotes [conversion=characters]; but what does one do for endnotes?)
> 
> \setupnotation[footnote][numberconversion=characters]
> \setupnotation[endnote] [numberconversion=set 2]
> \starttext
> 
> \footnote{Hello}
> \footnote{World}
> \footnote{Oeps}
> \footnote{\CONTEXT}
> \endnote{Goodbye}
> \endnote{Earth}
> \endnote{End}
> \endnote{Notes}
> 
> \placenotes[endnote]
> 
> \stoptext


___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: using both footnotes and endnotes in a document
  2018-07-27  9:47   ` Robert Zydenbos
@ 2018-07-28 14:48     ` Pablo Rodriguez
  2018-08-05 22:53       ` Robert Zydenbos
  0 siblings, 1 reply; 5+ messages in thread
From: Pablo Rodriguez @ 2018-07-28 14:48 UTC (permalink / raw)
  To: ntg-context

On 07/27/2018 11:47 AM, Robert Zydenbos wrote:
> This works fine with MkIV, but not with MkII (I tried by altering
> \setupnotation to the MkII command \setupfootnotes, but that doesn't
> work). I need MkII for my project.
Hi Robert,

why is this required? Support for Indic scripts?

I think Hans added it for MkIV.

> Is what I am looking for at all possible in MkII?

  \setupnote [endnote] [conversion=characters]

I have learn how to create the format and invoke MkII, but this seems to
solve the problem.

I hope it helps,

Pablo
-- 
http://www.ousia.tk
___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

* Re: using both footnotes and endnotes in a document
  2018-07-28 14:48     ` Pablo Rodriguez
@ 2018-08-05 22:53       ` Robert Zydenbos
  0 siblings, 0 replies; 5+ messages in thread
From: Robert Zydenbos @ 2018-08-05 22:53 UTC (permalink / raw)
  To: mailing list for ConTeXt users

> On 28. Jul 2018, at 16:48, Pablo Rodriguez <oinos@gmx.es> wrote:
> 
> On 07/27/2018 11:47 AM, Robert Zydenbos wrote:
>> This works fine with MkIV, but not with MkII (I tried by altering
>> \setupnotation to the MkII command \setupfootnotes, but that doesn't
>> work). I need MkII for my project.
> Hi Robert,
> 
> why is this required? Support for Indic scripts?

Indeed.

> I think Hans added it for MkIV.
> 
>> Is what I am looking for at all possible in MkII?
> 
>  \setupnote [endnote] [conversion=characters]
> 
> I have learn how to create the format and invoke MkII, but this seems to
> solve the problem.
> 
> I hope it helps,

It does!

Robert

___________________________________________________________________________________
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://context.aanhet.net
archive  : https://bitbucket.org/phg/context-mirror/commits/
wiki     : http://contextgarden.net
___________________________________________________________________________________

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

end of thread, other threads:[~2018-08-05 22:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-27  0:01 using both footnotes and endnotes in a document Robert Zydenbos
2018-07-27  1:22 ` Henri Menke
2018-07-27  9:47   ` Robert Zydenbos
2018-07-28 14:48     ` Pablo Rodriguez
2018-08-05 22:53       ` Robert Zydenbos

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).