[NTG-context] No header line on chapter page + potential columnset problem?

2006-05-16 Thread Ehrt, Michael
Hi there,

I'm having problems with removing the header background from a chapter
start page.

I'm using

\setupbackgrounds[header][text][bottomframe=on]
\setupheadertexts[part][chapter]

for a header line and part/chapter texts, and

\setupheader[state=empty]

to remove the header texts on the first chapter page. But this doesn't
remove the header line. And if I'm using

\setupheader[state=high]

the line goes away, but
A) the position of the chapter title moves which I don't like and
B) the columnset I'm using runs into the footer on all subsequent pages
that do have the header. It seems as if the columnset uses the increased
textheight from the first page on all subsequent pages. This is also the
case if I use \startcolumns \stopcolumns. Without columns the text
doesn't run into the footer.
If anyone is interested to look into this, I've got a 25 line minimal
example.

I'm using Miktex 2.4.1461 on Windows XP SP2 and have updated the context
package this morning to ver: 2006.04.24 23:37  fmt: 2006.5.16, but since
I'm not a wizard in diagnostics it may still be a problem with my
installation.

But I would really prefer to be able to remove the header background on
the first chapter page anyhow. I don't like to use the state=high option
because I'd like the chapter title to stay where it is...

Cheers

Michael
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] some patches

2006-05-16 Thread Hans Hagen
frantisek holop wrote:
 hmm, on Mon, May 15, 2006 at 09:23:21AM +0200, Hans Hagen said that
   
 (btw, is there a clever way to avoid this sudo stuff and become real root?)
 

 i think i missed why you need to become root.
 is this for regular runs of context in the future?
   
no, i need it just for experimenting / debugging

Hans
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] some patches

2006-05-16 Thread Hans Hagen
Dalyoung Jeong wrote:
 Dear Hans,

 Thank you for your answer.

 Since it worked perfectly before, I created XeTeX-ConTeXt format using
   texexec --make --xtx en
 for a test and run texexec --xtx file.tex.

 It run OK and I got a pdf output. I think that it is not only the  
 font problem unless texmfstart uses fonts differently. So my wonder  
 is what cause the difference between
 texmfstart texexec --xetex file.tex and texexec --xtx file.tex.(no  
 output with errors and good output).
 I am sorry to list this which is the problem for me only.

 Since my TeX-knowledge is very short, I couldn't do anyting but  
 testing. I'll upgrade to the latest version soon and see how it runs,  
 although I am afraid of upgrading the current ConTeXt(05-11) to the  
 latest one.
   
for xetex you really need to update because the backend driver has 
changed to xpdfmx

Hans
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Bibliography and whitespace

2006-05-16 Thread Taco Hoekwater


nico wrote:
 Hello,
 
 When I use \placebublications the white space I've set is no more taken  
 into account. Besides, in the example below the space between the heading  
 (Biblio) and the publication is also too small.

Will fix. Meanwhile, use

   {\placepublications}

Cheers, taco
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Several publication lists

2006-05-16 Thread Taco Hoekwater


nico wrote:
 Hello,
 
 I wonder if it is possible to display several publication lists. Can we  
 achieve this with the bib module? What I would like to do is to split the  
 publication list into different sections, like this:

You cannot do this, sorry.

Cheers, Taco
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] narrower

2006-05-16 Thread Taco Hoekwater


frantisek holop wrote:
 
 but the default narrowness is not good for me.
 but setupnarrower doesn't seem to work for me.
 here's a minimal example:
 
 

The use of narrower is a bit abnormal. Either use:

   \setupnarrower[left=3cm, right=3cm]
   \startnarrower[left,right]

or

   \setupnarrower[middle=3cm]
   \startnarrower % [middle] is default

Cheers, taco
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] No header line on chapter page + potential columnset problem?

2006-05-16 Thread Taco Hoekwater


Ehrt, Michael wrote:
 Hi there,
 
 I'm having problems with removing the header background from a chapter
 start page.


you should do it without using backgrounds, like this:

   \setupheader[text][after=\hrule]

