Re: [NTG-context] Where to find documents?

2005-09-23 Thread jjgod
Hans Hagen wrote:

> 
> mfonts.pdf (in show-man the one with green/red cover) 
> 
> Hans 

hmm, I mean, there are so many macros about define fonts,

\definefontsynonym
\definefont
\definebodyfont
\showbodyfontenvironment
\switchtobodyfont
\showbodyfont
\starttypescript
\stoptypescript
\definetypeface
\usetypescript
\definebodyfontenvironment
\setupbodyfont

What's their relation? I guess I need a more precisely
and clearly description, like the document for LaTeX NFSS.

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


Re: [NTG-context] ConTeXt to RTF Conversion

2005-09-23 Thread Christopher Creutzig
Idris Samawi Hamid wrote:
> Would it be possible to define an xml format for the journal so that I
> could more easily process both ConTeXt/LaTeX articles as well as the
> docs and rtfs I generally receive? Is this more work than it's worth?
> It's a humanities journal, so little-to-no math.

 Math is, in my experience, the worst part of it, so you an consider
yourself happy that you don't need it.

 The question is, what problems of the current process are you trying to
improve/solve with a possible move to xml?

 If your most pressing problem is the variety of data formats you
receive articles in, then no, xml won't help.  You'd still need some way
of transforming the articles to the format of your choice.  That being
said, XML may be a very good intermediate step from Word or rtf to
ConTeXt, if only because OpenOffice has pretty advanced import filters
and stores its data in a straightforward xml format that should be easy
to transform, assuming you start with a sufficiently rich set of
predefined formats and somehow get people to either use them (fat
chance, I know) or have them be sufficiently different that you can
automatically or at least semi-automatically classify the author's
formatting to your presets.  In really simple cases (e.g., pure prose)
you may get away with accepting HTML and converting that.

 If your most serious problem is a variety of output formats you want to
support (print/pdf, html, some eBook variants, ...), xml is a perfect
technique to develop a solution.

 If getting lots of different encodings is a problem of yours, xml
solves that nicely as well.  But just for that, there are simpler and
less intrusive ways.


 Other things xml may solve well:

- archivability (although your ConTeXt files are probably no worse)

- reusability: Almost everything in a file following a well-designed
  xml format is local and you can simply copy a (complete) block of
  text + markup and insert it into another file.

- consistency, enforcing rules: While it is possible to enforce things
  like “every article must start with an abstract containing one to
  three paragraphs” in TeX, it is way easier in xml.

- all sorts of conversions, including shuffling around or extracting
  data of interest


 Things xml won't do any magic for:

- layout.  You'd need to write a conversion to ConTeXt or whatever.
  Depending on your needs, this can be anything from trivial (say,
  two hours) to almost undoable (although this would mean the xml
  format is particularly badly designed for your journal).


 Both lists are certainly incomplete.  I hope you will get other answers
as well.


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


Re: Antwort: Re: [NTG-context] XML

2005-09-23 Thread Christopher Creutzig
Adam Lindsay wrote:

> I'm not sure I understand the "CVS or something else" part from the

 Probably a typo for CSV, comma-seperated values.

 It should be rather easy to typeset csv data in table format.  The
following tentative code ignores the fact that csv data may optionally
be enclosed in "" quotes that have to be removed (to be done in
TBLentry) and that these quoted strings may contain commas themselves
(which means writing a custom version of \processcommalist instead).
Apart from that, it seems to work.  (I just felt an urge of creativism,
so I took up the challenge.)


\def\TBLentry#1{\bTD#1\eTD}
\def\TBLline#1{\bTR\processcommalist[#1]\TBLentry}

