* serial letters @ 2019-04-08 13:26 Henning Hraban Ramm 2019-04-09 19:38 ` Wolfgang Schuster 2019-05-24 11:49 ` Jean-Philippe Rey 0 siblings, 2 replies; 10+ messages in thread From: Henning Hraban Ramm @ 2019-04-08 13:26 UTC (permalink / raw) To: mailing list for ConTeXt users How would you approach serial letters, e.g. to all members of a club? (Actually I need to send out donation receipts.) I’d like to use the letter module, since my usual letter design is using it. I can export the addresses to CSV, JSON, Lua tables or whatever or transfer them to a SQLite db. Would it make more sense to read them in Lua and combine this data with a buffer, or to write a single tex file for every letter? I know how to do the latter, but I’d like to learn a more ConTeXt-ish way. Would it make sense to use the bibliographies module? Greetlings, Hraban --- https://www.fiee.net http://wiki.contextgarden.net https://www.dreiviertelhaus.de GPG Key ID 1C9B22FD ___________________________________________________________________________________ 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] 10+ messages in thread
* Re: serial letters 2019-04-08 13:26 serial letters Henning Hraban Ramm @ 2019-04-09 19:38 ` Wolfgang Schuster 2019-04-10 7:08 ` Henning Hraban Ramm 2024-11-11 13:46 ` [NTG-context] " juh+ntg-context--- via ntg-context 2019-05-24 11:49 ` Jean-Philippe Rey 1 sibling, 2 replies; 10+ messages in thread From: Wolfgang Schuster @ 2019-04-09 19:38 UTC (permalink / raw) To: mailing list for ConTeXt users, Henning Hraban Ramm Henning Hraban Ramm schrieb am 08.04.2019 um 15:26: > How would you approach serial letters, e.g. to all members of a club? > (Actually I need to send out donation receipts.) > > I’d like to use the letter module, since my usual letter design is using it. > > I can export the addresses to CSV, JSON, Lua tables or whatever or transfer them to a SQLite db. > Would it make more sense to read them in Lua and combine this data with a buffer, or to write a single tex file for every letter? > I know how to do the latter, but I’d like to learn a more ConTeXt-ish way. > Would it make sense to use the bibliographies module? You can use the letter module when you drop the normal letter-environment which is to limited in this case because it uses the buffer mechanism to store the content. To have more control over the content for the opening etc. you can switch to the setups alternative (even the content can be set in this way instead of the default buffer) and set all texts with a setups-block. The letter itself can be flushed with the \placeletter command, below is a simple example where I flush the letter after each variables setting but you should be able to do the same with a lua table or csv file. \usemodule[letter] \setuplettersection [opening] [alternative=setups] \startsetups [letter:section:opening] \doifelse{\getvariable{address}{sex}}{male} {Dear Sir,} {Dear Madam,} \stopsetups \setvariable{address}{set}{\placeletter} \starttext \startlettercontent \unknown \stoplettercontent \setvariables [address] [name=John, sex=male] \setvariables [address] [name=Anna, sex=female] \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://context.aanhet.net archive : https://bitbucket.org/phg/context-mirror/commits/ wiki : http://contextgarden.net ___________________________________________________________________________________ ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: serial letters 2019-04-09 19:38 ` Wolfgang Schuster @ 2019-04-10 7:08 ` Henning Hraban Ramm 2019-05-06 11:15 ` Jan U. Hasecke 2024-11-11 13:46 ` [NTG-context] " juh+ntg-context--- via ntg-context 1 sibling, 1 reply; 10+ messages in thread From: Henning Hraban Ramm @ 2019-04-10 7:08 UTC (permalink / raw) To: mailing list for ConTeXt users Am 2019-04-09 um 21:38 schrieb Wolfgang Schuster <wolfgang.schuster.lists@gmail.com>: > Henning Hraban Ramm schrieb am 08.04.2019 um 15:26: >> How would you approach serial letters, e.g. to all members of a club? >> (Actually I need to send out donation receipts.) >> >> I’d like to use the letter module, since my usual letter design is using it. >> >> I can export the addresses to CSV, JSON, Lua tables or whatever or transfer them to a SQLite db. >> Would it make more sense to read them in Lua and combine this data with a buffer, or to write a single tex file for every letter? >> I know how to do the latter, but I’d like to learn a more ConTeXt-ish way. >> Would it make sense to use the bibliographies module? > > You can use the letter module when you drop the normal letter-environment which is to limited in this case because it uses the buffer mechanism to store the content. > > To have more control over the content for the opening etc. you can switch to the setups alternative (even the content can be set in this way instead of the default buffer) and set all texts with a setups-block. > > The letter itself can be flushed with the \placeletter command, below is a simple example where I flush the letter after each variables setting but you should be able to do the same with a lua table or csv file. Thank you very much! I’ll try to come up with a solution (and document it). Grüßlinge, Hraban --- https://www.fiee.net http://wiki.contextgarden.net https://www.dreiviertelhaus.de GPG Key ID 1C9B22FD ___________________________________________________________________________________ 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] 10+ messages in thread
* Re: serial letters 2019-04-10 7:08 ` Henning Hraban Ramm @ 2019-05-06 11:15 ` Jan U. Hasecke 2019-05-07 10:08 ` Henning Hraban Ramm 0 siblings, 1 reply; 10+ messages in thread From: Jan U. Hasecke @ 2019-05-06 11:15 UTC (permalink / raw) To: ntg-context Am 10.04.19 um 09:08 schrieb Henning Hraban Ramm: > Thank you very much! I’ll try to come up with a solution (and document it). Did you find a solution? I am very interested as LibreOffice's serial letter function is annoying. Grüße juh -- Software-Dokumentation mit Sphinx Zweite überarbeitete Auflage (Sphinx 2.0) https://www.amazon.de/dp/1793008779 Paperback: 282 Seiten ___________________________________________________________________________________ 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] 10+ messages in thread
* Re: serial letters 2019-05-06 11:15 ` Jan U. Hasecke @ 2019-05-07 10:08 ` Henning Hraban Ramm 0 siblings, 0 replies; 10+ messages in thread From: Henning Hraban Ramm @ 2019-05-07 10:08 UTC (permalink / raw) To: mailing list for ConTeXt users Am 2019-05-06 um 13:15 schrieb Jan U. Hasecke <juh+ntg-context@mailbox.org>: > Am 10.04.19 um 09:08 schrieb Henning Hraban Ramm: >> Thank you very much! I’ll try to come up with a solution (and document it). > > Did you find a solution? I am very interested as LibreOffice's serial > letter function is annoying. Hi! Not yet, sorry, other stuff was more important... Grüßlinge, Hraban --- https://www.fiee.net http://wiki.contextgarden.net https://www.dreiviertelhaus.de GPG Key ID 1C9B22FD ___________________________________________________________________________________ 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] 10+ messages in thread
* [NTG-context] Re: serial letters 2019-04-09 19:38 ` Wolfgang Schuster 2019-04-10 7:08 ` Henning Hraban Ramm @ 2024-11-11 13:46 ` juh+ntg-context--- via ntg-context 2024-11-11 15:12 ` Robert via ntg-context 1 sibling, 1 reply; 10+ messages in thread From: juh+ntg-context--- via ntg-context @ 2024-11-11 13:46 UTC (permalink / raw) To: ntg-context; +Cc: juh+ntg-context Dear all, using this example below from 2019 to make a serial letter I get three pages. The second letter is split on page 2 and 3. Are there any new approaches to make serial letters? TIA juh Am 09.04.19 um 21:38 schrieb Wolfgang Schuster: > \usemodule[letter] > > \setuplettersection > [opening] > [alternative=setups] > > \startsetups [letter:section:opening] > \doifelse{\getvariable{address}{sex}}{male} > {Dear Sir,} > {Dear Madam,} > \stopsetups > > \setvariable{address}{set}{\placeletter} > > \starttext > > \startlettercontent > \unknown > \stoplettercontent > > \setvariables > [address] > [name=John, > sex=male] > > \setvariables > [address] > [name=Anna, > sex=female] > > \stoptext ___________________________________________________________________________________ If your question is of interest to others as well, please add an entry to the Wiki! maillist : ntg-context@ntg.nl / https://mailman.ntg.nl/mailman3/lists/ntg-context.ntg.nl webpage : https://www.pragma-ade.nl / https://context.aanhet.net (mirror) archive : https://github.com/contextgarden/context wiki : https://wiki.contextgarden.net ___________________________________________________________________________________ ^ permalink raw reply [flat|nested] 10+ messages in thread
* [NTG-context] Re: serial letters 2024-11-11 13:46 ` [NTG-context] " juh+ntg-context--- via ntg-context @ 2024-11-11 15:12 ` Robert via ntg-context 0 siblings, 0 replies; 10+ messages in thread From: Robert via ntg-context @ 2024-11-11 15:12 UTC (permalink / raw) To: mailing list for ConTeXt users; +Cc: r.ermers Interesting question. You can use an xml database in which you collect your contacts and how to address them. I have been doing this for over 20 years now. Try this for a single letter: \startxmlsetups xml:setups \xmlfilter{#1}{contact[@label=‘labelMaryDoe']/command(xml:contact)} \xmlsetsetup{#1}{prefix|email|initials|address|city|telephone|information|internet|prov|informalname|formalname|telephone||formalname|mobiletelephone}{xml:*} \stopxmlsetups \xmlregistersetup{xml:setups} \setuplettersection[content][alternative=setups] \startsetups[letter:section:content] \readtexfile{./letter-to-mycontacts.tex}{} \stopsetups \startxmlsetups xml:contact \setupletter [toaddress={\switchtobodyfont[reset,10pt]\xmltext{#1}{/address/(bn|nm|st|pz|p)/command(xml:p)} {\switchtobodyfont[reset,kixbarc,9pt]\xmltext{#1}{/kix}}}, opening={Dear \xmltext{#1}{/prefix} \xmltext{#1}{/formalname},}, closing={Kind regards,}, subject={Subject: How to write interesting letters}, signature={Joseph Doe, \setupitemize[before=\tfx] {\startitemize[blacktriangle,joinedup,packed,nowhite,text] \item Brother of John Doe \stopitemize }}] \relax \placeletter \stopxmlsetups \setuppagenumbering [state=stop] \starttext \xmlprocessfile{contacts}{myaddresses.xml}{} \stoptext 00000 my addresses.xml: <contacts> <contact label='labelMaryDoe'> <initials>M.</initials> <formalname>Doe</formalname> <informalname>Mary</informalname> <prefix>Mrs</prefix> <telephone>010-12343243</telephone> <address> <p>Organisation</p> <p>T.a.v. Mrs. M. Doe</p> <p>Long Alley</p> <p>Shortby</p> </address> <email>m.doe@organisation.com</email> <information>sent letter in 2024.</information> </contact> </contacts> > Op 11 nov 2024, om 14:46 heeft juh+ntg-context--- via ntg-context <ntg-context@ntg.nl> het volgende geschreven: > > Dear all, > > using this example below from 2019 to make a serial letter I get three pages. > The second letter is split on page 2 and 3. > > Are there any new approaches to make serial letters? > > TIA > juh > > Am 09.04.19 um 21:38 schrieb Wolfgang Schuster: >> \usemodule[letter] >> \setuplettersection >> [opening] >> [alternative=setups] >> \startsetups [letter:section:opening] >> \doifelse{\getvariable{address}{sex}}{male} >> {Dear Sir,} >> {Dear Madam,} >> \stopsetups >> \setvariable{address}{set}{\placeletter} >> \starttext >> \startlettercontent >> \unknown >> \stoplettercontent >> \setvariables >> [address] >> [name=John, >> sex=male] >> \setvariables >> [address] >> [name=Anna, >> sex=female] >> \stoptext > > ___________________________________________________________________________________ > If your question is of interest to others as well, please add an entry to the Wiki! > > maillist : ntg-context@ntg.nl / https://mailman.ntg.nl/mailman3/lists/ntg-context.ntg.nl > webpage : https://www.pragma-ade.nl / https://context.aanhet.net (mirror) > archive : https://github.com/contextgarden/context > wiki : https://wiki.contextgarden.net > ___________________________________________________________________________________ ___________________________________________________________________________________ If your question is of interest to others as well, please add an entry to the Wiki! maillist : ntg-context@ntg.nl / https://mailman.ntg.nl/mailman3/lists/ntg-context.ntg.nl webpage : https://www.pragma-ade.nl / https://context.aanhet.net (mirror) archive : https://github.com/contextgarden/context wiki : https://wiki.contextgarden.net ___________________________________________________________________________________ ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: serial letters 2019-04-08 13:26 serial letters Henning Hraban Ramm 2019-04-09 19:38 ` Wolfgang Schuster @ 2019-05-24 11:49 ` Jean-Philippe Rey 2019-05-24 16:05 ` Wolfgang Schuster 1 sibling, 1 reply; 10+ messages in thread From: Jean-Philippe Rey @ 2019-05-24 11:49 UTC (permalink / raw) To: mailing list for ConTeXt users Hello Everybody, > Le 8 avr. 2019 à 15:26, Henning Hraban Ramm <texml@fiee.net> a écrit : > > How would you approach serial letters, e.g. to all members of a club? > (Actually I need to send out donation receipts.) > > I’d like to use the letter module, since my usual letter design is using it. > > I can export the addresses to CSV, JSON, Lua tables or whatever or transfer them to a SQLite db. > Would it make more sense to read them in Lua and combine this data with a buffer, or to write a single tex file for every letter? > I know how to do the latter, but I’d like to learn a more ConTeXt-ish way. > Would it make sense to use the bibliographies module? I have the same need. I tried a basic solution: ======================= Start failing example \usemodule[letter] \setupletter[ signature={JPR}, closing={Sincerely yours,} ] \def\GenLetter[#1]{ \getparameters[GL][#1] \startletter[ toname={\GLto}, toaddress={\GLadr}, opening={\GLciv}, ] Blah blah \GLciv. \stopletter } \starttext \GenLetter[civ={M.}, to={Pierre Durand}, adr={Trifouillis-les-Oies}] \stoptext ======================= End failing example My idea being to generate as many letters I like by multiplying the \GenLetter line. However, I get an error message I don’t understand. Can someone point to the thing I am doing wrong ? Thank you. Here is the corresponding console output: ======================= Start console output This is LuaTeX, Version 1.09.0 (TeX Live 2019/dev) system commands enabled. open source > level 1, order 1, name '/Users/jprey/Applications/ConTeXt/2018-09-13/tex/texmf-context/tex/context/base/mkiv/cont-yes.mkiv' system > system > ConTeXt ver: 2018.09.13 17:41 MKIV beta fmt: 2018.9.16 int: english/english system > system > 'cont-new.mkiv' loaded open source > level 2, order 2, name '/Users/jprey/Applications/ConTeXt/2018-09-13/tex/texmf-context/tex/context/base/mkiv/cont-new.mkiv' system > beware: some patches loaded from cont-new.mkiv close source > level 2, order 2, name '/Users/jprey/Applications/ConTeXt/2018-09-13/tex/texmf-context/tex/context/base/mkiv/cont-new.mkiv' system > files > jobname 'letterTest', input './letterTest', result 'letterTest' fonts > latin modern fonts are not preloaded languages > language 'en' is active system > synctex functionality is enabled, expect 5-10 pct runtime overhead! open source > level 2, order 3, name '/Users/jprey/SCA/Concours/2019/JURY/Confirmation fonction/letterTest.tex' modules > 'letter' is loaded open source > level 3, order 4, name '/Users/jprey/Applications/ConTeXt/2018-09-13/tex/texmf-modules/tex/context/third/letter/base/s-cor-01.mkvi' modules > 'cor-00' is loaded open source > level 4, order 5, name '/Users/jprey/Applications/ConTeXt/2018-09-13/tex/texmf-modules/tex/context/third/letter/base/s-cor-00.mkvi' resolvers > lua > loading file '/Users/jprey/Applications/ConTeXt/2018-09-13/tex/texmf-modules/tex/context/third/letter/base/s-cor-00.lua' succeeded close source > level 4, order 5, name '/Users/jprey/Applications/ConTeXt/2018-09-13/tex/texmf-modules/tex/context/third/letter/base/s-cor-00.mkvi' modules > 'cor-06' is loaded open source > level 4, order 6, name '/Users/jprey/Applications/ConTeXt/2018-09-13/tex/texmf-modules/tex/context/third/letter/base/s-cor-06.mkvi' close source > level 4, order 6, name '/Users/jprey/Applications/ConTeXt/2018-09-13/tex/texmf-modules/tex/context/third/letter/base/s-cor-06.mkvi' open source > level 4, order 7, name '/Users/jprey/Applications/ConTeXt/2018-09-13/tex/texmf-modules/tex/context/third/letter/style/letter-imp-default.mkiv' close source > level 4, order 7, name '/Users/jprey/Applications/ConTeXt/2018-09-13/tex/texmf-modules/tex/context/third/letter/style/letter-imp-default.mkiv' open source > level 4, order 8, name '/Users/jprey/Applications/ConTeXt/2018-09-13/tex/texmf-modules/tex/context/third/letter/style/letter-imp-dinb.mkiv' open source > level 5, order 9, name '/Users/jprey/Applications/ConTeXt/2018-09-13/tex/texmf-modules/tex/context/third/letter/style/letter-imp-default.mkiv' close source > level 5, order 9, name '/Users/jprey/Applications/ConTeXt/2018-09-13/tex/texmf-modules/tex/context/third/letter/style/letter-imp-default.mkiv' close source > level 4, order 9, name '/Users/jprey/Applications/ConTeXt/2018-09-13/tex/texmf-modules/tex/context/third/letter/style/letter-imp-dinb.mkiv' system > module wrapping error in 'letter' close source > level 3, order 9, name '/Users/jprey/Applications/ConTeXt/2018-09-13/tex/texmf-modules/tex/context/third/letter/base/s-cor-01.mkvi' fonts > preloading latin modern fonts (second stage) fonts > 'fallback modern-designsize rm 12pt' is loaded tex error > tex error on line 23 in file /Users/jprey/SCA/Concours/2019/JURY/Confirmation fonction/letterTest.tex: ! Undefined control sequence <inserted text> ...v!letter \edef \p_correspondence_option_option {\correspondenceoptionpara... \correspondence_place ...\t_correspondence_before \page \setuplayout [\c!met... \correspondence_stop ...\correspondence_place [#1] \endgroup \stoptext l.23 ...{Pierre Durand}, adr={Trifouillis-les-Oies}] 13 opening={\GLciv}, 14 ] 15 16 Blah blah \GLciv. 17 18 \stopletter 19 } 20 21 \starttext 22 23 >> \GenLetter[civ={M.}, to={Pierre Durand}, adr={Trifouillis-les-Oies}] 24 25 \stoptext 26 ======================= End console output -- Jean-Philippe Rey jean-philippe.rey@centralesupelec.fr 91192 Gif-sur-Yvette Cedex - France Empreinte PGP : 807A 5B2C 69E4 D4B5 783A 428A 1B5E E83E 261B BF51 ___________________________________________________________________________________ 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] 10+ messages in thread
* Re: serial letters 2019-05-24 11:49 ` Jean-Philippe Rey @ 2019-05-24 16:05 ` Wolfgang Schuster 2019-05-24 18:19 ` jean-philippe.rey 0 siblings, 1 reply; 10+ messages in thread From: Wolfgang Schuster @ 2019-05-24 16:05 UTC (permalink / raw) To: mailing list for ConTeXt users, Jean-Philippe Rey Jean-Philippe Rey schrieb am 24.05.2019 um 13:49: > Hello Everybody, > >> Le 8 avr. 2019 à 15:26, Henning Hraban Ramm <texml@fiee.net> a écrit : >> >> How would you approach serial letters, e.g. to all members of a club? >> (Actually I need to send out donation receipts.) >> >> I’d like to use the letter module, since my usual letter design is using it. >> >> I can export the addresses to CSV, JSON, Lua tables or whatever or transfer them to a SQLite db. >> Would it make more sense to read them in Lua and combine this data with a buffer, or to write a single tex file for every letter? >> I know how to do the latter, but I’d like to learn a more ConTeXt-ish way. >> Would it make sense to use the bibliographies module? > I have the same need. I tried a basic solution: > > ======================= Start failing example > \usemodule[letter] > > \setupletter[ > signature={JPR}, > closing={Sincerely yours,} > ] > > \def\GenLetter[#1]{ > \getparameters[GL][#1] > \startletter[ > toname={\GLto}, > toaddress={\GLadr}, > opening={\GLciv}, > ] > > Blah blah \GLciv. > > \stopletter > } > > \starttext > > \GenLetter[civ={M.}, to={Pierre Durand}, adr={Trifouillis-les-Oies}] > > \stoptext > ======================= End failing example > > My idea being to generate as many letters I like by multiplying the \GenLetter line. > > However, I get an error message I don’t understand. Can someone point to the thing I am doing wrong ? The problem is that you put the letter-environment in a command but the environment uses the buffer mechanism to store the content which doesn't work when it is used in a command definition. What you have to do is to move the content of the letters out of the \GenLetter command, you can use the lettercontent-environment for this. In the \GenLetter command you now use the \placeletter command to flush the content of the letter with the current values for the address etc. %%%% begin example \usemodule[letter] \setupletter [signature={JPR}, closing={Sincerely yours,}] \setupletter [ toname=\correspondenceparameter{to}, toaddress=\correspondenceparameter{adr}, opening=\correspondenceparameter{civ}] \startlettercontent Blah blah \correspondenceparameter{civ}. \stoplettercontent \def\GenLetter[#1]% {\begingroup \setupletter[#1]% \placeletter \endgroup} \starttext \GenLetter[civ={M.}, to={Pierre Durand}, adr={Trifouillis-les-Oies}] \stoptext %%%% end example 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://context.aanhet.net archive : https://bitbucket.org/phg/context-mirror/commits/ wiki : http://contextgarden.net ___________________________________________________________________________________ ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: serial letters 2019-05-24 16:05 ` Wolfgang Schuster @ 2019-05-24 18:19 ` jean-philippe.rey 0 siblings, 0 replies; 10+ messages in thread From: jean-philippe.rey @ 2019-05-24 18:19 UTC (permalink / raw) To: mailing list for ConTeXt users Thank you very much Wolfgang, It works very well and perfectly suits my needs. Thanks again, > Le 24 mai 2019 à 18:05, Wolfgang Schuster <wolfgang.schuster.lists@gmail.com> a écrit : > > The problem is that you put the letter-environment in a command but the environment uses the buffer mechanism to store the content which doesn't work when it is used in a command definition. > > What you have to do is to move the content of the letters out of the \GenLetter command, you can use the lettercontent-environment for this. In the \GenLetter command you now use the \placeletter command to flush the content of the letter with the current values for the address etc. > > %%%% begin example > \usemodule[letter] > > \setupletter > [signature={JPR}, > closing={Sincerely yours,}] > > \setupletter > [ toname=\correspondenceparameter{to}, > toaddress=\correspondenceparameter{adr}, > opening=\correspondenceparameter{civ}] > > \startlettercontent > Blah blah \correspondenceparameter{civ}. > \stoplettercontent > > \def\GenLetter[#1]% > {\begingroup > \setupletter[#1]% > \placeletter > \endgroup} > > \starttext > > \GenLetter[civ={M.}, to={Pierre Durand}, adr={Trifouillis-les-Oies}] > > \stoptext > %%%% end example > > Wolfgang -- Jean-Philippe Rey jean-philippe.rey@centralesupelec.fr 91192 Gif-sur-Yvette Cedex - France Empreinte PGP : 807A 5B2C 69E4 D4B5 783A 428A 1B5E E83E 261B BF51 ___________________________________________________________________________________ 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] 10+ messages in thread
end of thread, other threads:[~2024-11-11 15:34 UTC | newest] Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2019-04-08 13:26 serial letters Henning Hraban Ramm 2019-04-09 19:38 ` Wolfgang Schuster 2019-04-10 7:08 ` Henning Hraban Ramm 2019-05-06 11:15 ` Jan U. Hasecke 2019-05-07 10:08 ` Henning Hraban Ramm 2024-11-11 13:46 ` [NTG-context] " juh+ntg-context--- via ntg-context 2024-11-11 15:12 ` Robert via ntg-context 2019-05-24 11:49 ` Jean-Philippe Rey 2019-05-24 16:05 ` Wolfgang Schuster 2019-05-24 18:19 ` jean-philippe.rey
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).