Now

   \setupheader[state=empty]

will make the line disappear, without shifting everything.

Cheers, Taco
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] narrower

2006-05-16 Thread frantisek holop
hmm, on Tue, May 16, 2006 at 10:45:32AM +0200, Taco Hoekwater said that
 The use of narrower is a bit abnormal. Either use:
 
\setupnarrower[left=3cm, right=3cm]
\startnarrower[left,right]
 
 or
 
\setupnarrower[middle=3cm]
\startnarrower % [middle] is default

thanks a lot.

is there a reason this was solved abnormally?
are there plans to make this more context-ish?

or is it confusing only for me?

-f
-- 
saint: a dead sinner revised and edited.
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] No header line on chapter page + potential columnset problem?

2006-05-16 Thread Ehrt, Michael
 Ehrt, Michael wrote:
  Hi there,
  
  I'm having problems with removing the header background 
  from a chapter start page.
 
 
 you should do it without using backgrounds, like this:
 
\setupheader[text][after=\hrule]
 
 Now
 
\setupheader[state=empty]
 
 will make the line disappear, without shifting everything.
 
 Cheers, Taco

Great, thanks. Works like magic, with a little adapting even for footers
;-)

Do you know if the column text overrunning the footer when using
state=high is a general problem or just me? If it's just me I'll
probably try installing a plain context distribution without miktex on a
separate machine...

Cheers

Michael
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] No header line on chapter page + potential columnset problem?

2006-05-16 Thread Taco Hoekwater


Ehrt, Michael wrote:
 
 Do you know if the column text overrunning the footer when using
 state=high is a general problem or just me? If it's just me I'll
 probably try installing a plain context distribution without miktex on a
 separate machine...

I expect it to be a general problem.
Taco

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] narrower

2006-05-16 Thread Taco Hoekwater


frantisek holop wrote:
 thanks a lot.
 
 is there a reason this was solved abnormally?

\startnarrower (\startsmaller in dutch) is one of the oldest
commands in ConTeXt. It predates the now-normal conventions
by a few years.

 are there plans to make this more context-ish?

Don't expect any changes to \startnarrower. But perhaps
a more predictable alternative could be added.

Cheers, Taco
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] XeTeX/linux and mpgraphics

2006-05-16 Thread Taco Hoekwater
Hi,

With the latest ConTeXt (05.14) and XeTeX (0.992), I can
successfully run this file (xetexmp.tex):

   \setupcolors[state=start]
   \runMPgraphicstrue
   \starttext
   \startMPcode
   for i = 1 upto 100:
 j := 200-(2*i);
 fill fullcircle scaled (j*pt) withcolor (0.5+i/200)*green;
   endfor
   \stopMPcode
   \stoptext

using this command:

   texexec --xtx --nobackend xetexmp

Greetings, Taco
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] some patches

2006-05-16 Thread Dalyoung
for xetex you really need to update because the backend driver haschanged to xpdfmxHansDear Hans,Thank you for the reply.I'll upgrade to the latest version soon. By the way, I noticed one thing in the process of XeTeX-ConTeXt.In the previous version before may, "texexec --xtx file.tex" run and made file.xdv, and then finally produced file.pdf.But in the current version "texmfstart texexec --xetex file.tex" run and file.tuo - file.dvi - file.pdf are produced in the log file but file.pdf is not produced in the folder.  "texexec --xtx  file.tex" also produced pdf via *.tuo - *.dvi - *.pdf but figures in pdf format are appeared as blank space.Doesn't ConTeXt-XeTeX use *.xdv anymore?I'd like to upgrade from the beginning, TeX+ConTeXt update + XeTeX and test the same file.It makes me a little bit nervous.Thank you again.Dalyoung___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] new release

