ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* Notes after a chapter
@ 2016-07-21 14:04 Ursula Hermann
  2016-07-21 20:54 ` Wolfgang Schuster
  0 siblings, 1 reply; 3+ messages in thread
From: Ursula Hermann @ 2016-07-21 14:04 UTC (permalink / raw)
  To: 'mailing list for ConTeXt users'


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

Hello list, 

 

I would like to have notes after a section. Now I would like to know: in the
command\setupfootnote there is a key called :after, but  the key had a red
color, i don’t know if i could need it, and i don’t know what command i
should give in the key after: maybe after=section? Sorry for the long text
below.

My second question is: When there are notes, which are after all sections,
what there is the right command: 

I have : 

\setuppapersize[A4]

\definelinenote[note]

\setuplinenote[note]

\setupdescription[note]

\starttext

\startchapter

\mainlanguage[de]

DIE INFORMELLE WIRTSCHAFT

Zwischen neuen Entwicklungen und alten Rahmenbedingungen

Das Wachstum einer informellen Wirtschaft in den Großstädten
hochentwickelter Länder wirft neue Fragen über die Beziehung auf, die heute
zwischen der Wirtschaft einerseits und den gesetzlichen Regelungen
andererseits besteht. \note {1}Den Begriff »informelle Wirtschaft« verwende
ich für jene einkommenbringenden Tätigkeiten, die außerhalb der gesetzlichen
Regelungen stattfinden, aber dennoch denen, die sich daran halten, ähneln;
so werden Umfang und Wesen der informellen Wirtschaft dennoch durch diese
Regelungen, denen sie sich eigentlich entziehen, bestimmt. Aus diesem Grund
kann man das Wesen der informellen Wirtschaft, der Schattenwirtschaft, nur
dann erfassen, wenn man sie in Beziehung zur offiziellen Wirtschaft setzt,
also zu den geregelten einkommenbringenden Tätigkeiten.

\stoptext

 

Thank you

 

Uschi


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

[-- Attachment #2: Type: text/plain, Size: 485 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: Notes after a chapter
  2016-07-21 14:04 Notes after a chapter Ursula Hermann
@ 2016-07-21 20:54 ` Wolfgang Schuster
  2016-07-22 14:13   ` Ursula Hermann
  0 siblings, 1 reply; 3+ messages in thread
From: Wolfgang Schuster @ 2016-07-21 20:54 UTC (permalink / raw)
  To: mailing list for ConTeXt users


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

> Ursula Hermann <mailto:ursula.hermann@univie.ac.at>
> 21. Juli 2016 um 16:04
>
> Hello list,
>
> I would like to have notes after a section. Now I would like to know: 
> in the command\setupfootnote there is a key called :after, but  the 
> key had a red color, i don't know if i could need it, and i don't know 
> what command i should give in the key after: maybe after=section? 
> Sorry for the long text below.
>
I don't know what you mean with the red colorbut you can place notes at 
the end of a chapter with the following setup.

\setupnote[footnote][location=none]

\setuphead[chapter][aftersection={\placenotes[footnote]}]

\starttext

\startchapter[title={Ward}]
\dorecurse{12}{\input ward \footnote{Footnote #1}\par}
\stopchapter

\stoptext

> My second question is: When there are notes, which are after all 
> sections, what there is the right command:
>
> I have :
>
> \setuppapersize[A4]
>
> \definelinenote[note]
>
> \setuplinenote[note]
>
> \setupdescription[note]
>
> \starttext
>
> \startchapter
>
> \mainlanguage[de]
>
> DIE INFORMELLE WIRTSCHAFT
>
> Zwischen neuen Entwicklungen und alten Rahmenbedingungen
>
> Das Wachstum einer informellen Wirtschaft in den Großstädten 
> hochentwickelter Länder wirft neue Fragen über die Beziehung auf, die 
> heute zwischen der Wirtschaft einerseits und den gesetzlichen 
> Regelungen andererseits besteht. \note {1}Den Begriff »informelle 
> Wirtschaft« verwende ich für jene einkommenbringenden Tätigkeiten, die 
> außerhalb der gesetzlichen Regelungen stattfinden, aber dennoch denen, 
> die sich daran halten, ähneln; so werden Umfang und Wesen der 
> informellen Wirtschaft dennoch durch diese Regelungen, denen sie sich 
> eigentlich entziehen, bestimmt. Aus diesem Grund kann man das Wesen 
> der informellen Wirtschaft, der Schattenwirtschaft, nur dann erfassen, 
> wenn man sie in Beziehung zur offiziellen Wirtschaft setzt, also zu 
> den geregelten einkommenbringenden Tätigkeiten.
>
> \stoptext
>
>
1. \stopchapter is missing in your example

2. The \note command already exists and you redefine it in your example 
which is a bad idea.

3. Where do you have a note *after* a section in your example?

Wolfgang

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

[-- Attachment #2: Type: text/plain, Size: 485 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: Notes after a chapter
  2016-07-21 20:54 ` Wolfgang Schuster
