Re: [NTG-context] installation: -jobname pdfetex option (was Re: [NTG-context] columns and alignment at the bottom)

2003-10-19 Thread Hans Hagen
At 16:26 17/10/2003, you wrote:

I looked around a bit in the archives, but I'm not sure which zip that
is, so I decided to go ahead and upgrade my whole tetex to 2.0.2.  I
went to pragma-ade and followed the links to find pdftex 14h.
  http://www.pragma-ade.com/context/linuxtex.zip

to give you some bin only test bed i also put there:

  http://www.pragma-ade.com/context/linux.zip

Hans

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] columns and alignment at the bottom

2003-10-15 Thread Ed L Cashin
Hans Hagen [EMAIL PROTECTED] writes:

 At 22:50 12/10/2003, Ed L Cashin wrote:
...
Some months ago another columns implementation came out, but if I
recall correctly, when you have columns of vboxes separated by very
stretchy glue, the new columns implementation can't bottom-align them
either.

 got you:

 \starttext

 \startcolumnset

 \dorecurse{100}
{\framed
   [width=\hsize,height=fit,align=normal]
   {\getrandomnumber\whatever{1}{9}%
\dorecurse\whatever{\strut test \recurselevel\endgraf}}
 \vfilll}

 \stopcolumnset

 \stoptext

Oh, I can't wait to see what that example does!  Does it show that I
am not recalling correctly?  I hope so.  

The example, though, doesn't result in a pdf file for me when I put it
into a file, test.tex, and run texexec --pdf test.

Acrobat Reader 4.0 says, There was an error opening this document.
Could not repair file.


  [EMAIL PROTECTED] tmp$ PATH=/opt/teTeX-1.0.7/bin:$PATH texexec --pdf test
  
   TeXExec 3.3 - ConTeXt / PRAGMA ADE 1997-2003
  
  executable : pdfetex
  format : cont-en
   inputfile : test
  output : pdftex
   interface : en
current mode : none
 TeX run : 1
  
  This is pdfeTeX, Version 3.14159-13d-2.1 (Web2C 7.3.1)
  entering extended mode
...
  pdftex : needs map file: original-vogel-symbol.map
  systems: begin file test at line 1
  systems: randomizer starts with 903229090
  [1.1[/opt/teTeX-1.0.7/share/texmf/dvips/config/pdftex.map]] [2.2]
 return code : 11
run time : 2 seconds
  
  total run time : 2 seconds
  [EMAIL PROTECTED] tmp$ acroread test.pdf
  [EMAIL PROTECTED] tmp$ 


-- 
--Ed L Cashin|   PGP public key:
  [EMAIL PROTECTED]|   http://noserose.net/e/pgp/

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] columns and alignment at the bottom

2003-10-15 Thread Hans Hagen
At 18:54 15/10/2003, you wrote:

   TeXExec 3.3 - ConTeXt / PRAGMA ADE 1997-2003
this should be no problem but we have 4.0 now

  This is pdfeTeX, Version 3.14159-13d-2.1 (Web2C 7.3.1)
  entering extended mode
but version 13d is asking for problems and around that ime column sets were 
not there

just pick up the zip mentioned in an earlier mail and try that one (new 
binaries, new tex)

Hans  

___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] columns and alignment at the bottom

2003-10-12 Thread Willi Egger
At 21:36 12.10.2003, Alex wrote:
Hi,

I am trying to typeset a text which should look roughly like that:

|-|  |-| |--|
|text |  |text | |text  |
| |  |-| |  |
|-|  |  |
 |-| |  |
|-|  |text | |  |
|text |  |-| |--|
| |
| |  |-| |--|
| |  |text | |text  |
|-|  |-| |--|
So I have a frames with some text (actually, addresses - Hans, maybe
you remember the address booklet I showed you here in Darmstadt) in
three columns. So I tried something like:
\startcolumns[n=3]
\framed{first address...}
\vskip 0.5cm plus 1fill
\framed{second address...}
\vskip 0.5cm plus 1fill
\framed{third address...}
.
.
.
\stopcolumns
Which (obviously because I use TeX code inside ConTeXt - shame on me)
fails, the frames are not aligned at the bottom.
So I'm looking for a way to typeset them with a distance of at least
0.5cm and align at the bottom - the remaining space should be spread
equally...
I hope the question is understandable and I hope someone has already
done something like this...
Greetings,
ALeX
Now I haven't. But there is another approach to this. There is an arranging 
possibility which looks as follows:

\setuppapersize [XY][A4]
 \setuppaper [topspace=5mm,backspace=5mm,dx=1mm,dy=2mm,nx=3,ny=4] %
 \setuplayout
 [page]
 [topspace=5mm,
 backspace=5mm,
 header=0pt,
 headerdistance=0pt,
 footer=0pt,
 footerdistance=0pt,
 location=middle,
 marking=on]
\setuppagenumbering[state=stop]
\setuparranging [XY]
\setupframedtexts
[frame=off,
leftframe=on,
bottomframe=on,
align=middle,
location=middle,
width=broad]
%\showframe

\startbuffer[Addresse1]
\startframedtext
...
\stopframedtext
\page
\stopbuffer
\startbuffer[Addresse2]
\startframedtext
...
\stopframedtext
\page
\stopbuffer
\starttext
\dorecurse{6}{\getbuffer[Addresse\recurselevel]}%between first braces 
number of addresses you have in buffers
\stoptext

You will have to play with the different option parameters.
It is usefull to start texshow  :-)
Gruss Willi



___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context