2006-05-16 Thread frantisek holop
hmm, on Tue, May 16, 2006 at 01:06:26AM +0200, frantisek holop said that
  your texmf.cnf file should contain:
  
  TEXFONTMAPS   = 
  .;$TEXMF/fonts/map/{$progname,pdftex,dvips,}//;$TEXMF/{$progname,pdftex,dvips}/{config,}//
  
  as long as we have no uniform map file syntax, progs needs to be able to 
  find their own map files
 
 i just did:
 
 # rm -r /usr/local/share/texmf-local/fonts/map/dvipdfm/context
 # rm -r /usr/local/share/texmf-local/fonts/map/dvips/context
 # texhash
 
 aren't these files awfully old anyway?  are they needed?
 as cont-lm is not needed anymore i thought these are obsolete files...

btw. http://live.contextgarden.net/ is suffering from this also:

from the texexec output:

[1.1{/opt/context/current/texmf/fonts/map/dvipdfm/context/original-empty.map}{/
opt/context/current/texmf/fonts/map/dvipdfm/context/original-base.map
Warning: pdfetex (file /opt/context/current/texmf/fonts/map/dvipdfm/context/ori
ginal-base.map): invalid entry for `fmvr8x': font file missing

Warning: pdfetex (file /opt/context/current/texmf/fonts/map/dvipdfm/context/ori
ginal-base.map): invalid entry for `xycmat11': font file missing

Warning: pdfetex (file /opt/context/current/texmf/fonts/map/dvipdfm/context/ori
ginal-base.map): invalid entry for `xycmbt11': font file missing

Warning: pdfetex (file /opt/context/current/texmf/fonts/map/dvipdfm/context/ori
ginal-base.map): invalid entry for `xyeuat11': font file missing

Warning: pdfetex (file /opt/context/current/texmf/fonts/map/dvipdfm/context/ori
ginal-base.map): invalid entry for `xyeubt11': font file missing

Warning: pdfetex (file /opt/context/current/texmf/fonts/map/dvipdfm/context/ori
ginal-base.map): invalid entry for `xycmat12': font file missing

Warning: pdfetex (file /opt/context/current/texmf/fonts/map/dvipdfm/context/ori
ginal-base.map): invalid entry for `xycmbt12': font file missing

Warning: pdfetex (file /opt/context/current/texmf/fonts/map/dvipdfm/context/ori
ginal-base.map): invalid entry for `xyeuat12': font file missing


and pdftex could be updated there also :-)

-f
-- 
can't have everything. where would you put it?
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Several publication lists

2006-05-16 Thread nico
On Tue, 16 May 2006 10:38:18 +0200, Taco Hoekwater [EMAIL PROTECTED]  
wrote:

 nico wrote:
 Hello,

 I wonder if it is possible to display several publication lists. Can we
 achieve this with the bib module? What I would like to do is to split  
 the
 publication list into different sections, like this:

 You cannot do this, sorry.

Hm, I think it could be interesting to add such a feature to context, but  
I understand it cannot be done immediately. Latex already have such things  
(chapterbib, bibtopic) and IMHO there is a real need for this.

Regards,
BG
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] some patches (clever ConTeXt installation)

2006-05-16 Thread Maurice Diamantini

Le 16 mai 06 à 01:14, Hans Hagen a écrit :

 Maurice Diamantini wrote:nment.

 Usually, one can build dynamicaly (default) variable environment  
 at the start of a programm
 (i.e. in the same process and sub-process), then let the original  
 environment untouch
 while ending the programm.
 this is what

  texmfstart --tree= texexec 

 does; it sets env vars specified in either setuptex.tmf in the path  
 mentioned as tree, or some specific tmf file; those tmf files are  
 platform independent. this is how i run multiple (different trees)  
 on one machine (say a web server);

Thank you very much.
So I can do a little texexec script, add its path in front of the  
global
path (so that it will be found before any standard old ConTeXt distrib)
and use the new texexec shell script as the main context executable  
as usualy.


The main avantage over my previous proposal is that it doesn't even  
require
adding a new path in the PATH environment variable (which already is  
quite
accectable!).


 I don't know much about context, but if you use some texmfstart  
 laucher, it could have
 the responsability of that job).
 In fact, I'd like to only have to add some PATH for using a  
 personnal full ConTeXt
 distribution near another standard LaTeX (containing obolate Context)
 this is what in regular distributions texmf-local is for