% Iterate over all the lines of text captured with \obeylines active
% command to call is first argument, is not called for empty lines
\bgroup
\obeylines
\gdef\ProcessLines#1#2{\doProcessLines{#1}#2^^M\doProcessLines}%
\gdef\doProcessLines#1#2^^M#3\doProcessLines{%
  \doifnotempty{#2}{#1{#2}}%
  \doifnotempty{#3}{\doProcessLines{#1}#3\doProcessLines}%
}%
\egroup

\def\startCSV{\bgroup\obeylines\dostartCSV}

\def\dostartCSV#1\stopCSV{%
   \bTABLE
   \ProcessLines\TBLline{#1}%
   \eTABLE
   \egroup
}


\starttext
CSV test:

\startCSV
a,b,c,d,e
1,2,3,4,5
6,7,8,9,10
some text,11,12,,14
\stopCSV

\stoptext


 Hans, what goodies of ConTeXt did I miss?  Is the above sufficiently
ConTeXtish to be wikiable?


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


Re: [NTG-context] ConTeXt to RTF Conversion

2005-09-23 Thread Idris Samawi Hamid

Dear gang,

I have followed this discussion with interest. I edit a journal myself. 
Despite announcing loudly that it is TeX-friendly, the only person who 
writes articles in TeX for it is, you guessed it, myself.


I know next-to-nothing about xml, so I apologize if the next question is 
ignorant:


Would it be possible to define an xml format for the journal so that I 
could more easily process both ConTeXt/LaTeX articles as well as the docs 
and rtfs I generally receive? Is this more work than it's worth? It's a 
humanities journal, so little-to-no math.


Best
Idris

On Thu, 22 Sep 2005 22:54:47 +0200, Christopher Creutzig 
<[EMAIL PROTECTED]> wrote:



So if I understand wml,  I agree that xml is a format for filtering,
not a human writable format.
TeX, LaTeX or conTeXt is in input langage, which should be able to
be converted to the powerfull master XML format.


 No, sorry.  This only works for extremely simple TeX code.  forget
about any real-world mathematics.  Forget about 80% of what real-world
LaTeX users type into their computers.  TeX has simply never been
written to be easily parsed.


--
Professor Idris Samawi Hamid
Department of Philosophy
Colorado State University
Fort Collins, CO 80523

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


[NTG-context] Re: LaTeX \newcommands in ConTeXt.

2005-09-23 Thread Patrick Gundlach
Hello Brooks,


> I've recently been doing a little work on implementing a few LaTeX
> kernel bits in ConTeXt, to simplify porting LaTeX code over.  It's now
> at a point where a few of the pieces might actually be useful, and
> certainly to a point where some comments would be welcomed, so I've
> put up a version of it online, in this directory:
>
>  http://dpdx.net/context/latex-compat/

Perhaps it would make sense to create a module and (co-)host this on
contextgarden/CTAN?

Patrick
-- 
ConTeXt wiki and more: http://contextgarden.net
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: Antwort: Re: [NTG-context] XML

2005-09-23 Thread Adam Lindsay
Henning Hraban Ramm said this at Fri, 23 Sep 2005 16:29:17 +0200:

>Am 2005-09-22 um 09:53 schrieb Jessica Holle:
>
>> There I don't find something which helps me.
>> The input must not be only XML. In can also be CVS or something
>> else...
>
>You will have to convert your XML file to become a ConTeXt table, use  
>XSLT or some scripting language.
>ConTeXt's TABLE format ("HTML tables") is very suitable for such.

I'm not sure I understand the "CVS or something else" part from the
original poster, but XML-style tables can very feasibly be mixed with
other ConTeXt code:

\usemodule[contml]  % load the simple default xml vocab
\autoXMLnamespace [context] % avoid prefixing elements w/ context:
\setupcolors  [state=start] % not necessary, helps with example

\starttext
\section{Some \ConTeXt}

\startXMLdata

   some XML 
 xx xx 

\stopXMLdata

I can also have normal \TeX-like 
\inframed[frame=off,background=color,backgroundcolor=yellow]
{markup}.

\stoptext

>Is it possible to fill a table or a document in ConTeXt with content
>from a XML file?

You can replace the \startXMLdata-\stopXMLdata block with (in this case)
\processXMLfilegrouped{table.xml} where table.xml holds a table similar
to the above.
-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 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
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: Antwort: Re: [NTG-context] XML

2005-09-23 Thread Henning Hraban Ramm

Am 2005-09-22 um 09:53 schrieb Jessica Holle:


There I don't find something which helps me.
The input must not be only XML. In can also be CVS or something
else...


You will have to convert your XML file to become a ConTeXt table, use  
XSLT or some scripting language.

ConTeXt's TABLE format ("HTML tables") is very suitable for such.


Grüßlis vom Hraban!
---
http://www.fiee.net/texnique/
http://contextgarden.net
http://www.cacert.org (I'm an assurer)

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


Re: [NTG-context] t-rsteps and starttyping

2005-09-23 Thread Christopher Creutzig
Hans Hagen wrote:
> also, when collecting and flushing pieces of content, spacing is a
> tricky business (watch closely to presentations made quick and you'll
> notice those side effects)

 That is why ppower4 is such a nice alternative:  It inserts just some
pdf comments and otherwise leaves the typesetting alone.  Then a
postprocessor takes the pdf file and creates a new one, with everything
left at its original position, but appearing only on the pages (a slide
is built up by jumping to the next page) where it is supposed to appear.

> the content, presentation and audience, which in practice means that i
> don't use general solutions (apart from the fact that i don't like

 Well, a general solution for the isolated requiement of “having
considered content, audience and everything, I want my text/gfx/
whatever appear step-wise“ would be a good thing, imho.  And I did in
the past also use things like removing the full stop when stepping from

   This implies A.

to

   This implies A and therefore, B.


 I have also seen a presentation where the speaker sketched a proof of
some lemma, then generelized it and simply exchanged the relevant words
in the lemma.  The new words were shorter, so there was some space to
the left and right of them and they had some contrast color.  The effect
was not just “cool” and “I don't think Powerpoint could do that” –
what's more important is that this was by far the clearest way of
getting the message across.


 Is there a way of having \installprogram for only for after the *last*
run?  (I don't think there could be a systemmode for the last run, but
texexec knows it has done the last run, so there might be some file.tui
line doing this kind of magic.)


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


Re: [NTG-context] Re: More problems installing OpenType fonts

2005-09-23 Thread Adam Lindsay
Emil Hedevang said this at Fri, 23 Sep 2005 11:30:18 +:

>I have tested otftotfm, and it seems to work:

You're right... this is why it's so baffling: all the pieces seem to work.

After running texfont (with the --lcdf option), there should be a
texfont.map left over in the current directory. Clearly texfont is
having trouble parsing that file. Could you send me (off-list) that
resulting file after a fresh run on Antykwa Torunska?

adam
-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
 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
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] formatting \note output

