Re: [NTG-context] resetting footnote counter

2018-08-09 Thread Robert Zydenbos
What I've done is the following: I've made a zip archive (see attachment) with a few relevant files – the two first files that will be a part of the book: preface.tex and how-to-use.tex, together with an environment file manual-environment-xasia.tex with a lot of settings, and the starting file

Re: [NTG-context] resetting footnote counter

2018-08-09 Thread Wolfgang Schuster
You disable the chapter counter with \setuphead [chapter] [incrementnumber=no] which prevents the reset of the footnote counter. Wolfgang Robert Zydenbos schrieb am 09.08.18 um 17:21: What I've done is the following: I've made a zip archive (see attachment) with a few relevant files –

Re: [NTG-context] resetting footnote counter

2018-08-09 Thread Wolfgang Schuster
Have you tried to use mkiv for your document. Wolfgang Robert Zydenbos schrieb am 09.08.18 um 14:49: tex.stackexchange.com has page titled “How to manually reset the footnote numbering in ConTeXt?”

[NTG-context] resetting footnote counter

2018-08-09 Thread Robert Zydenbos
What I've done is the following: I've made a zip archive (see attachment) with a few relevant files – the two first files that will be a part of the book: preface.tex and how-to-use.tex, together with an environment file manual-environment-xasia.tex with a lot of settings, and the starting file

Re: [NTG-context] resetting footnote counter

2018-08-09 Thread Aditya Mahajan
On Thu, 9 Aug 2018, Robert Zydenbos wrote: I have tried ‘\resetcounter [footnote]’ (a suggested solution on that web page), but it does not work (at least not in MkII+XeTeX). ‘\setupcounter [footnote] [0]’ (also suggested on that web page) is rejected as an error. Can you post a minimal

Re: [NTG-context] resetting footnote counter

2018-08-09 Thread Robert Zydenbos
tex.stackexchange.com has page titled “How to manually reset the footnote numbering in ConTeXt?” (https://tex.stackexchange.com/questions/359702/how-to-manually-reset-the-footnote-numbering-in-context), where exactly the same question was asked: ---begin quote--- “I have a document with many

Re: [NTG-context] resetting footnote counter

2018-08-08 Thread Robert Zydenbos
Pablo's example works well on my machine. So there must be a disturbance at a different level in my complex text – perhaps in my settings: \setupnotedefinition [footnote] [location=serried, distance=1em, hang=1em] or \setupfootnotes[bodyfont={Mainfont,8pt}, width=\textwidth, frameoffset=1em,

Re: [NTG-context] resetting footnote counter

2018-08-08 Thread Hans Hagen
On 8/8/2018 5:48 PM, Aditya Mahajan wrote: On Wed, 8 Aug 2018, Robert Zydenbos wrote: A simple footnote question this time. I would like to print endnotes at the end of every chapter in my book, and then reset the footnote counter so that in the next chapter the first note will be ‘1’ again.

Re: [NTG-context] resetting footnote counter

2018-08-08 Thread Aditya Mahajan
On Wed, 8 Aug 2018, Robert Zydenbos wrote: A simple footnote question this time. I would like to print endnotes at the end of every chapter in my book, and then reset the footnote counter so that in the next chapter the first note will be ‘1’ again. I suppose this should be done by means of

Re: [NTG-context] resetting footnote counter

2018-08-08 Thread Pablo Rodriguez
On 08/08/2018 05:03 PM, Robert Zydenbos wrote: > Sorry, neither of these work (MkII with XeTeX). I get no error > messages with Pablo's suggestion, but not the desired result either. Weird, this works for me (with and without XeTeX): \setuppapersize[A8]

Re: [NTG-context] resetting footnote counter

2018-08-08 Thread Wolfgang Schuster
%\setupnote[footnote][way=bychapter,location=none] \setupfootnotes[way=bychapter,location=none] \starttext \dorecurse{10} {\expanded{\chapter{Chapter \recurselevel}} \dorecurse{10}{\input tufte\footnote{\input ward }\par} \placenotes[footnote]} \stoptext Wolfgang Robert Zydenbos

Re: [NTG-context] resetting footnote counter

2018-08-08 Thread Robert Zydenbos
Sorry, neither of these work (MkII with XeTeX). I get no error messages with Pablo's suggestion, but not the desired result either. Perhaps I need a very primitive command that I can insert at the beginning of every chapter. Robert > On 8. Aug 2018, at 16:54, Pablo Rodriguez wrote: > > On

Re: [NTG-context] resetting footnote counter

2018-08-08 Thread Pablo Rodriguez
On 08/08/2018 03:55 PM, Taco Hoekwater wrote: >> On 8 Aug 2018, at 15:33, Robert Zydenbos wrote: >> >> A simple footnote question this time. I would like to print >> endnotes at the end of every chapter in my book, and then reset the >> footnote ounter so that in the next chapter the first note

Re: [NTG-context] resetting footnote counter

2018-08-08 Thread Taco Hoekwater
> On 8 Aug 2018, at 15:33, Robert Zydenbos wrote: > > A simple footnote question this time. I would like to print endnotes at the > end of every chapter in my book, and then reset the footnote counter so that > in the next chapter the first note will be ‘1’ again. I suppose this should > be

[NTG-context] resetting footnote counter

2018-08-08 Thread Robert Zydenbos
A simple footnote question this time. I would like to print endnotes at the end of every chapter in my book, and then reset the footnote counter so that in the next chapter the first note will be ‘1’ again. I suppose this should be done by means of \setupfootnotes – but with which parameter?