Yes, but the texmf-local is part of a particular directory from a  
particular network
or host. And I like to separate my own (full, independant,  
robust, ...) ConTeXt
environmement from the several LaTeX distrib I use
(e.g. my unix/osX account is mirror via rsync between hom, work, and  
another network.

 LaTeX will probably become again my main xTeX environment, but I'd  
 like to be able
 to switch ponctualy to a recent ConTeXt distro, without hacking  
 and breaking
 my main TeX environment.
 in that case, just put the latest context in your main tree (unzip  
 cont-tmf in
 texmf-local or so); that should work as always

No, because of recent font (lm) probleme, I decided to keep a full  
context
distrib (linuxtex.zip + macosxtex.zip + justtex.zip) in my personnal  
home
directory.
I positionned this environment with some setuptex variante before  
using
context program (with all previous problems when comming back to LaTeX)


 Because the Makefile should work on all plateform (and in a year  
 or two also if possible!)
 I use only the standard texexec (instead of texmfstart and path  
 argument).
 But if you say texmfstart become the standard way: I'd switch to!
 well, you can still use texexec.rb instead of texexec.pl and avoid  
 texmfstart;
 it's just that then you need to keep an eye on when texexec changes

Do you mean that texexec.rb is clever enought to guess its ows  
directory tree ?
Great, that what I asked for ;-)
(and if texexec.rb becomme the standard texexec tool the problem  
is solved
(no more need to do a small texexec shell script) but...
... for context programme only, but what about other tools (metapost,  
mp2pdf...)

 Just a remark in that case: texmfstart seems a bad name, bacause  
 not related to ConTeXt
 Why not simply context or ctx as the main ConTeXt tool?)
 because i use it to run anything organized in a tree (e.g.  
 xsltproc); running context
 progies i just part of the game

Ok, I can always make an alias ctx for texmfstart --tree=...

alias ctx=texmfstart --tree=/home/myHome/myLocl/fullcontext

perhaps it solves all problem at a time!
I'll try that in the next two week.

Thank you very much,
Maurice



___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Possible users meeting?

2006-05-16 Thread frantisek holop
hmm, on Mon, May 15, 2006 at 02:55:46PM +0200, Taco Hoekwater said that
 One of the things we discussed was this: If there is sufficient
 interest, we could organize a ConTeXt (mini)conference.

conferences make the world go around :)

as the timeline is quite stretched, i propose to make a
wiki page about this, your mail will be inevitably
lost in the archives.  also the discussion feature of
the wiki will be excellent.



i think a community heading on the contextgarden.net
main page would be a great place to put articles like
this (i don't have the right to create it), also along
with companies/individuals offering commercial/non-commercial
support, etc.

i also think that having a news blog (which is quite
dead) is a bit of an overkill, the couple of news
items which appear could be handled manually in
the wiki itself


oh my, i got quite offtopic again :)

-f
-- 
i tried switching to gum but i couldn't keep it lit!
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Several publication lists

2006-05-16 Thread Taco Hoekwater


nico wrote:
 
 Hm, I think it could be interesting to add such a feature to context, but  
 I understand it cannot be done immediately. Latex already have such things  

Sure. Can you point me to the documentation of 'bibtopic' and also 
propose a calling / configuration syntax for the ConTeXt  version?
(it is easier for me if I know what to work towards)

Cheers, Taco

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] ConTeXt, XeTeX for Linux and xdvipdfmx

2006-05-16 Thread Ricard Roca
Hi,

It seems that some things doesn't work well with ConTeXt and XeTeX for Linux. 
For example image inclusion (jpg, png, pdf) with \externalfigure or 
\useexternalfigure doesn't work, but does with xdvipdfmx \special's 
(\special{pdf: image ...}). Also, \setuppapersize doesn't work (e. g. 
\setuppapersize[A5][A5]  does the same as \setuppapersize[A5][A4], being A4 
the default).