2005-09-23 Thread Alan Bowen

Brooks and Christopher—

Many thanks for your help! \in is just what I wanted, and \in{ref.} 
[lemur] works perfectly.


All best, Alan


On Sep 22, 2005, at 4:58 PM, Brooks Moses wrote:


At 04:18 AM 9/22/2005, Alan Bowen <[EMAIL PROTECTED]> wrote:


Though I have asked this question before and there was no response, I
thought I would ask the following once more (before going through my
source files and making the changes by hand).

Does anyone know how to modify or adapt \note so that the output is a
footnote number in normal/body text format---e.g., "(ref.\ \note  
[lemur])" becomes "(ref.\ 9)"---rather than a superscripted numeral?




As I noted on the Wiki's footnotes page when I discovered this,  
\note is basically equivalent to the standard \in function for  
accessing references, except that it typesets the result as a  
superscript.


Thus, you can use \in rather than \note to reference a footnote  
number in normal format -- e.g., "(ref.\ \in[lemur])", for your  
example, though using "(\in{ref.}[lemur])" will do a better job  
with any hyperlinks, since the word "ref." will be included in the  
hyperlink.  And, if for some bizarre reason you want to reference a  
section number by setting it as a superscript, you can use \note  
instead of \in for that.


- Brooks

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



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


[NTG-context] Re: More problems installing OpenType fonts

2005-09-23 Thread Emil Hedevang
Adam Lindsay  comp.lancs.ac.uk> writes:

