RE: [NTG-context] m-bib module
Yes, I can see my test file :-) -- you should get the list in the test file if you state \setuppublicationlist [criterium=all] or \setuppublicationlist [criterium=section] for the list of pubs from the current section only. I succeeded after this, have a nice day, Martin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Adam Lindsay Sent: Thursday, October 28, 2004 11:01 PM To: [EMAIL PROTECTED]; mailing list for ConTeXt users; Taco Hoekwater Subject: Re: [NTG-context] m-bib module Martin Kolarik said this at Thu, 28 Oct 2004 20:14:55 +0200: >2. if I used simply \placepublications (or \placelist[pubs]) I got nothing. >And after some tracing I found that I did not set criterium=something. Hum. Thanks for the response, but I tried a minimal file, and it all became clear. If there's a \section in my test file, \placelist[pubs] and its variants doesn't work. If I take it out, the list appears just fine. Huh? -- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= Adam T. Lindsay, Computing Dept. [EMAIL PROTECTED] Lancaster University, InfoLab21+44(0)1524/510.514 Lancaster, LA1 4WA, UK Fax:+44(0)1524/510.492 -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- ___ ntg-context mailing list [EMAIL PROTECTED] http://www.ntg.nl/mailman/listinfo/ntg-context ___ ntg-context mailing list [EMAIL PROTECTED] http://www.ntg.nl/mailman/listinfo/ntg-context
RE: [NTG-context] m-bib module
Hi all, first I must apologize for delayed (and now induced by Adam too :-) response. What I have found: 1. startpublication stores data in a stream of data written as is without any processing. It was my first error -- I use XML and I created publication full of \XMLops and \XMLflushes, so in the time of usage of the publication all these macros expanded to empty string. So I have to rewrite XML handler :-) 2. if I used simply \placepublications (or \placelist[pubs]) I got nothing. And after some tracing I found that I did not set criterium=something. After correcting this, publications appeared correctly. I did not continue to check code after this success, but it seems to me the criterium parameter is NOT set for publication list by default. My mistake was I did not trust the bib module documentation, as I expected (myself :-) it is a good habit in the ConTeXt to set defaults of parameters to the values which allow user for the first hit catch reasonable output. So maybe this helps, have a nice day, Martin > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of Adam Lindsay > Sent: Thursday, October 28, 2004 7:44 PM > To: mailing list for ConTeXt users; Taco Hoekwater > Subject: Re: [NTG-context] m-bib module > > > Taco Hoekwater said this at Tue, 19 Oct 2004 16:44:14 +0200: > > >It works here, but I am not sure if that means anything. Can you try > > > > texexec --version > > > >and perhaps e-mail me a small (wrong) file as well? > > I just discovered this didn't work for me, either! > > Latest ConTeXt, just-downloaded m-bib-2004-08-30.zip. > > The key is here: > (./ReportLindsay.tuo) > system : pubs not found/processed > > It simply doesn't find the pubs list, but it's in the .tuo file! > -- > =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= > Adam T. Lindsay, Computing Dept. [EMAIL PROTECTED] > Lancaster University, InfoLab21+44(0)1524/510.514 > Lancaster, LA1 4WA, UK Fax:+44(0)1524/510.492 > -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- > > ___ > ntg-context mailing list > [EMAIL PROTECTED] > http://www.ntg.nl/mailman/listinfo/ntg-context > ___ ntg-context mailing list [EMAIL PROTECTED] http://www.ntg.nl/mailman/listinfo/ntg-context
RE: [NTG-context] m-bib module
Hi Taco, I am in doubt with \placepublications (\completepublications) -- it seems to me it does not work now. If I define publication in the text (\startpublication...) I am able to cite it (\cite), but \placepublications does not generate any output. Maybe it is some new stuff -- I remember the publications in the bib module documentation (your PDF in bib module distribution zip) in the middle of August, but now the PDF the last \completepublications does not contain. Thanks for any hints, Martin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Taco Hoekwater Sent: Monday, October 18, 2004 1:46 PM To: mailing list for ConTeXt users Subject: Re: [NTG-context] m-bib module Hi Fabrice, Sorry, I forgot to migrate my alpha bib module when the context alpha became the 'current distribution'. My latest module is/was still here: http://tex.aanhet.net/bib/alpha/ I will fix the website a.s.a.p. On Mon, 18 Oct 2004 13:40:34 +0200, Fabrice wrote: > I guess the new module is the one using t-bib.tex and t-list.tex. > -- groeten, Taco ___ ntg-context mailing list [EMAIL PROTECTED] http://www.ntg.nl/mailman/listinfo/ntg-context ___ ntg-context mailing list [EMAIL PROTECTED] http://www.ntg.nl/mailman/listinfo/ntg-context
RE: [NTG-context] Absolute positioning of graphics on the page
> This surely works ok for "top left". But how can I guarantee > that "top right" has its *top right* corner in the position? I > would have to calculate the coordinates manually (depending on > page site, "top right text" dimensions etc). Yes, AFAIK the mechanism does not support this now (and I do not know, if it sometimes will do -- it seems to me it is a relatively old part of ConTeXt and Hans himself recommends you the layers :-). Anyway, you would have to count positions and coordinates manually. But there is always a way using generic TeX here: \position(40,1){% \hbox to 0pt{% \hss \vbox to 0pt{ -- a material to typeset or display -- \vss } } Of course, this solution does not take into account all of ConTeXt dependent (and very convenient and pretty) features like grid fitting etc. It is a thing of your needs. Have a nice day, Martin ___ ntg-context mailing list [EMAIL PROTECTED] http://www.ntg.nl/mailman/listinfo/ntg-context
RE: [NTG-context] Absolute positioning of graphics on the page
Hi Giuseppe, try: \setuppositioning[unit=cm,factor=0.5] \starpositioning \position(1,1){top left text} \position(40,1){top right text} \stoppositioning Of course, the unit can be almost all of well known TeX units (pt, mm, em, in, ...) Have a nice day, Martin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Giuseppe Bilotta Sent: Monday, September 06, 2004 7:30 PM To: [EMAIL PROTECTED] Subject: [NTG-context] Absolute positioning of graphics on the page Is this possible without using layers? IOW, it there some kind of command that allows: \somecommand[some setups]{content} where the setups specify where the content should be positioned, and towards where it should extend? (e.g., positioned in the top right corner, extending to the bottom left) This can be achieved via layers, but is it possible without? -- Giuseppe "Oblomov" Bilotta ___ ntg-context mailing list [EMAIL PROTECTED] http://www.ntg.nl/mailman/listinfo/ntg-context ___ ntg-context mailing list [EMAIL PROTECTED] http://www.ntg.nl/mailman/listinfo/ntg-context
[NTG-context] \bTABLE bug?
Hi, I have found strange behaviour for bTABLE -- I use global setup for cells height and override it in some cells, but the height of one of such overriden cell is ignored. I'm sending a short example -- I expect both tables in the example to be the same, but they are not. Thank you for help, Martin Kolarik btablebug.tex Description: Binary data