But \color seems to work well.

Are these ConTeXt bugs (related to \special's) or Linux XeTeX-xdvipdfmx bugs?

Thanks in advance,

Ricard
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] spurious space before section heading but only in pdf mode

2006-05-16 Thread frantisek holop
hmm, on Sat, Apr 08, 2006 at 11:12:56PM +0100, Sanjoy Mahajan said that
 Thanks, those two space removals in enco-pfr.tex fix it.  I guess when
 I upgrade to pdftex 1.30 I'll unchange it.

it seems that people are more afraid to upgrade their pdftex
than context.  in my opinion upgrading context is much harder,
there are much more things which can go wrong.

it is really just compiling it and replacing 3 files plus
regenating the formats.  (of course it must be followed
by the context update or else context stops working).

-f
-- 
when you starve with a tiger, the tiger starves last.
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] some patches

2006-05-16 Thread Hans Hagen
Dalyoung wrote:



 for xetex you really need to update because the backend driver has
 changed to xpdfmx

 Hans

 Dear Hans,

 Thank you for the reply.

 I'll upgrade to the latest version soon. 

 By the way, I noticed one thing in the process of XeTeX-ConTeXt.

 In the previous version before may, texexec --xtx file.tex run and 
 made file.xdv, and then finally produced file.pdf.
 But in the current version texmfstart texexec --xetex file.tex run 
 and file.tuo - file.dvi - file.pdf are produced in the log file but 
 file.pdf is not produced in the folder.  texexec --xtx  file.tex 
 also produced pdf via *.tuo - *.dvi - *.pdf but figures in pdf format 
 are appeared as blank space.

 Doesn't ConTeXt-XeTeX use *.xdv anymore?
not by default; esp since xdvipdfmx will become the real thing for xetex 

Hans 


-
  Hans Hagen | PRAGMA ADE
  Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
 tel: 038 477 53 69 | fax: 038 477 53 74 | www.pragma-ade.com
 | www.pragma-pod.nl
-

___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Reference for the \but command

2006-05-16 Thread Jean Magnan de Bornier
Le 15 mai à 21:56:56 Willi Egger [EMAIL PROTECTED] écrit notamment:

| I suggest you  search Hans' presentation styles. e.g. s-pre-04.tex

| Willi


Thanks; actually this is what I was doing when I decided to ask for some
centralized reference. But I admit I have to dig a little more into these
styles to understand what they contain

cheers,

|

| Peter Münster wrote:
|  On Sat, 13 May 2006, Jean Magnan de Bornier wrote:
| 
|
|  Where can I find the list of all keywords recognized by the \but command
|  to set up interaction?
|  (Honest, I searched the manual!)
|  
| 
|  TeXshow says, that there is only one argument: the reference
|  \but[ref]
| 
|  Cheers, Peter
| 
|
| ___
| ntg-context mailing list
| ntg-context@ntg.nl
| http://www.ntg.nl/mailman/listinfo/ntg-context


-- 
Jean
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] \startlines and whitespace

2006-05-16 Thread frantisek holop
hi there,

i am puzzled about the following issue.
there's extra whitespace between the centered line
and startlines, while when using \crlf, there is not.
\startlines is an environment i guess (i come from latex)
and some environments sometimes add extra whitespace
in latex, if i recall correctly.

when i use \nowhitespace between midaligned and startlines,
the whitespace is smaller, but still there, depending on
where the actual text is on the page.

how can i get rid of the whitespace entirely?


\starttext

\startnarrower[3cm]
\midaligned{test}
\startlines
There snores -- I mean sleeps -- my wife so frail.
There snores -- I mean sleeps -- my wife so frail.
\stoplines
\stopnarrower

\startnarrower[3cm]
\midaligned{test}
There snores -- I mean sleeps -- my wife so frail.\crlf
There snores -- I mean sleeps -- my wife so frail.
\stopnarrower

\stoptext

-f
-- 
a kind word and gun gets you more than a kind word alone.
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Several publication lists