> I wrote that article and am pretty baffled by the problems you
> have. (I just did a test run of the same command, running an
> identical texfont, identical otftotfm version) The ConTeXt
> installation looks fine.  There are two discrepancies that I see
> here, though: otftotfm is running updmap in the interim. That
> shouldn't disturb things, but it might point to you getting the
> binary from somewhere other than gwTeX.

It should be a regular teTeX installation, as I followed the
instructions from http://wiki.contextgarden.net/TeTeX_3.0_installation.

> your entire TeX tree is in your local directory, which makes me
> wonder how you installed the whole machinery.

I installed teTeX using --prefix=$HOME/Local/teTeX in the
configuration phase. The correct executables seem to be found.

[~/antykwa] which texfont texexec otftotfm
/Users/Emil/local/tetex/bin/texfont
/Users/Emil/local/tetex/bin/texexec
/Users/Emil/local/bin/otftotfm

> I also wonder which version of the Antykwa Torunska fonts you are
> trying to convert: they have been updated a few times since the
> article.

I downloaded them a few day ago from the page suggested in the
article.

I have tested otftotfm, and it seems to work:

~/antykwa] otftotfm -e texnansi -f liga -f kern \
AntykwaTorunska-Regular.otf atr > at.map
I had to round some heights by 16.000 units.
I had to round some depths by 2.500 units.
I had to round some heights by 16.000 units.
I had to round some depths by 2.500 units.

[~/antykwa] otftotfm -e texnansi -f liga -f kern \
AntykwaTorunska-Italic.otf ati >> at.map
I had to round some heights by 16.000 units.
I had to round some depths by 2.500 units.
I had to round some heights by 16.000 units.
I had to round some depths by 2.500 units.

[~/antykwa] cat at.map
atr--base AntykwaTorunska-Regular "AutoEnc_ftx5tb6harlftkfpx5qbirtnvh
ReEncodeFont" <[a_ftx5tb.enc 
Output written on testfont.pdf (2 pages, 160577 bytes).
Transcript written on testfont.log.

[~/antykwa] ls -1
AntykwaTorunska-Italic.otf
AntykwaTorunska-Regular.otf
a_ftx5tb.enc
at.map
ati--base.tfm
ati.map
ati.tfm
ati.vf
atr--base.tfm
atr.map
atr.tfm
atr.vf
testfont.log
testfont.pdf

The result can be found at http://home.imf.au.dk/emil/testfont.pdf

Emil Hedevang

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


Re: [NTG-context] t-rsteps and starttyping

2005-09-23 Thread Hans Hagen

� wrote:


On Thu, 22 Sep 2005, Hans Hagen wrote:

 