@ 2016-07-22 14:13   ` Ursula Hermann
  0 siblings, 0 replies; 3+ messages in thread
From: Ursula Hermann @ 2016-07-22 14:13 UTC (permalink / raw)
  To: 'mailing list for ConTeXt users'


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

Hallo Wolfgang

 

That works. Thanks a lot. 

 

Uschi

 

Von: ntg-context [mailto:ntg-context-bounces@ntg.nl] Im Auftrag von Wolfgang
Schuster
Gesendet: Donnerstag, 21. Juli 2016 22:55
An: mailing list for ConTeXt users
Betreff: Re: [NTG-context] Notes after a chapter

 

 <mailto:ursula.hermann@univie.ac.at> Ursula Hermann

21. Juli 2016 um 16:04

Hello list, 

 

I would like to have notes after a section. Now I would like to know: in the
command\setupfootnote there is a key called :after, but  the key had a red
color, i don’t know if i could need it, and i don’t know what command i
should give in the key after: maybe after=section? Sorry for the long text
below.

I don’t know what you mean with the red color but you can place notes at the
end of a chapter with the following setup.

\setupnote[footnote][location=none]

\setuphead[chapter][aftersection={\placenotes[footnote]}]

\starttext

\startchapter[title={Ward}]
\dorecurse{12}{\input ward \footnote{Footnote #1}\par}
\stopchapter

\stoptext




My second question is: When there are notes, which are after all sections,
what there is the right command: 

I have : 

\setuppapersize[A4]

\definelinenote[note]

\setuplinenote[note]

\setupdescription[note]

\starttext

\startchapter

\mainlanguage[de]

DIE INFORMELLE WIRTSCHAFT

Zwischen neuen Entwicklungen und alten Rahmenbedingungen

Das Wachstum einer informellen Wirtschaft in den Großstädten
hochentwickelter Länder wirft neue Fragen über die Beziehung auf, die heute
zwischen der Wirtschaft einerseits und den gesetzlichen Regelungen
andererseits besteht. \note {1}Den Begriff »informelle Wirtschaft« verwende
ich für jene einkommenbringenden Tätigkeiten, die außerhalb der gesetzlichen
Regelungen stattfinden, aber dennoch denen, die sich daran halten, ähneln;
so werden Umfang und Wesen der informellen Wirtschaft dennoch durch diese
Regelungen, denen sie sich eigentlich entziehen, bestimmt. Aus diesem Grund
kann man das Wesen der informellen Wirtschaft, der Schattenwirtschaft, nur
dann erfassen, wenn man sie in Beziehung zur offiziellen Wirtschaft setzt,
also zu den geregelten einkommenbringenden Tätigkeiten.

\stoptext

 

1. \stopchapter is missing in your example

2. The \note command already exists and you redefine it in your example
which is a bad idea.

3. Where do you have a note *after* a section in your example?

Wolfgang


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

[-- Attachment #2: Type: text/plain, Size: 485 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:[~2016-07-22 14:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-21 14:04 Notes after a chapter Ursula Hermann
2016-07-21 20:54 ` Wolfgang Schuster
2016-07-22 14:13   ` Ursula Hermann

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