2006-05-16 Thread nico
On Tue, 16 May 2006 15:27:46 +0200, Taco Hoekwater [EMAIL PROTECTED]  
wrote:

 nico wrote:

 Hm, I think it could be interesting to add such a feature to context,  
 but
 I understand it cannot be done immediately. Latex already have such  
 things

 Sure. Can you point me to the documentation of 'bibtopic'

http://www.tex.ac.uk/tex-archive/macros/latex/contrib/bibtopic/bibtopic.pdf

 and also
 propose a calling / configuration syntax for the ConTeXt  version?
 (it is easier for me if I know what to work towards)

I don't know if it's doable or if it breaks the consistency of the current  
interface, but I would see something like the list mechanism:

\definebiblist[name][\setupbiblist options]
\setupbiblist[name][\setuppublicationlist options]
\setupbibfile[name][\setupbibtex options]
\placebiblist[name]

\definecombinedbiblist[bibgroup][biblist list][\setupcombinedlist options]
\setupcombinedlist[bibgroup][ not yet clear what options it should provide  
]

\startbibentry[name][\startpublication options]

\setupcite[name][what][options] (name optional)
\cite[name][what][ref] or \cite[what][name:ref] (name optional)

To keep the current interface, a default global publication list could  
exist:

\setuppublicationlist = \setupbiblist[publication]
\startpublication = \startbibentry[publication]
\placepublications = \placebiblist[publication]
\setupbibtex = \setupbibfile[publication]

Example of use:

% the specs come only from bibtex files
\definebiblist[specs][criterium=all]
\setupbibtex[specs][database={spec1,spec2},sort=short]

\definebiblist[manuals][criterium=all]
\setupbibtex[manuals][database=manbase,sort=short]

% also an embedded definition for the manuals
\startbibentry[manuals][k=me,t=manual,a=Hoekwater,y=2006]
\author[]{Taco}[T.]{}{Hoekwater}
\title{Publication Module}
\stopbibentry

% all the biblio stuff
\definecombinedbiblist[allbibs][specs,manuals][criterium=all]

% let's go
\starttext
\chapter{The doc}
\section{References in the chapter}
\subsection{Specifications}
\placebiblist[specs][criterium=cite]

\subsection{Manuals}
\placebiblist[manuals][criterium=local]

\section{Introduction}
As explained in \cite[manuals][key][me]...

\chapter{References Summary}
\placecombinedlist[allbibs]
\stoptext

What is not clear for me:
- if the bibentry numbering must be global or could restart to 1 for each  
list,
- if it is really feasible to place the biblists several times in the doc,  
and if so, to which list the \cite actually points to.

I hope that all of this doesn't sound too stupid :-)

Regards,
BG
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] project files searched for using TEXINPUTS

2006-05-16 Thread Sanjoy Mahajan
Hans Hagen [EMAIL PROTECTED] wrote:
 Sanjoy Mahajan wrote:
  The last search, for 'abcd', runs through the entire TEXINPUTS path.
  The other searches have directories specified, so they will look
  only in those directories.


 the reason for the global search is that environments can be in your
 local tree (tex/context/user)

Right, so the broad search should happen for environment files.  But in
the example, the project files are also searched for broadly, and I
think that search could be confusing.

-Sanjoy
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] \startlines and whitespace

2006-05-16 Thread Aditya Mahajan
On Tue, 16 May 2006, frantisek holop wrote:

 hi there,

 i am puzzled about the following issue.
 there's extra whitespace between the centered line
 and startlines, while when using \crlf, there is not.
 \startlines is an environment i guess (i come from latex)
 and some environments sometimes add extra whitespace
 in latex, if i recall correctly.

 when i use \nowhitespace between midaligned and startlines,
 the whitespace is smaller, but still there, depending on
 where the actual text is on the page.

 how can i get rid of the whitespace entirely?


Use the before and after mechanism.

\setuplines[before={\startnarrower[3cm]},after=\stopnarrower]