Some of the older presentation styles build the pages stepwise, they use
either boxes, or buffers (i must look into it, but there is also one that
plugs into the otr; in your case, collecting in a box and uncopying it is
probably the best method. 


there is no general robust solution for this that does not messes up
something so it depends on the kin df presentation 
   



When I used LaTeX, I used prosper and seminar for presentations.
(some results: http://pmrb.free.fr/prosper/
 and http://pmrb.free.fr/work/cours/ )
There was no JavaScript but it was really robust: no problems with
equations, figures, listings etc. Perhaps it is possible to copy their
mechanisms?
 

many latex packages coem down to 'redefining low level things' 

also, when collecting and flushing pieces of content, spacing is a tricky business (watch closely to presentations made quick and you'll notice those side effects) 

my approach to presentations is that (normally) they should be rather simple, and the style and (either or not stepwise) approach depends on the content, presentation and audience, which in practice means that i don't use general solutions (apart from the fact that i don't like things looking the same; just as one can recognize a powerpoint presentation, one can recognize a beamer one -) 

so, the only thing that i can do with respect to supporting general puspose step-wise presentations is to provide hooks and configuration options; 

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] More problems installing OpenType fonts

2005-09-23 Thread Adam Lindsay
Hi Emil.

I wrote that article and am pretty baffled by the problems you have. (I
just did a test run of the same command, running an identical texfont,
identical otftotfm version) The ConTeXt installation looks fine.
There are two discrepancies that I see here, though:
otftotfm is running updmap in the interim. That shouldn't disturb
things, but it might point to you getting the binary from somewhere
other than gwTeX.

your entire TeX tree is in your local directory, which makes me wonder
how you installed the whole machinery.

I also wonder which version of the Antykwa Torunska fonts you are trying
to convert: they have been updated a few times since the article.

adam

Emil Hedevang said this at Thu, 22 Sep 2005 11:20:19 +0200:

>Hello
>
>I am trying to follow the instructions in the article "OpenType  
>installation basics for ConTeXt", but the generated map file does not  
>contain anything but commented lines. I have tried searching the web  
>for a solution but I did not find any, so I hope you can help me.
>
>My computer is running Mac OS X 10.4, and I have tried doing exactly  
>the same thing (installed the same software) on the university's  
>computers running RedHat Linux with the same negative result.
>
>Please ask me to provide any information you like.
>
>Thanks,
>Emil
>
>Here are all the details.
>
>(1) These are the fonts I want to try to install:
>
>[~/antykwa] ls
>AntykwaTorunska-Italic.otf  AntykwaTorunska-Regular.otf
>
>
>(2) These are the versions of the tools I use:
>
>[~/antykwa] texexec --version
>
>TeXExec 5.4.3 - ConTeXt / PRAGMA ADE 1997-2005
>
>texexec : TeXExec 5.4.3 - ConTeXt / PRAGMA ADE 1997-2005
>texutil : TeXUtil 9.0.0 - ConTeXt / PRAGMA ADE 1992-2004
>tex : pdfeTeX, 3.141592-1.30.3-2.2 (Web2C 7.5.5)
>context : ver: 2005.08.31
>cont-en : ver: 2005.08.31  fmt: 2005.9.19  mes: english
>
> total run time : 2 seconds
>
>[~/antykwa] otftotfm --version
>otftotfm (LCDF typetools) 2.34
>Copyright (C) 2002-2005 Eddie Kohler
>This is free software; see the source for copying conditions.
>There is NO warranty, not even for merchantability or fitness for a
>particular purpose.
>
>
>(3) This is the output I get when I run the suggested command in the  
>article:
>
>[~/antykwa] texfont --ma --in --ve=public --co=torunska --lcdf --pre  
>--va=liga,kern
>
>TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004
>
>mktexlsr: Updating /Users/Emil/local/tetex/share/texmf-local/ls-R...
>mktexlsr: Done.
>encoding vector : texnansi
>   encoding variant : liga,kern
>vendor name : public
>source path : .
>font collection : torunska
>texmf font root : /users/emil/local/tetex/share/texmf-local
>pdftex map file : texnansi-LIGA-KERN-public-torunska.map
>source path : .
>   processing files : all on afm path
> locating afm files : using pattern ./*.afm
> locating afm files : using otf files
> converting : ./AntykwaTorunska-Italic.otf to ./ 
>AntykwaTorunska-Italic.pfb
> converting : ./AntykwaTorunska-Regular.otf to ./ 
>AntykwaTorunska-Regular.pfb
>  copying files : afm
>  copying files : pfb
>copying : AntykwaTorunska-Italic.pfb
>copying : AntykwaTorunska-Regular.pfb
>  copying files : otf
>copying : AntykwaTorunska-Italic.otf
>copying : AntykwaTorunska-Regular.otf
> no map file at : /Users/Emil/local/tetex/share/texmf-local/ 
>fonts/map/pdftex/context/texnansi-LIGA-KERN-public-torunska.map
>
>font identifier : AntykwaTorunska-Italic -> text -> tfm
>   processing files : otf -> tfm + enc
>I had to round some heights by 16.000 units.
>I had to round some depths by 2.500 units.
>I had to round some heights by 16.000 units.
>I had to round some depths by 2.500 units.
>updmap: This is updmap, version 1107552857
>updmap: using transcript file `/Users/Emil/.texmf-var/web2c/updmap.log'
>updmap: initial config file is `/Users/Emil/.texmf-config/web2c/ 
>updmap.cfg'
>updmap: configuration file updated: `/Users/Emil/.texmf-config/web2c/ 
>updmap.cfg'
>
>font identifier : AntykwaTorunska-Regular -> text -> tfm
>   processing files : otf -> tfm + enc
>I had to round some heights by 16.000 units.
>I had to round some depths by 2.500 units.
>I had to round some heights by 16.000 units.
>I had to round some depths by 2.500 units.
>updmap: This is updmap, version 1107552857
>updmap: using transcript file `/Users/Emil/.texmf-var/web2c/updmap.log'
>updmap: initial config file is `/Users/Emil/.texmf-config/web2c/ 
>updmap.cfg'
>updmap: configuration file updated: `/Users/Emil/.texmf-config/web2c/ 
>updmap.cfg'
>  updating map file : texnansi-LIGA-KERN-public-torunska.map
>
> generating : ls-r databases
>
>mktexlsr: Updating /Users/Emil/local/tetex/share/tex

Re: [NTG-context] t-rsteps and starttyping

2005-09-23 Thread Peter Münster
On Thu, 22 Sep 2005, Hans Hagen wrote:

> Some of the older presentation styles build the pages stepwise, they use
> either boxes, or buffers (i must look into it, but there is also one that
> plugs into the otr; in your case, collecting in a box and uncopying it is
> probably the best method. 
> 
> there is no general robust solution for this that does not messes up
> something so it depends on the kin df presentation 

When I used LaTeX, I used prosper and seminar for presentations.
(some results: http://pmrb.free.fr/prosper/
  and http://pmrb.free.fr/work/cours/ )
There was no JavaScript but it was really robust: no problems with
equations, figures, listings etc. Perhaps it is possible to copy their
mechanisms?
Cheers, Peter

-- 
http://pmrb.free.fr/contact/
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] More problems installing OpenType fonts

2005-09-23 Thread Emil Hedevang

Hello

I am trying to follow the instructions in the article "OpenType  
installation basics for ConTeXt", but the generated map file does not  
contain anything but commented lines. I have tried searching the web  
for a solution but I did not find any, so I hope you can help me.


My computer is running Mac OS X 10.4, and I have tried doing exactly  
the same thing (installed the same software) on the university's  
computers running RedHat Linux with the same negative result.


Please ask me to provide any information you like.

Thanks,
Emil

Here are all the details.

(1) These are the fonts I want to try to install:

[~/antykwa] ls
AntykwaTorunska-Italic.otf  AntykwaTorunska-Regular.otf


(2) These are the versions of the tools I use:

[~/antykwa] texexec --version

TeXExec 5.4.3 - ConTeXt / PRAGMA ADE 1997-2005

   texexec : TeXExec 5.4.3 - ConTeXt / PRAGMA ADE 1997-2005
   texutil : TeXUtil 9.0.0 - ConTeXt / PRAGMA ADE 1992-2004
   tex : pdfeTeX, 3.141592-1.30.3-2.2 (Web2C 7.5.5)
   context : ver: 2005.08.31
   cont-en : ver: 2005.08.31  fmt: 2005.9.19  mes: english

total run time : 2 seconds

[~/antykwa] otftotfm --version
otftotfm (LCDF typetools) 2.34
Copyright (C) 2002-2005 Eddie Kohler
This is free software; see the source for copying conditions.
There is NO warranty, not even for merchantability or fitness for a
particular purpose.


(3) This is the output I get when I run the suggested command in the  
article:


[~/antykwa] texfont --ma --in --ve=public --co=torunska --lcdf --pre  
--va=liga,kern


TeXFont 2.2.1 - ConTeXt / PRAGMA ADE 2000-2004

mktexlsr: Updating /Users/Emil/local/tetex/share/texmf-local/ls-R...
mktexlsr: Done.
   encoding vector : texnansi
  encoding variant : liga,kern
   vendor name : public
   source path : .
   font collection : torunska
   texmf font root : /users/emil/local/tetex/share/texmf-local
   pdftex map file : texnansi-LIGA-KERN-public-torunska.map
   source path : .
  processing files : all on afm path
locating afm files : using pattern ./*.afm
locating afm files : using otf files
converting : ./AntykwaTorunska-Italic.otf to ./ 
AntykwaTorunska-Italic.pfb
converting : ./AntykwaTorunska-Regular.otf to ./ 
AntykwaTorunska-Regular.pfb

 copying files : afm
 copying files : pfb
   copying : AntykwaTorunska-Italic.pfb
   copying : AntykwaTorunska-Regular.pfb
 copying files : otf
   copying : AntykwaTorunska-Italic.otf
   copying : AntykwaTorunska-Regular.otf
no map file at : /Users/Emil/local/tetex/share/texmf-local/ 
fonts/map/pdftex/context/texnansi-LIGA-KERN-public-torunska.map


   font identifier : AntykwaTorunska-Italic -> text -> tfm
  processing files : otf -> tfm + enc
I had to round some heights by 16.000 units.
I had to round some depths by 2.500 units.
I had to round some heights by 16.000 units.
I had to round some depths by 2.500 units.
updmap: This is updmap, version 1107552857
updmap: using transcript file `/Users/Emil/.texmf-var/web2c/updmap.log'
updmap: initial config file is `/Users/Emil/.texmf-config/web2c/ 
updmap.cfg'
updmap: configuration file updated: `/Users/Emil/.texmf-config/web2c/ 
updmap.cfg'


   font identifier : AntykwaTorunska-Regular -> text -> tfm
  processing files : otf -> tfm + enc
I had to round some heights by 16.000 units.
I had to round some depths by 2.500 units.
I had to round some heights by 16.000 units.
I had to round some depths by 2.500 units.
updmap: This is updmap, version 1107552857
updmap: using transcript file `/Users/Emil/.texmf-var/web2c/updmap.log'
updmap: initial config file is `/Users/Emil/.texmf-config/web2c/ 
updmap.cfg'
updmap: configuration file updated: `/Users/Emil/.texmf-config/web2c/ 
updmap.cfg'

 updating map file : texnansi-LIGA-KERN-public-torunska.map

generating : ls-r databases

mktexlsr: Updating /Users/Emil/local/tetex/share/texmf-local/ls-R...
mktexlsr: Done.


(4) This is the output I get when I texexec the test file:

[~/antykwa] texexec --pdf --mode=compact --once texnansi-LIGA-KERN- 
public-torunska.tex


TeXExec 5.4.3 - ConTeXt / PRAGMA ADE 1997-2005

fixing engine variable : pdfetex
executable : pdfetex
format : cont-en
 inputfile : texnansi-LIGA-KERN-public-torunska
output : pdftex
 interface : en
   options : once
  current mode : compact

This is pdfeTeX, Version 3.141592-1.30.3-2.2 (Web2C 7.5.5)
\write18 enabled.
(/Users/Emil/local/tetex/share/texmf-local/web2c/natural.tcx)
entering extended mode
(./texnansi-LIGA-KERN-public-torunska.tex

ConTeXt  ver: 2005.08.31  fmt: 2005.9.19  int: english  mes: english

language: language en is active

system  : cont-new loaded
(/Users/Emil/l

Re: [NTG-context] t-rsteps and starttyping

2005-09-23 Thread Mojca Miklavec

David Munger wrote:

Hans Hagen:

did you ever try 

 texexec --mode=demo s-pre-61 

using 'layers' is rather robust (no duplicate pages and such); 


Duplicated pages are the desired/intentional behaviour of this module 
(noone would object having a switch to choose between the method with 
JavaScript and the one with duplicated pages, but already now the module 
almost perfectly suits the needs).



Some of the older presentation styles build the pages stepwise, they
use either boxes, or buffers (i must look into it, but there is also
one that plugs into the otr; in your case, collecting in a box and
uncopying it is probably the best method.



Do you mean with \setbox-like commands? I'll have a look at it. Thanks
for the suggestion.


This method would solve a couple of problems, but is it possible to get 
half of a paragraph on the first slide and finish it on the second slide 
this way (by doing acrobatics with boxes)?


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