\midaligned{test}
\startlines
There snores -- I mean sleeps -- my wife so frail.
There snores -- I mean sleeps -- my wife so frail.
\stoplines

-- 
Aditya
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] \startlines and whitespace

2006-05-16 Thread frantisek holop
hmm, on Tue, May 16, 2006 at 06:27:12PM -0400, Aditya Mahajan said that
 Use the before and after mechanism.
 
 \setuplines[before={\startnarrower[3cm]},after=\stopnarrower]
 
 \midaligned{test}
 \startlines
 There snores -- I mean sleeps -- my wife so frail.
 There snores -- I mean sleeps -- my wife so frail.
 \stoplines

thanks for the tip.
sometimes there still is extra whitespace.  but \nowhitespace
seems to supress them without problems.

i think i should also add, that the document has

\setuptolerance [strict]

so it's not verystrict...

-f
-- 
we're born free and taxed to death.
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] vertically centered aligment of different sized texts

2006-05-16 Thread frantisek holop
hi there,

another question to which shamefully i cannot find the answer.
perhaps it's just too late...


consider the following example:


\definefont[BigFont][Regular sa 3]
\starttext
{\tfc The {\BigFont 7}\high{th} Seal}
\stoptext


how can i make that line vertically centered, like
--,
the  /th seal
/

:)


is \startalignment used for this?

-f
-- 
every great journey begins with a single step.
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] vertically centered aligment of different sized texts

2006-05-16 Thread Aditya Mahajan
On Wed, 17 May 2006, frantisek holop wrote:

 hi there,

 another question to which shamefully i cannot find the answer.
 perhaps it's just too late...


 consider the following example:


 \definefont[BigFont][Regular sa 3]
 \starttext
 {\tfc The {\BigFont 7}\high{th} Seal}
 \stoptext


 how can i make that line vertically centered, like
--,
 the  /th seal
/

 :)


I do not know if this is the best way to do this, but you can exploit 
inframed.

{\tfc The \inframed[foregroundstyle=\BigFont,frame=off]{ 7}\high{th} Seal}
or
{\tfc The \inframed[foregroundstyle=\BigFont,frame=off]{ 7\high{th}} Seal}

depending on what you want.


 is \startalignment used for this?

I think that startalignment is only for horizontal alignment, but I 
may be wrong here.

Aditya

-- 
Aditya Mahajan, EECS Systems, University of Michigan
http://www.eecs.umich.edu/~adityam || Ph: 7342624008
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] spurious space before section heading but only in pdf mode

2006-05-16 Thread Sanjoy Mahajan
From:frantisek holop [EMAIL PROTECTED]
 hmm, on Sat, Apr 08, 2006 at 11:12:56PM +0100, Sanjoy Mahajan said that
  Thanks, those two space removals in enco-pfr.tex fix it.  I guess when
  I upgrade to pdftex 1.30 I'll unchange it.
 
 it seems that people are more afraid to upgrade their pdftex
 than context.  in my opinion upgrading context is much harder,
 there are much more things which can go wrong.

Upgrading context is easy now that I keep it in ~/texmf/, so updates
to the Debian tetex packages don't overwrite or shadow the latest
context.

My worry about upgrading pdf(e)tex is that when I do the next

  apt-get update  apt-get upgrade

then my pdftex 1.30 will get wiped out by the v1.21 that comes with
the slightly updated tetex-3.0.  Then I'll have to regenerate the
context formats (the apt-get upgrade will regenerate only the system
formats, not my own).

Already this overwriting happens with metapost 0.91: After upgrading
the tetex, it gets returned to 0.63 or something like that.  So I keep
the 0.91 install tree around and wrote a Makefile to reinstall it over
the 0.63 version (Taco has put that Makefile in the metapost
distribution).  But I'd like to minimize the amount of homebrew
administration, which is why I keep my hands off pdftex.

-Sanjoy

`Never underestimate the evil of which men of power are capable.'
 --Bertrand Russell, _War Crimes in Vietnam_, chapter 1.
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context