Re: [NTG-context] ConTeXt versioning model critique

2007-04-14 Thread luigi scarso
On 4/14/07, Hans Hagen <[EMAIL PROTECTED]> wrote:
> Ulf Martin wrote:
> > I wonder how people (esp. at Pragma) currently deal with this.
> for projects where we use relatively new features (which evolve) we use
> frozen trees;
Confirm
One tree of 2002 ("still-crazy-after-all-these-years").
Another of 2004.
Switch to last pdftex/context sometimes second quarter of this year;
switch to luatex at the end of next year.
Why switch ?
Last versions. are better (speed and features);
pdf spec. change .

>
> with regards to commands and such ... context is just (supposed to be)
> downward compatible; even kind of obsolete is still there; with regards
> to  different solutions to  problems, we often provide control usign low
> level mode indicators
On average, my macros are not completly portable from one tree to another,
but I'm sure that this depend from my poor coding tecnique for 95% .
5% is made by spaces and fonts .
>
> concerning xetex ... keep in mind that there xetex is the moving target
> (changes/extensions  in interface) and to some extend this was true for
> pdftex as well, but there we could silently adapt
> > Also remember that Knuth originally intended TeX to be an "eternal"
> > formatting system (thus we have at least the option to expand all macros
> > into plain TeX and keep that as the source file).
> >
> plain tex is just a format and unsuitable as expanded format
>
> well, i have some experimental code that dumps the expanded token list
> into a file; nu fun ... a 50 page moderately complex doc becomes some 25
> meg -)
pdf has some sort of  compression .
Do  \pdfcompresslevel=0 \pdfobjcompresslevel=0
make some differences in your 50page document?

> Sanjoy has set up an advanced test system ... so anything that you
> contribute can go in there
I will install on my machine.



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


Re: [NTG-context] ' doesn't make a prime in math mode

2007-05-06 Thread Mojca Miklavec
On 5/6/07, Ricard Roca wrote:
> Hi,
>
> In the lastest conTeXt, typing a ' in math mode typesets nothing and
> gives an error (undefined control sequence). You have to use ^\prime,
> instead.

Are you using MikTeX by any chance? This is broken exactly in the
version which MikTeX is using (which is the last one uploaded on
CTAN). You can take a recent version of ConTeXt (cont-tmf.zip from
pragma), unzip it, refresh filename database and recreate formats
(either explicitely for cont-en or uncheck the box "exclude this
format when updating" and recreate all formats). (The exact phrases
might be slightly different.)

The problem is that a recent version of ConTeXt requires pdfTeX 1.40
(but the described procedure worked for me in 2.5 and broke the whole
MikTeX in 2.6, although when I tried to reproduce the bug(?) for the
second time, it worked again).

It's up to Taco to decide when to upload a more recent and reasonably
stable version of ConTeXt to CTAN, but now when MikTeX 2.6 with the
latest pdfTeX has officially been released, it would make sense to get
rid of that bug in MikTeX (not necessary without introducing new
ones). The version of ConTeXt on TeX Live (with a fixed "euro bug")
seems stable enough to me, but of course it could be a later version
as well. MikTeX doesn't include XeTeX yet, so the recently broken font
handling wouldn't influence it too much.

(As far as I know, MikTeX is basically the only really important
distribution which fetches ConTeXt from CTAN. Other distributions are
either based on TeXLive or fetch recent files from Pragma.)

Mojca
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] setupindening and formulas

2007-06-05 Thread Aditya Mahajan
Quoting Stepan Roucka <[EMAIL PROTECTED]>:

> Thanks,
> with \startalign[n=1] the formulas don't overlap anymore, but they 
> are still too
> close. Here is test example:
>
> \setupoutput[pdftex]
> \enableregime[utf]
> \setupindenting[yes,medium]
>
> \starttext
>
> \startformula\startalign[n=1]
> 2I_{\rm d} = I_{\rm e}^0
>  \left[\exp\left({-qU\over k_{\rm B}T_{\rm
> e}}\right)-1\right]+I_{\rm i1}-I_{\rm i2}
> \stopalign\stopformula
>
> \placeformula[eq:debye]
> \startformula\startalign[n=1]
> \lambda_{\rm D} = \sqrt{\epsilon_0 k_{\rm B}T_{\rm
> e}\over nq_{\rm e}^2}
> \stopalign\stopformula
> \stoptext

What I meant was


\setupoutput[pdftex]
\enableregime[utf]
\setupindenting[yes,medium]

\starttext

\placeformula \startformula\startalign[n=1]
  \NC 2I_{\rm d} = I_{\rm e}^0
  \left[
\exp\left({-qU\over k_{\rm B} T_{\rm e}}\right)
-1 \right]
 + I_{\rm i1}-I_{\rm i2} \NR
  \NC \lambda_{\rm D} =  \sqrt{\epsilon_0 k_{\rm B}T_{\rm e} \over 
nq_{\rm e}^2}
  \NR[eq:debye]
\stopalign\stopformula

or better

\placeformula \startformula\startalign[n=2]
  \NC 2I_{\rm d} \EQ I_{\rm e}^0
  \left[
\exp\left({-qU\over k_{\rm B} T_{\rm e}}\right)
-1 \right]
 + I_{\rm i1}-I_{\rm i2} \NR
  \NC \lambda_{\rm D} \EQ
  \sqrt{\epsilon_0 k_{\rm B}T_{\rm e} \over nq_{\rm e}^2}
  \NR[eq:debye]
\stopalign\stopformula

\stoptext

If you feel that some formulas are too close, you can add 
\noalign{\vskip 1ex} between lines. Otherwise, if you want all 
multi-line formulas to be more spread out, change

\def\displayopenupvalue{0.25\bodyfontsize}

to something other than .25. \displayopenup value is equivalent to \jot 
in plain tex.

Aditya


___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Difference between MKIV and MKII

2007-08-10 Thread Peter Rolf
Peter Rolf schrieb:
> Hi Aditya,
> 
> Aditya Mahajan schrieb:
>> Quoting Hans Hagen <[EMAIL PROTECTED]>:
>>
>>> Aditya Mahajan wrote:
>>>> Hi,
>>>>
>>>> I get significantly different white spaces (and hence page breaks)
>>>> while using mkiv and mkii. Is this expected, or should I try to create
>>>> minimal example exhibiting such "problems"?
>>> indeed
>> Here is a minimal example. The spaces around formulas are more.
>>
> in the meantime I have also updated my \texmf subtree (LM should be up
> to date). Using your example, I now get a
> 
> 12pt text font with pdftex and
> 10pt text font with luatex (but 12pt in math mode).
> 
> So maybe you have the same problem?
> 
> If I remember it right, luatex normally used the OTF variant of LM in my
> prior test. Now it's also T1, but with an additional font (this one is
> used for the 10pt text) in comparison to pdftex:
> 
> lmrroman12-regular (Embedded Subset)
> Type: Type1 (CID)
> Encoding: Identity-H
>
stupid me. this is otf :)

http://partners.adobe.com/public/developer/opentype/index_font_formats.html

> Strange. Maybe only some messy font setup on my system.
> 
> Peter
> 
>> \starttext
>>
>> \dorecurse{10}
>> {
>> \input tufte
>> \startformula
>>   E = mc^2
>> \stopformula
>> \par
>> }
>>
>> \stoptext
>>
>> Aditya
>> ___
>> 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://tex.aanhet.net
>> archive  : https://foundry.supelec.fr/projects/contextrev/
>> wiki : http://contextgarden.net
>> ___
>>
> 
> ___
> 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://tex.aanhet.net
> archive  : https://foundry.supelec.fr/projects/contextrev/
> wiki : http://contextgarden.net
> ___
> 

___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] lost after upgrade

2007-08-27 Thread George N. White III
On 8/27/07, Jean Magnan de Bornier <[EMAIL PROTECTED]> wrote:

> Le 27 août à 12:38:38 "Mojca Miklavec" <[EMAIL PROTECTED]> écrit notamment:
>
> | On 8/27/07, Jean Magnan de Bornier <[EMAIL PROTECTED]> wrote:
> | > Hi all,
> | > Yesterday I issued:
> | > ctxtools --updatecontext
> | > and everything seemed as usual.
> | > But when trying to compile a standard file, I get:
> | > ...
> | > ConTeXt  ver: 2007.08.20 22:17 MKII  fmt: 2007.8.21  int: english/english
> | >
> | > language: language en is active
> | > system  : cont-new loaded
> | > (/usr/local/texlive/2007/../texmf-local/tex/context/base/cont-new.tex
> | >
> | > FatalError  : Your format does not match the base files!
> | >
> | > FormatVersion   : 2007.08.20 22:17 MKII
> | > FilesVersion: 2007.08.27 09:11
> | > ...
> | >
> | > and it fails. I tried to go to all the steps described in the wiki (for
> | > texlive install), no joy :-(
> >
> | Try
> | kpsewhich cont-en.fmt
> | or
> |locate cont-en.fmt (after running updatedb)
> | It should point you to [something]/we2c/pdftex/cont-en.fmt
> | Remove all the .fmt files inside that folder
> | ([something]/we2c/*/*.fmt): well, at least cont-en, you may leave the
> | latex format files untouched if any.
> >
> | Then run
> | texexec --make --all
> | and try again.
> >
> Thanks Mojca,
> But strangely I got the same message after rebuilding! Then I remove again
> the fmt files and try ctxtools --updatecontext again; same thing again!
>
> I also tried with another file, no more success!

Did you do the step of finding and removing all the old .fmt files?

On my system, fmtuil-sys puts the cont-en.fmt formats in
texmf-var/web2c/pdftex/ and texmf-var/web2c/xetex/,
but the context tools put them under texmf-config, so it
is all easy to end up with multiple versions of the .fmt files.


-- 
George N. White III <[EMAIL PROTECTED]>
Head of St. Margarets Bay, Nova Scotia
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


[NTG-context] Broken pdfs and many tools don't work

2007-09-12 Thread Vyatcheslav Yatskovsky
Hello,

I'm struggling with getting new updated to work (it now produces broken pdfs), 
and found, as a side effect,  that mtxrun doesn't work:

c:\>mtxrun --script cache Error in lua file loading: cannot open : 
No such file or directory


And another hint: while --make --luatex (seemingly) succeeds, --make fails:
...
pdftex: unrecognized option `-tcx=natural.tcx'
This is pdfTeX, Version 3.141592-1.40.4 (Web2C 7.5.6)
 \write18 enabled.
kpathsea: Running mktexfmt pdftex.fmt
I can't find the format file `pdftex.fmt'!
TeXExec | using mp engine mpost
TeXExec | using mps format path .
TeXExec | generating mps format metafun
mpost: unrecognized option `-alias=metafun'
mpost: unrecognized option `-initialize'
mpost: unrecognized option `-tcx=natural.tcx'
This is MetaPost, Version 1.000-rc1 (Web2C 7.5.5)
kpathsea: Running mktexfmt mpost.mem
mpost.exe: fatal: kpathsea: CreateProcess() failed for `mktexfmt ' (Error 2)
.
TeXExec |
TeXExec | tex engine path: .
TeXExec | mps engine path: .
TeXExec |
TeXExec |
TeXExec | runtime: 0.469


What could it be, if my env. vars are set as follows

[HKEY_CURRENT_USER\Environment]
"TEXMFMAIN"="i:\context\tex\texmf"
"TEXMFLOCAL"="i:\context\tex\texmf-local"
"TEXMFFONTS"="i:\context\tex\texmf-fonts"
"TEXMFEXTRA"="i:\context\tex\texmf-extra"
"TEXMFOS"="i:\context\tex\texmf-mswin"
"VARTEXMF"=%WINDIR%\Temp"
"TEXMFCACHE"="%WINDIR%\Temp"
"HOMETEXMF"=""
"OSFONTDIR"="%WINDIR%\Fonts"
"TEXMFCNF"="i:\context\tex\texmf{-local,}/web2c"
"TEXMF"="{$TEXMFOS,$TEXMFFONTS,$TEXMFLOCAL,$TEXMFEXTRA,!!$TEXMFMAIN}"
"TEXMFDBS"="$TEXMF"
"TEXFORMATS"="i:\context\tex\texmf-mswin/web2c/{$engine,}"
"MPMEMS"="i:\context\tex\texmf-mswin/web2c/{$engine,}"
"TEXPOOL"="i:\context\tex\texmf-mswin/web2c/{$engine,}"
"MPPOOL"="i:\context\tex\texmf-mswin/web2c/{$engine,}"
"RUBYLIB"="i:\context\tex\texmf-local\SCRIPTS\CONTEXT\RUBY;"
"PATH"="i:\context\tex\texmf-mswin\BIN;"

Best regards,
Vyatcheslav Yatskovsky

___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] waiting for mswincontext

2007-09-19 Thread Wolfgang Schuster
On Wed, 19 Sep 2007 16:45:45 +0200
Hans Hagen <[EMAIL PROTECTED]> wrote:

> Wolfgang Schuster wrote:
> > On Wed, 19 Sep 2007 09:46:32 +0200
> > Hans Hagen <[EMAIL PROTECTED]> wrote:
> > 
> >> Vyatcheslav Yatskovsky wrote:
> >>> Hello,
> >>>
> >>> Waiting impatiently for updated mswincontext. Would it be available from 
> >>> Pragma tomorrow or when?
> >> i need to update a few more binaries, and mojca and i have to fix/test a 
> >> couple of xetex things (new xetex bin too)
> >>
> >> Hans
> > 
> > Hi Hans,
> > 
> > can you also add ini files for the plain TeX formats with XeTeX, pdfTeX
> > and LuaTeX and the fonts.conf file for XeTeX. I prefer plain TeX for
> > test files or simple documents where I can live without ConTeXt and
> > this should work out of the box and not only after I create the files
> > by myself.
> 
> what's wrong with
> 
> texexec --make --all --xetex plain

it could be just a matter of taste but I prefer to call just pdftex or
xetex and the engine with the preloaded plain TeX formats, this is
shorter because the format files pdftex.fmt or xetex.fmt are loaded by
default with the engines and xetex has sets also charclasses to a few
charcaters in his own plain format.

> and alike? i have nu clue what ini files are for

nearly the same thing you do with your cont-de, cont-en files, the load
plain.tex and seta few option like pdfoutput=1 in pdftex.ini.

A simple pdftex.ini could look like

\input plain
\pdfoutput=1
\dump

I know the ini files from w32tex and don't know how the other TeX
distributions like TeXlive or MikTeX handle the formats but I like this
system and the ini files also in the ConTeXt minimals.

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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Fatal format file error; I'm stymied

2007-11-02 Thread Aditya Mahajan
On Fri, 2 Nov 2007, Hans Hagen wrote:

> Ernesto Schirmacher wrote:
>> After many years as a LaTeX user I'm attempting to switch over to ConTeXt.
>>
>> I recently upgraded my operating system to Ubuntu 7.10 (on an AMD64 machine) 
>> and got the TeXLive and ConTeXt packages from the Ubuntu repositories.  I 
>> tried compiling a very simple document:
>>
>> \starttext
>>
>> Hello this is \ConTeXt.
>>
>> \stoptext
>>
>> using the command: texexec simple.tex and got the following output on my 
>> terminal:
>>
>> TeXExec | processing document 'simple.tex'
>> TeXExec | no ctx file found
>> TeXExec | tex processing method: context
>> TeXExec | TeX run 1
>> TeXExec | writing option file simple.top
>> TeXExec | using randomseed 898
>> TeXExec | tex engine: pdftex
>> TeXExec | tex format: cont-en
>> This is pdfTeXk, Version 3.141592-1.40.3 (Web2C 7.5.6)
>> %$-line parsing enabled.
>> (/usr/share/texmf/web2c/natural.tcx)
>> ---! cont-en.fmt was written by pdfetex
>> (Fatal format file error; I'm stymied)
>> TeXExec | runtime: 0.177424
>>
>>
>> Clearly something is not working properly and I suspect the incompatibility 
>> between
>>This is pdfTeXk...
>> and
>>---! cont-en.fmt was written by pdfetex
>> is the source of all trouble here.
>>
>> Could someone please point me in the right direction to resolve this?
>
> pdfetex is obsolete now; there should only be a pdftex binary
>
> since ubunto is based on debian i assume that they use the same
> packages, so i cc to norbert

I can confirm that context works fine on ubuntu 7.10 (amd 64). I 
recently installed it on my laptop (fresh install of ubuntu), and 
followed the instructions on the wiki, and it worked. So, the ubuntu 
repository is ok.

I cannot help with the problem since I am still trying to figure out 
the nitty gritty of linux.

Aditya
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] What's the ps_name of AdobeMingStd-Light?

2007-12-10 Thread Wolfgang Schuster
2007/12/10, Zhichu Chen <[EMAIL PROTECTED]>:
> Hi,

Hi Chen,

can't you ue XeTeX or LuaTeX for your document instead of pdfTeX,
it will be easier for you because you don't need tfm and map files
and you need only the typescripts.

> I searched the mail list for a while and I got that if I didn't specify the
> font file, it will not be embeded and Acrobat Reader will just use its own
> fonts to show the characters.
>
> I want to make some Chinese documents and I think if I don't embed any
> fonts, it will be much smaller than it used to be. And there is a cool font
> AdobeMingStd-Light.otf coming along with Acrobat Reader so I wish I can use
> it. I converted it to ttf and then tfm files (I don't know whether it is
> legal) and write the map file like:

pdfTeX can use OpenType fonts and you don't have to convert them
into TrueType format.

> 
> uni-AdobeMingStd-Light-00 "Adobe Ming Std" " Unicode00Encoding ReEncodeFont
> "  
> I think the first column is for the tfm files, and I do get the
> uni-AdobeMingStd-Light-00.tfm to uni-AdobeMingStd-Light-ff.tfm files. And
> the second column is for the PS name of the font. I really don't know how to
> write it because it has spaces in it, and when I replaced it with another PS
> name that has no spaces or other special characters in it, say SimSun as a
> common Simplified Chinese font in Windows, it worked fine.
>
> So, any suggestions?

XeTeX or LuaTeX.

> Best Regards
> Chen

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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] What's the ps_name of AdobeMingStd-Light?

2007-12-13 Thread Zhichu Chen
Hi Wolfgang,

On Dec 13, 2007 7:17 PM, Wolfgang Schuster <[EMAIL PROTECTED]>
wrote:

> 2007/12/13, Zhichu Chen <[EMAIL PROTECTED]>:
> > Hi guys,
> >
> > Maybe this post has gone too far, and I've tried a bunch of methods to
> get
> > my map work. Anyway, I can't. And there's something I must say, why
> pdftex
> > must embed the whole otf file? It's about 15M for my only-one-character
> test
> > file and about 20M for my another only-two-characters test file,
> besides,
> > embedding otf files are so so slow. I don't think I'm ready for otf yet.
>
> I tried the Song font from Adobe a few days ago with XeTeX and a older
> chinese example text from you and the file size with 37 pages of output
> was a little bit over 1 MB, the same result with luaTeX but I got more
> pages.

Then XeTeX can treat otf fonts correctly? I never tried that. I convert the
otf file into multiple type1 fonts (which compiles much more faster on my
PC) and I got 1.7M with 60 pages with pdftex embed the subsets. And I got
440.9K with the same document and the same tfm files except I specify Adobe
Reader to use SimSun and not embed any fonts. I like the later.

>
>
> 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://tex.aanhet.net
> archive  : https://foundry.supelec.fr/projects/contextrev/
> wiki : http://contextgarden.net
>
> ___
>



-- 
Best Regards
Chen


 Zhi-chu Chen | Shanghai Synchrotron Radiation Facility
No. 2019 | Jialuo Rd. | Jiading | Shanghai | P.R. China
tel: 086 21 5955 3405 | zhichu.chen.googlepages.com
  | www.sinap.ac.cn

___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] What's the ps_name of AdobeMingStd-Light?

2007-12-14 Thread Hans Hagen
Zhichu Chen wrote:
> Hi Wolfgang,
> 
> On Dec 13, 2007 7:17 PM, Wolfgang Schuster <[EMAIL PROTECTED]>
> wrote:
> 
>> 2007/12/13, Zhichu Chen <[EMAIL PROTECTED]>:
>>> Hi guys,
>>>
>>> Maybe this post has gone too far, and I've tried a bunch of methods to
>> get
>>> my map work. Anyway, I can't. And there's something I must say, why
>> pdftex
>>> must embed the whole otf file? It's about 15M for my only-one-character
>> test
>>> file and about 20M for my another only-two-characters test file,
>> besides,
>>> embedding otf files are so so slow. I don't think I'm ready for otf yet.
>> I tried the Song font from Adobe a few days ago with XeTeX and a older
>> chinese example text from you and the file size with 37 pages of output
>> was a little bit over 1 MB, the same result with luaTeX but I got more
>> pages.
> 
> Then XeTeX can treat otf fonts correctly? I never tried that. I convert the
> otf file into multiple type1 fonts (which compiles much more faster on my
> PC) and I got 1.7M with 60 pages with pdftex embed the subsets. And I got
> 440.9K with the same document and the same tfm files except I specify Adobe
> Reader to use SimSun and not embed any fonts. I like the later.

xetex just pipes data into dvipdfmx, and dvipdfmx can subset (this was 
accomplished by Chof, who lives in Korea and uses huge fonts)

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
-
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] migrating to ConTeXt

2007-12-22 Thread Mojca Miklavec
On Dec 22, 2007 3:19 PM, Gour wrote:
>
> > (We'll drop that letter from our keyboards soon :)
>
> Oh, then I'll stay with friendly lyx/latex...

What does lyx have to do with đ and the (Slovenian) keyboard?

> > That was before anyone started complaining about its
> > non-functionality :).
>
> When I was exploring  ConTeXt I was told about that from someone
> else. Strange, it was going on...

Most problems have been resolved about two years ago. But it's true -
đ didn't work for at least half a dozen of different reasons :)

> > Which general utf-8 problems? There might be some issues every now and
> > then (in pdfTeX each character has to be defined separately and in
> > LuaTeX there might be some new unpolished/non-debugged features), but
> > they're usually resolved once someone complains. Exotic scripts don't
> > work in pdfTeX of course.
>
> See ml's archives in '02.

2002? That must be somewhere aroud the bronze age for ConTeXt :-)

> > AUCTeX is LaTeX oriented I guess, but I don't knom the details.
>
> It says it supports ConTeXt and it does ;)

I'm sorry. I don't know that tool at all.

> > It always depends on source, so creating a general converter is
> > impossible. I would run "search and replace" a few times (depending on
> > source), but that cannot solve everything.
>
> OK. This is not the rush.

Well ... I would say ... you need to start somewhere and once you
stumble upon something you don't know how to convert, ask on the list.

> What about my last point: docs ?

That's a taboo, that's why your original question has been removed :)

Mojca
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


[NTG-context] Re: fonts in context (general question)

2004-03-15 Thread Patrick Gundlach
Hello Severin,

> i have a general question to the use of fonts in context.

Your question applies to TeX in general (LaTeX as well as other
formats). 

> is that true that i always need a *.tfm and *.pfb file of a font to use it
> in context??

if you use pdftex: yes. If you use Knuth's TeX: only *tfm files are
used. But as soon as you generate a ps or pdf file for
viewing/printing, the pfb file gets used.

> if i generate some *.tfm (from afm files) with "texfont" context complains
> about not finding the *.pfb files.

I don't know anything about texfont, but this looks slightly odd at
first sight. 

> when I use texfont *.tfm and *.vf are generated. what are the *.vf files
> good for??

vf stands for virtual font. These fonts are normally used to change
the encoding of an original font. You use the vf without noticing it,
when switching to ec encoding for example. The dvi driver (or pdftex)
is mapping the special characters (8-bit characters) to the
position really used in the font (well, not completely true) by
looking at the virtual font. For example when you request a ß
(germandbls) and have ec encoding activated, TeX looks for a glyph in
position 255 (decimal).  But the real font is 8r encoded and the
germandbls is in position 223. There is a virtual font (phvr8t.vf for
example) that has the mapping 255 -> 223 (377 -> 337 octal):

(CHARACTER O 377
   (CHARWD R 0.610999)
   (CHARHT R 0.735498)
   (CHARDP R 0.011493)
   (MAP
  (SETCHAR O 337)
  )
   )

So TeX gets the dimensions from the vf as above, but the dvi/pdf
driver looks inside the vf and sees "the charcter 377 (octal) is
really character 337 (octal)". But there is much *more* that can be
done with vf. See Knuth's "More fun for grand wizards" article about
virtual fonts.



Patrick
-- 
Morgen gibts kein ABC mehr...
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Re: pdfTeX questions

2004-05-31 Thread Peter Münster
On Mon, 31 May 2004, Patrick Gundlach wrote:

> \setupinteraction[title=Übung,Author=Münster]

Thanks, I missed those keys in the manual.
Ü is still not working, perhaps I should update to ConTeXt-2004.4.9 ?

It seems, that there is no key named "keywords" ?

> > \pdfdest num 1 fitbh % I would like to get the same result as in LaTeX with
> >  % \hypersetup{pdfstartview={FitBH}}

> what does this do?

FitBH means, fit to width of bounding box. When reading text on the screen,
the combination of FullScreen and FitBH seems to me optimal.

When you create a pdf-file of the following LaTeX-source (with pdflatex),
you see all features, I'm looking for:

\documentclass{article}
\usepackage[latin1]{inputenc}
\usepackage{hyperref}
\hypersetup{pdfstartview=FitBH,pdfpagemode=FullScreen,
  pdfauthor={Peter Münster},pdftitle={A title},pdfsubject={The subject},
  pdfkeywords={some keywords}}
\begin{document}
\section{Section with ö, with bookmark}
bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla
bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla
bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla
bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla
bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla
bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla
\end{document}

BTW, how do you create bookmarks with ConTeXt?
I tried the following, but it did not work:

\setupoutput[pdftex]
\enableregime[il1]
\setupinteraction[state=start,menu=on]
\setupinteractionmenu[left][state=start]
\setupinteractionscreen[option=bookmark]
\starttext
\section{Section with ö}
some text
\stoptext

Cheers, Peter

-- 
http://pmrb.free.fr/contact/
_
FilmSearch engine: http://f-s.sf.net/
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


RE: [NTG-context] Help with LaTeX -> ConTeXt & book typesetting

2004-09-12 Thread Ulrich Dirr
Hans Hagen wrote:
>> (BTW I've already produced all expanded version with fontinst)
>> 
> wait for the new pdftex (or grab a test versions soemwhere): it has auto
> expansion included, and there i sno need any more to create the
> instances yourself (doen within pdftex)!

Yes, I know. Of course this is an improvement. But I've already set it up
-- so why not use it?

Nevertheless it seems to me that there're several problems still. I'm using
now:
This is pdfeTeXk, Version 3.141592-1.20a-rc7.2-2.2
ConTeXt  ver: 2004.8.15  fmt: 2004.9.12  int: english  mes: english

Sometimes the hyphen is not protruded at all. BTW where do I define in
ConTeXt my font specific microtypographic values? In LaTeX I wrote
  \input{protcode-helvetica}
  \input{efcode-helvetica}
  \pdfprotrudechars=2
  \pdfadjustspacing=2
  \def\setupfont{\setprotcode\font}
  \def\setupEFfont{
 \setprotcode\font
 \resetefcode\font
 \pdffontexpand\font 20 20 5}
  ...

>> If ConTeXt is using the new german spelling & hyphenation rules then:
>> *§108* If ss stands for ß, then it will be hyphenated s-s. E.g., Grüs-se
>> (instead of Grü-ße), heis-sen (instead of hei-ßen).
>> *§109* The connection of consonants ch, ck, and sch, and also in foreign
>> words with ph, rh, sh, and th will not be hyphenated in between if they
>> stands for a single sound. E.g., Bü-cher, Zu-cker, ba-cken, Fla-sche,
>> Ma-che-te, Pro-phet, Myr-rhe, Ca-shew-nuss, ka-tho-lisch.
>> 
>> 
> so .. what are the proposed changes to the german language specifics in
> enco-fde.tex? 

Mmh, I'm that familiar with ConTeXt ;-) Hopefully the patterns will do
most.
But of course
  \installcompoundcharacter "ck {\discretionary {k-}{k}{ck}} 
should be changed to
  \installcompoundcharacter "ck {\discretionary {-}{ck}{ck}} 
((ck should always stay as it is; maybe one even don't need this def
anymore))

Ulrich

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


Re: [NTG-context] bookmarks problems

2004-12-13 Thread Adam Lindsay
Christopher Creutzig said this at Mon, 13 Dec 2004 16:40:13 +0100:

>- Preview.App does display the list of bookmarks, but they do not work.
>   The same file has no such problems in Adobe.  (There are files with
>   bookmarks that work ok in Preview.App, such as the Adobe JavaScript
>   reference.)

Apple has a limited idea of what's a reference in the bookmark list. They
only have a partial implementation of the spec. Hans's use of the PDF
spec with the bookmarks is a little "loose." I studied this in more
detail with respect to XeTeX. I might be able to find some of that
correspondence. Oh, here it is:

>> If so, I'd be interested to see the PDF 
>>that results (pdfTeX, at least, can be told not to compress the PDF 
>>streams, can't it?), so as to get some idea of the link types that 
>>Preview understands.
>
>It turns out that it understands indirect links very well. That is, the
>first fails:
>/S/GoTo/D [ 4/Fit]
>...where "4" is the page number, but the second succeeds:
>/S/GoTo/D [ 36 0 R /Fit]
>...where 36 is the object number of a /Type /Page object in the PDF file. 

Yeah, that sums up the difference between a link that doesn't work, and
one that does, in Preview.app. ConTeXt may use a bit of JavaScript in
some of its links, which Preview.app has a tough time with.

I haven't looked at this in detail lately, and barely at all with the
pdftex drivers. Hans, do you think it would be hard to turn direct page
links into indirect links (point to page object)?

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
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] acro bat 7

2005-01-08 Thread Willi Egger
Hi,
Indeed there was upon a time such a discussion ... Though not 
remembering the details, I found a test file and after a small 
adaptation it gives two pages:
- first page: page-background green (as defined by Context)
- second page: page-background as the first page, text area gets a 
transparent color with the values "normal, 0.5, white".

The result in Acrobat Reader 7 is indeed not to expectation. The page 
backround on the second page is still green, though not at all of the 
same colour.

Apparently there is no mistake in the pdftex-PDF-file because viewing 
this file with Acrobat 5 (!) the result is as expected. The 
page-background remains the same green on both pages.

Kind regards Willi
Hans Hagen wrote:
Hi Willy, [cc to context list]
Long ago we mailed about acrobat messing up colors when using 
transparencies. Well, it looks like it happens again. When 
transparencies are used, all colors are affected (become darker).

In previous versions, the pag ecache was the troublemaker, dunno what 
causes it now, since i cannot influence the cache.

Can you test this on your machine as well?
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
% Testfile for transparent colors used as the text-background
% Hans Hagen
% CONTEXT file
% filename: transparentbackground.tex
% W. Egger
% 09-01-2005

\setupoutput[pdftex]

\setupcolors[state=start]

\startuseMPgraphic{tBG}
path p ;
p := unitsquare xscaled \overlaywidth yscaled \overlayheight ;
fill p withcolor transparent("normal",.5,\MPcolor{white}); % This 
however results in fading of ALL of the colors...
\stopuseMPgraphic

\defineoverlay[textBG][\useMPgraphic{tBG}]

\setupbackgrounds[page][background=color,backgroundcolor=green,state=repeat]

\starttext

\input tufte\page

\setupbackgrounds[text][background=textBG,state=repeat]
\input tufte
\stoptext
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] Installing a non-standard encoding vector

2005-04-07 Thread Idris Samawi Hamid
Dear gang,

I'm trying to install an expert font a with a non-standard encoding vector; 
can't use texnansi, ec, etc.. I tried the following:

1. I created an encoding file for my font (minion-o.enc), following the syntax

/encminiono[
/ornament1
:
/ornament23
/space 
] def

2. I placed the encoding file in /texmf-fonts/fonts/enc/dvips/minion-o;

3. I ran TeXFont:

==
   encoding vector : minion-o
   vendor name : adobe
   source path : .
   font collection : minion-o
   texmf font root : c:\context\tex\texmf-fonts
   pdftex map file : minion-o-adobe-minion-o.map
   source path : .
  processing files : all on afm path
locating afm files : using pattern *
 copying files : afm
   copying : pmnrp8a.afm
 copying files : pfb
   copying : pmnrp8a.pfb
no map file at : 
c:\CONTEXT\tex\texmf-fonts/fonts/map/pdftex/context/min
ion-o-adobe-minion-o.map

   font identifier : Minion-Ornaments -> text -> tfm + vf
generating raw tfm/vpl : minion-o-raw-pmnrp8a (from pmnrp8a)
! tokens 3 to 257 in encoding must be literal names
] def

 ^
 generating new vf : minion-o-pmnrp8a (from minion-o-raw-pmnrp8a)
 updating map file : minion-o-adobe-minion-o.map
==

but \showfont does not show any of my characters.

There appears to be one error:

==
! tokens 3 to 257 in encoding must be literal names
==

The label says:

==
name: minion-o-pmnrp8a encoding: minion-o mapping: minion-o handling: default
==

What am I missing here? How can I can install this font with my own encoding 
so that \showfont will display it?

I enclose the complete encoding vector.

Best and Thnx
Idris

==
/encminiono[
/ornament1
/ornament2  
/ornament3 
/ornament4 
/ornament5
/ornament6  
/ornament7   
/ornament8   
/ornament9  
/ornament10  
/ornament11 
/ornament12  
/ornament13 
/ornament14   
/ornament15  
/ornament16   
/ornament17  
/ornament18 
/ornament19 
/ornament20  
/ornament21  
/ornament22 
/ornament23
/space 
] def
==


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


Re: [NTG-context] How to use .eps figure in ConTeXt?

2005-05-23 Thread 龙 飞
Thanks all. This problem solved. 


From: Taco Hoekwater <[EMAIL PROTECTED]>
Reply-To: mailing list for ConTeXt users 
To: mailing list for ConTeXt users 
Subject: Re: [NTG-context] How to use .eps figure in ConTeXt?
Date: Mon, 23 May 2005 14:40:56 +0200


Hi,

texexec's  --pdf switch uses pdfetex to generate a pdf document directly,
and pdftex does not accept images in eps format, only .pdf, .jpg and .png
are supported.

The  error message is slightly misleading, because it actually means:

  "figures: xx.eps.pdf has zero dimensions"

If you want to use your images in pdf, either convert them from eps to
pdf before calling texexec, or use the texexec => dvips => ps2pdf
route to create the pdf document (using ghostscript instead of pdftex).

Side note: it is generally better to use a 'bare' \externalfigure[xx]
instead
of giving an explicit extension. That way, assuming you have xx.eps and
xx.pdf,
both dvi and pdf trajects would work without the need for source changes.

Greetings, Taco

龙 飞 wrote:
> Today I try to insert .eps file in to my presentation. I use
> \externalfigure[xx.eps] to insert xx.eps. The figure shows correct in
> the dvi file generated by "texexec --once --texutils xx.tex". However
> this figure disappears in the pdf file generated by "texexec --pdf
> xx.tex". The log says "figures: xx.eps has zero dimensions". What is 

the

> problem? Is there anything wrong with the .eps file?
> Thanks
>
> _
> 享用世界上最大的电子邮件系统― MSN Hotmail。 http://www.hotmail.com
> ___
> 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


_
享用世界上最大的电子邮件系统― MSN Hotmail。 http://www.hotmail.com 


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


[NTG-context] Re: Accents in MathML

2005-05-26 Thread Duncan Hothersall
I said:

> Interestingly, if I forget about unicode and use é instead of é,
> then no matter what I put in the preamble I get the e with a guillemot
> superimposed. So whatever is mapping é incorrectly seems also to be
> mapping é incorrectly.

Further testing suggests that my problem is this:

Between \startXMLdata and \stopXMLdata, where MathML is being parsed
directly by ConTeXt, I get the wrong results for accented characters
within  elements. For example, I get an e character with a
guillemot superimposed on top when I want an e with an acute accent. It
doesn't seem to matter whether the markup is unicode é, the entity
é, or the command \eacute.

Similar problems happen with other accents I have tried. In the case of
  ñ the accent is almost right but comes out too big (looks like the
maths version of the accent?).

The following is my local test file, using unicode and comparing running
text to  in MathML:

--
\mainlanguage[es]\enableregime[utf]\useencoding[uc]
\usemodule[mathml]\setupoutput[pdftex]
\starttext
Situación niños volúmenes sí interés:
\startXMLdata Situación niños
volúmenessí
interés\stopXMLdata
\stoptext
--

The following is a non-unicode test file that will process on Live and
exhibits the same errors in the MathML accent rendering. It uses entity
references instead of unicode in the MathML, but because they map to the
same thing the output is the same:

--
\mainlanguage[es]\enableregime[utf]\useencoding[uc]
\usemodule[mathml]\setupoutput[pdftex]
\starttext
\startXMLdata Situación
niños volúmenessí
interés\stopXMLdata
\stoptext
--

I have a feeling I have made this more complex than it needed to be, but
can anyone shed light on how to fix it?

Thanks,

Duncan

PS Apologies for the nonsense Spanish content - it's just random words
with accents.
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] newest version on teTeX-3.0

2005-06-07 Thread Peter Münster
On Sun, 5 Jun 2005, Taco Hoekwater wrote:

> Barring typo's, this wiki page should be a help for people trying
> to upgrade a 'normal' teTeX:
> 
>http://contextgarden.net/TeTeX_3.0_installation

Indeed, a great help! Thank you!

Here the result on my machine:
I've followed all the steps on your page, and then:

This is dvips(k) 5.95a Copyright 2005 Radical Eye Software (www.radicaleye.com)
' TeX output 2005.06.06:1049' -> test.ps
. [1] 

So dvips seems ok.

texexec --pdf test:

fonts   : using map file: original-base
fonts   : using map file: ec-public-lm
fonts   : using map file: ec-base
fonts   : using map file: original-ams-base
fonts   : using map file: original-public-lm
systems : begin file test at line 3
[1.1{/opt/teTeX/texmf-dist/fonts/map/dvips/context/original-empty.map}{/opt/teT
eX/texmf-dist/fonts/map/dvips/context/original-base.map}{/opt/teTeX/texmf-dist/
fonts/map/dvips/context/ec-public-lm.map}{/opt/teTeX/texmf-dist/fonts/map/dvips
/context/ec-base.map}{/opt/teTeX/texmf-dist/fonts/map/pdftex/context/original-a
ms-base.map}{/opt/teTeX/texmf-dist/fonts/map/dvips/context/original-public-lm.m
ap}]
systems : end file test at line 5
 ) 
Output written on test.pdf (1 page, 2742 bytes).
Transcript written on test.log.

This is a bitmap font, and very ugly with Acroread...

Then I removed the lines 75-107 (from "\resetmapfiles" to "\fi") from
cont-sys.rme (and saved it as cont-sys.tex). After that, I got a pdf-file
with type 1 fonts, but a lot of warnings like this one:
Warning: pdfetex (file /opt/teTeX/texmf-var/fonts/map/pdftex/updmap/pdftex.map)
: fontmap entry for `bchb8r' already exists, duplicates ignored

So, there are a lot of duplicates in pdftex.map (about 600), like:

vnti8 LMRoman8-Italic "enct5psn ReEncodeFont" http://pmrb.free.fr/contact/
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] The windows minimal exe installer

2008-09-08 Thread Yue Wang
OK, I update the minimals and get the following:

sent 348 bytes  received 101193 bytes  15621.69 bytes/sec
total size is 73454574  speedup is 723.40
mtx update | running command: rsync -rpztlv --stats
contextgarden.net::'minimals/current/bin/common/linux/
minimals/current/bin/context/linux/
minimals/current/bin/metapost/linux/ minimals/current/bin/xetex/linux/
minimals/current/bin/man/ minimals/current/bin/common/linux/
minimals/current/bin/context/linux/
minimals/current/bin/metapost/linux/
minimals/current/bin/luatex/linux/ minimals/current/bin/man/
minimals/current/bin/common/linux/ minimals/current/bin/context/linux/
minimals/current/bin/metapost/linux/
minimals/current/bin/pdftex/linux/ minimals/current/bin/man/'
'/home/yue/context/tex/texmf-linux'
run | rsync -rpztlv --stats
contextgarden.net::'minimals/current/bin/common/linux/
minimals/current/bin/context/linux/
minimals/current/bin/metapost/linux/ minimals/current/bin/xetex/linux/
minimals/current/bin/man/ minimals/current/bin/common/linux/
minimals/current/bin/context/linux/
minimals/current/bin/metapost/linux/
minimals/current/bin/luatex/linux/ minimals/current/bin/man/
minimals/current/bin/common/linux/ minimals/current/bin/context/linux/
minimals/current/bin/metapost/linux/
minimals/current/bin/pdftex/linux/ minimals/current/bin/man/'
'/home/yue/context/tex/texmf-linux'
receiving file list ... done
./
bin/
bin/afm2pl
bin/afm2tfm
bin/bibtex
bin/context
bin/ctxtools
bin/dvipdfmx
bin/dvipos
bin/dvips
bin/exatools
bin/kpseaccess
bin/kpsestat
bin/kpsewhich
bin/luatex
bin/luatools
bin/makempy
bin/mktexlsr
bin/mpost
bin/mpstools
bin/mptopdf
bin/mtxrun
bin/pdftex
bin/pdftools
bin/pdftosrc
bin/pdftrimwhite
bin/pltotf
bin/pstopdf
bin/rlxtools
bin/runtools
bin/texexec
bin/texfind
bin/texfont
bin/texlua -> luatex
bin/texluac -> luatex
bin/texmfstart
bin/texshow
bin/textools
bin/texutil
bin/tftopl
bin/tmftools
bin/ttf2afm
bin/vftovp
bin/vptovf
bin/xdvipdfmx
bin/xetex
bin/xmltools


no mp related binaries except mpost.

The machine I am using for testing is Ubuntu Linux 32bit

[EMAIL PROTECTED]:~$ uname -a
Linux yuewang 2.6.24-21-generic #1 SMP Mon Aug 25 17:32:09 UTC 2008
i686 GNU/Linux
[EMAIL PROTECTED]:~$



On Mon, Sep 8, 2008 at 1:49 PM, Aditya Mahajan <[EMAIL PROTECTED]> wrote:
> On Mon, 8 Sep 2008, Yue Wang wrote:
>
>>> That's already working (should be at least).
>> I mean the GUI installer. Windows users seldom do command line job:)
>>
>> btw, I mailed a bug report to [EMAIL PROTECTED] one week
>> ago, but it seems that no one received it:(
>> When I use minimals in Linux, in MKII, anything that have something to
>> do with "btex... etex" wont work because texexec cannot find other mp
>> software. so it always reports it failed to process the mpx files.
>> Windows minimals seemed to have mpto/makempx/... binaries, however,
>> Linux Minimals did not have them.
>
> Linux minimals for 64 bit has mpto and makempx and a simple file with btex
> and etex works fine with mkii.
>
> Aditya
> ___
> 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://tex.aanhet.net
> archive  : https://foundry.supelec.fr/projects/contextrev/
> wiki : http://contextgarden.net
> ___
>
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Does ConTeXt really support russian language?

2008-12-24 Thread Mojca Miklavec
On Wed, Dec 24, 2008 at 4:34 PM, Andrey Riabushenko wrote:
> I have spend three days trying to make ConTeXt show Cyrillic letters with zero
> success.
> I have tried to follow  http://wiki.contextgarden.net/Russian precisely still
> I see only latin transliteration instead of Cyrillic letters.

I admit that those instructions are confusing.

There are two completely different ways to use Cyrillic.

1.) Using LuaTeX or XeTeX
2.) Using pdfTeX


> The funny thing that http://wiki.contextgarden.net/Vietnamese gives absolutely
> different set of commands for internationalization. I have tried them as well
> with no luck.
>
> I have tried about 10 variants that I have found on wiki.contextgarden.net and
> ntg-context@ntg.nl maillist NONE of them produce russian letters just latin
> transliteration and empty text.
>
> I have tried so far:
> Fresh install of TeX Live 2008 on Windows XP
> Fresh install of TeTeX 3 on FreeBSD 7

(That's not the best choice.)

> Fresh install of Latest Context Minimals on FreeBSD 7 (installed on
> 22-12-2008)

ConTeXt minimals contains the following fonts with cyrillic glyphs:
- TeX Gyre, but the quality of Cyrillic is not optimal (the guys need
some expert in Cyrillic to fix fonts)
- Gentium
- Antykwa Torunska
- Iwona & Kurier
with support for Cyrillic.

They don't contain the cm-super fonts (and that's important
information). TeX Live 2008 contains cm-super fonts as well.

You first need to tell us what font you want to use and which engine.

For pdfTeX you need:

\enableregime[utf-8] % (but maybe only \enableregime[utf] works at the
moment due to some bug)
\mainlanguage[ru] % or [russian]
\usetypescript[name][t2a]
\setupbodyfont[name]

Where name could be one of the allowed fonts from the set above. Try
the following (with texexec):

\enableregime[utf]
\mainlanguage[ru]
\usetypescript[antykwa-torunska][t2a]
\setupbodyfont[antykwa]

\starttext
Немного русского текста для пробы.
\stoptext

or this (with "texexec --xtx" or "context"):

\mainlanguage[ru]
\usetypescript[antykwa-torunska]
\setupbodyfont[antykwa]

\starttext
Немного русского текста для пробы.
\stoptext

just to make sure that it works.

After that, you need to tell what font you want to use and what engine
you want to use.

pdfTeX's handling of Cyrillic is kind-of-a-hack. XeTeX and LuaTeX
handle UTF-8 natively, but esp. LuaTeX is still a tiny bit
experimental (which means that you should not rely on its functionaliy
on critical documents), but much more powerful.

> LaTeX, from the same installations of TeXlive 2008 and teTeX,  works out box,
> just as simple as:
> \usepackage[utf8]{inputenc}

The same command in ConTeXt reads
   \enableregime[utf-8]

> \usepackage[T2A]{fontenc}

The equivalent in ConTeXt is to add [t2a] in the \usetypescript line,
but only when you work with pdfTeX. With XeTeX and LuaTeX this hack
becomes obsolete.

Note that this gives you cm-super fonts, but those are only available
in TeX Live, not in the minimals.

This is supposed to work. It's a bug that it doesn't:

Variant 1:
\definetypeface [russian] [rm] [serif] [computer-modern] [default]
[encoding=t2a]
\setupbodyfont [russian]

Variant 2:
\usetypescript[modern-base][t2a] % Hans - why only modern-base?
\setupbodyfont[modern]

I could provide you a patch for any given font but Computer Modern. Taco?

Mojca
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Dubious "checksum mismatch" message on log file

2012-02-01 Thread Vladimir Lomov
Hello,
** Hans Hagen [2012-02-01 15:22:58 +0100]:

> On 1-2-2012 15:15, Ulrike Fischer wrote:
> >Am Wed, 1 Feb 2012 10:54:04 +0100 schrieb luigi scarso:

>>>It's not related to MKIV but to luatex.

>>I think it is related to MKIV (or more precisely to the fontloader).

>>It is a bit difficult to demonstrate it with context (how to you use
>>luatex without mkiv there?) but latex (or plain) it is quite easy:

>>The followings examples load pplr7t.vf.  Both give the checksum
>>mismatch message in the log if and only if the lua-fontloader
>>luaotfload it also loaded:

>>%LaTeX
>>\documentclass{article}
>>\usepackage{luaotfload}
>>\begin{document}
>>\font\test=pplr7t \test abc
>>\end{document}

>>%plain
>>\input luaotfload.sty
>>\font\test=pplr7t \test abc
>>\bye

>>So the code from luaotfload (which is based on the context
>>fontloader code) changes a checksum (either in the vf or in the
>>tfm-information) and so the check in the luatex engines fails.

>>(Imho it is only a minor problem, vf-fonts are not much used with
>>luatex).

> Afaik nothing is done with a checksum. There is a checksum field in
> the loaded tfm but I don't think one has to be passed to luatex.
> Maybe one should be passed when a regular tfm file is used but even
> then, loading a vf file is independent.

> So, it's best to just ignore that message.

Correct me if I'm wrong, but this how I understand TFM font and currect
state of tex engines (actually pdftex, xetex and luatex):
1. to use any font in tex one need a TFM file (file name = fontname.TFM),
that file actually contain informationabout font, not how exatly glyphs
are constructed;
2. when [original] tex read a document file it searches for TFM and VF
files, read them and write DVI file with information about that files;
3. after that user can send file to printer or publisher to print it on
printer. As I understand the purpose of checksum was to be sure that
publisher or printer would use exatly the same fonts as user. If user
converts DVI file to PS/PDF one on his/she computer using dvips or
dvipdfm* the checksum mostly useless, assuming files are not corrupted.

Nowadays pdftex, xetex and luatex are widely used and most time users
generate PDF files on the same computer they write documents, send PDF
files which have they own mechanism to check font consistency.

But still there are [plenty] DVI files around, as well as luatex engine
might generate DVI file. The convertion to PS/PDF is performed by
dvips/dvipdfm* programs, that's ok. But what about luatex with DVI
output?

My conclusion:
1. if PDF output is only interesting then it is Ok, ignore that message,
because font information is already in PDF and PDF programs should deal
with it;
2. if DVI output is concerned then luatex _must_ be consistent with
pdftex (also can write DVI files), which, imho (don't check), takes care
about both TFM and VF checksums.

---
WBR, Vladimir Lomov

-- 
The happiest time of a person's life is after his first divorce.
-- J.K. Galbraith 
___
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Problems with Standalone ConTeXt

2012-11-18 Thread Wolfgang Schuster

Am 18.11.2012 um 14:30 schrieb H. Özoguz :

> After installing the standalone version (was quite hard for me with 
> TexWorks), now several problems arises. The simplest document
> 
> \starttext
> Test
> \stoptest
> 
> compiles without problems. But my book gives now several errors. F.e.:
> 
> +
> C:/Users/Hussein/context/tex/texmf-context/scripts/context/ruby/base/switch.rb:21:
>  Use RbConfig instead of obsolete and deprecated Config.
> 
> TeXExec | processing document 'main_inderschule.tex'
> 
> TeXExec | no ctx file found
> 
> TeXExec | tex processing method: context
> 
> TeXExec | TeX run 1
> 
> TeXExec | writing option file main_inderschule.top
> 
> TeXExec | using randomseed 516
> 
> TeXExec | tex engine: pdftex
> 
> TeXExec | tex format: cont-en.mkii
> 
> This is pdfTeX, Version 3.1415926-2.5-1.40.13 (TeX Live 2012/W32TeX)
> 
> \write18 enabled.
> 
> entering extended mode
> 
> (./main_inderschule.tex
> 
> 
> ConTeXt ver: 2012.05.30 11:26 MKII fmt: 2012.11.18 int: english/english
> 
> 
> system : cont-new.mkii loaded
> 
> (c:/Users/Hussein/context/tex/texmf-context/tex/context/base/cont-new.mkii
> 
> systems : beware: some patches loaded from cont-new.mkii
> 
> )
> 
> system : cont-sys.rme loaded
> 
> (c:/Users/Hussein/context/tex/texmf-context/tex/context/user/cont-sys.rme
> 
> (c:/Users/Hussein/context/tex/texmf-context/tex/context/base/type-siz.mkii)
> 
> (c:/Users/Hussein/context/tex/texmf-context/tex/context/base/type-one.mkii))
> 
> system : main_inderschule.top loaded
> 
> (./main_inderschule.top)
> 
> bodyfont : 12pt rm is loaded
> 
> language : patterns nl->texnansi:texnansi->1->2:2 nl->ec:ec->2->2:2 us->
> 
> ec:ec->3->2:3 de->texnansi:texnansi->4->3:3 de->ec:ec->5->3:3 
> da->ec:ec->6->2:2
> 
> sv->ec:ec->7->2:2 af->ec:ec->8->2:2 gb->ec:ec->9->2:2 fr->texnansi:texnansi->1
> 
> 0->2:2 fr->ec:ec->11->2:2 es->ec:ec->12->2:2 ca->ec:ec->13->2:2 
> it->texnansi:te
> 
> xnansi->14->2:2 it->ec:ec->15->2:2 la->ec:ec->16->2:2 
> pt->texnansi:texnansi->17
> 
> ->2:2 pt->ec:ec->18->2:2 ro->ec:ec->19->2:2 pl->pl0:pl0->20->2:2 
> pl->ec:ec->21-
> 
> >2:2 pl->qx:qx->22->2:2 cs->il2:il2->23->2:2 cs->ec:ec->24->2:2 
> >sk->il2:il2->25
> 
> ->2:2 sk->ec:ec->26->2:2 hr->ec:ec->27->2:2 sl->ec:ec->28->2:2 
> tr->ec:ec->29->2
> 
> :2 tk->ec:ec->30->1:2 lt->l7x:l7x->31->2:2 agr->agr:agr->33->2:2 
> fi->ec:ec->34-
> 
> >2:2 hu->ec:ec->35->2:2 ru->t2a:t2a->37->2:2 uk->t2a:t2a->38->3:3 loaded
> 
> specials : dvips loaded
> 
> systems : system commands are enabled
> 
> language : language en is active
> 
> specials : loading definition file tpd
> 
> (c:/Users/Hussein/context/tex/texmf-context/tex/context/base/spec-tpd.mkii
> 
> specials : loading definition file fdf
> 
> (c:/Users/Hussein/context/tex/texmf-context/tex/context/base/spec-fdf.mkii))
> 
> systems : begin file arab_inderschule at line 2
> 
> (./arab_inderschule.tex
> 
> ! Undefined control sequence.
> 
> l.5 \definehighlight
> 
> +
> 
> 
> Undefined control sequence "definehighlight"? Why?
> 
> 
> With the Texlive2012 version of context the same code compiles without 
> problems. So are there some changes in the way of defining something, what I 
> have to change to compile with the last context version?

You process your document with MkIV (texexec  or context --pdftex 
) but your document requires MkIV (context ) because you 
use the command \definehightlight which is only available with MkIV.

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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] cont 2005.10.27 & t5-lmtt10 font problem

2005-11-04 Thread Tobias Wolf
On 11/4/05, Taco Hoekwater <[EMAIL PROTECTED]> wrote:
>
> Hi Tobias,
>
> Tobias Wolf wrote:
> >
> > Well, thanks for the offer to have a look!
> > cont-sys.tex doesn't yet exist. It is set to defaults.
> > My system, as I mentioned, is teTex 3 from Debian unstable, which has
> > a weird new map system that is working through .cfg files in
> > /etc/texmf/updmap.d . I kept it there, so it mounts lm.map itself (is
> > it used anyway in ConText?).
>
> ConTeXt comes with its own map files, and that is what has your
> system confused: it is using teTeX's map files (for dvips) still,
> instead of the ones from the context distribution (for pdftex).

I fear it was even more complicated. Also some strangeness in the map
files which i discovered myself in the meantime.
I ripped all the context folders from my system and saw that there
were even map files in /etc

$locate -r /context$
/etc/texmf/map/dvips/context
/etc/texmf/map/pdftex/context
/etc/texmf/context
/usr/share/doc/texmf/context
/usr/share/doc/texmf/polish/context
/usr/share/texmf/tex/context
/usr/share/texmf/tex/latex/context
/usr/share/texmf/tex/generic/context
/usr/share/texmf/context
/usr/share/texmf/metapost/context
/usr/share/texmf/fonts/afm/hoekwater/context
/usr/share/texmf/fonts/enc/dvips/context
/usr/share/texmf/fonts/tfm/hoekwater/context
/usr/share/texmf/fonts/type1/hoekwater/context
/usr/share/texmf/scripts/context
/usr/share/texmf/bibtex/bst/context

I grepped for ec-lmt-12 in the map files and it wasn't there. But
these were identical (i.e. the second contained references to cork.
(why??))

$ diff cork-public-lm.map ec-public-lm.map
$


So I just did $rm -rf `locate -r /context$` and inflated the
cont-tmf.zip back into the tree. Maybe it would have been better to
use my home dir texmf for that but there were a .texmf, a texmf and a
.texmf-var already and I didn't want to hunt for some stale files
first.

> > I followed the instructions on the Wiki, but I was fairly confused
> > because the generic instructions and the Debian instructions being
> > interspersed didn't make clear what really pertains to Debian. For
> > instance, the paths are different, and have to be, right?
>
> I think so, but I don't use Debian so am not sure. To be honest,
> this kind of mess was the reason why my contribution to that page
> begins with *forcing* the removal of the distribution-supplied
> teTeX. Linux packagers always seem to believe they know everything
> better than the original author/developer, and they generally mess
> up the author's documentation while at it. :-(

It's a bad combination and makes the situation even more complicated
and increasingly arcane to setup and debug. All these texmfs, maps,
tfms and whatnot. Insane. Plus ConText's output only makes sense to
the developers.
Latin modern is up and running, though. Phew.
My initial intention to compile the PDFTex docs still is a no-go. It
is asking for  the ec-urw-palatino.map which doesn't exist :(

*getting out the typewriter*

regards, Tobias
>
> Cheers, Taco
>
> ___
> 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


Re: [NTG-context] need help for the installation of luatools

2007-09-13 Thread Thomas A. Schmitz

On Sep 14, 2007, at 7:49 AM, Dalyoung Jeong wrote:

> Dear Thomas and Arthur,
>
> Thank you for your detailed help.
> Copying texlua and creating .luatex file make luatools run smoothly.
>
>   Now, luatools --generate run well.
>
> I'd like to ask a few questions.
>
> 1. But, there is a warning message as following for "luatools --
> ini ...".
>
> 
> ..
> ...
> language : patterns us for us loaded (n=[13],e=default,m=default)
> language : patterns agr for agr loaded (n=15,e=default,m=default)
> (/usr/local/gwTeX/texmf.pkgs/tex/context/patterns/lang-agr.pat
> ! TeX capacity exceeded, sorry [pattern memory=8].
> l.820 ἀ2ν1έλαι
>
>
> in use: 1448 node words from 100604
> still untouched: 99048 node words
> size  1 avail list: 3
> size  2 avail list:22
> size  3 avail list: 6
> size  4 avail list:36
> size  6 avail list:24
> size  8 avail list:16
> No pages of output.
> Transcript written on cont-en.log.
>
> LuaTools |
> LuaTools | runtime: 0.18 seconds
> %
>
> Is it OK? or should I change something?

This is influenced by the variable trie_size in your texmf.cnf. In my  
unmodified TeXLive 2007, this is 30; I have no idea why Gerben  
changed it. You could try setting this to a larger value and then  
regenerate the formats.


>
> 2. Also I got 'bad path' errors  when I try to make other formats.
> %
> texexec --make --all --pdftex
>
> TeXExec | using search method 'kpsewhich'
> TeXExec | updating file database
> mktexlsr: Updating /usr/local/gwTeX/texmf/ls-R...
> mktexlsr: Updating /usr/local/gwTeX/texmf.gwtex/ls-R...
> mktexlsr: Updating /usr/local/gwTeX/texmf.local/ls-R...
> mktexlsr: Updating /usr/local/gwTeX/texmf.pkgs/ls-R...
> mktexlsr: Updating /usr/local/gwTeX/texmf.texlive/ls-R...
> mktexlsr: Updating /var/tmp/texfonts/ls-R...
> mktexlsr: Done.
> TeXExec | using tex engine pdftex
> TeXExec | using tex format path /usr/local/Build/powerpc/TeXLive.2006/
> texmf/web2c/pdftex
> TeXExec | generating tex format cont-en
> warning: Could not open char translation file `natural.tcx'.
> ! I can't read pdftex.pool; bad path?
> TeXExec | generating tex format cont-nl
> warning: Could not open char translation file `natural.tcx'.
> ! I can't read pdftex.pool; bad path?
> TeXExec | generating tex format mptopdf
> warning: Could not open char translation file `natural.tcx'.
> ! I can't read pdftex.pool; bad path?
> TeXExec | using mp engine mpost
> TeXExec | using mps format path /usr/local/Build/powerpc/TeXLive.2006/
> texmf/web2c
> TeXExec | generating mps format metafun
> warning: Could not open char translation file `natural.tcx'.
> This is MetaPost, Version 0.993 (Web2C 7.5.6) (INIMP)
> ! I can't find file `metafun'.
> <*> metafun
> %%
> Yesterday, I have no problem to use "texexec --pdf --make --all".

Hmm, you have conflicting path names: this is what kps uses:
/usr/local/gwTeX/texmf.local

and this is where texexec looks for the files:

/usr/local/Build/powerpc/TeXLive.2006/

Where does this path come from? Do you have leftovers from older  
installations? Did you install TeXLIve from source at some point?  
What does
whence -av texexec
give?

>
> 3. Is it possible to use OTF fonts installed in the system not in
> TeXmf tree?
>
Not sure if this is implemented yet.

Thomas
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] What's the ps_name of AdobeMingStd-Light?

2007-12-16 Thread Zhichu Chen
Hi Wolfgang,

On Dec 14, 2007 6:24 PM, Wolfgang Schuster <[EMAIL PROTECTED]>
wrote:

> 2007/12/14, Hans Hagen <[EMAIL PROTECTED]>:
> > Zhichu Chen wrote:
> > > Hi Wolfgang,
> > >
> > > On Dec 13, 2007 7:17 PM, Wolfgang Schuster <
> [EMAIL PROTECTED]>
> > > wrote:
> > >
> > >> 2007/12/13, Zhichu Chen <[EMAIL PROTECTED]>:
> > >>> Hi guys,
> > >>>
> > >>> Maybe this post has gone too far, and I've tried a bunch of methods
> to
> > >> get
> > >>> my map work. Anyway, I can't. And there's something I must say, why
> > >> pdftex
> > >>> must embed the whole otf file? It's about 15M for my
> only-one-character
> > >> test
> > >>> file and about 20M for my another only-two-characters test file,
> > >> besides,
> > >>> embedding otf files are so so slow. I don't think I'm ready for otf
> yet.
> > >> I tried the Song font from Adobe a few days ago with XeTeX and a
> older
> > >> chinese example text from you and the file size with 37 pages of
> output
> > >> was a little bit over 1 MB, the same result with luaTeX but I got
> more
> > >> pages.
> > >
> > > Then XeTeX can treat otf fonts correctly? I never tried that. I
> convert the
> > > otf file into multiple type1 fonts (which compiles much more faster on
> my
> > > PC) and I got 1.7M with 60 pages with pdftex embed the subsets. And I
> got
> > > 440.9K with the same document and the same tfm files except I specify
> Adobe
> > > Reader to use SimSun and not embed any fonts. I like the later.
> >
> > xetex just pipes data into dvipdfmx, and dvipdfmx can subset (this was
> > accomplished by Chof, who lives in Korea and uses huge fonts)
>
> But you don't have to care about this normally because this is done
> automatic,
> it is harder to prevent this ConTeXt and produce only xdv files.
>
> The file size with XeTeX should be the same as in the pdfTeX way but I
> found no
> way to prevent xdvipdfmx to embedd the fonts, I know there is a "-e"
> flag but I don't
> if this should only lead to embedd the complete font or to disable
> font embedding
> but I can't test this because my xdvipdfmx has no "-e" flag.

No offense but xdvipdfmx has some problem with the graphics. I'm kind of one
of the managers of the Chinese TeX Society and we have a forum called CTeX
forum, and there're a lot of posts complaining that xdvipdfmx will cut part
of their graphics. For instance, if they draw a picture with metapost,
xdvipdfmx will only show the first quadrant of it. I guess it's confused
about the boundingbox and the accordinate.

>
>
> 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://tex.aanhet.net
> archive  : https://foundry.supelec.fr/projects/contextrev/
> wiki : http://contextgarden.net
>
> ___
>



-- 
Best Regards
Chen


 Zhi-chu Chen | Shanghai Synchrotron Radiation Facility
No. 2019 | Jialuo Rd. | Jiading | Shanghai | P.R. China
tel: 086 21 5955 3405 | zhichu.chen.googlepages.com
  | www.sinap.ac.cn

___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Zapf Chancery and mkiv

2007-12-19 Thread Aditya Mahajan

On Wed, 19 Dec 2007, luigi scarso wrote:


On Dec 19, 2007 5:48 AM, Aditya Mahajan <[EMAIL PROTECTED]> wrote:


On Tue, 18 Dec 2007, Aditya Mahajan wrote:


Hi,

There is something wrong with the mappings for zapf chancery in mkiv.


There is a typo in type-otf.tex. The following is wrong

\starttypescript [calligraphy] [chancery]
\definefontsynonym [Chancery] [texgyrechorus-regular]
[features=default]
\stoptypescript




\usetypescriptfile[type-gyr]

\starttypescript [calligraphy] [chancery]
   \definefontsynonym [Chancery] [texgyrechorus-mediumitalic]
[features=default]
\stoptypescript

\definetypeface   [mainface][rm][serif][pagella][default][encoding=texnansi]
\definetypeface   [mainface]
[cg][calligraphy][chancery][default][encoding=texnansi]
\setupbodyfont
 [mainface,10pt]

\starttext
\cg test
\stoptext

But compilation halts with


This runs ok here. It uses 




I am attaching the log file.

AdityaThis is LuaTeX, Version snapshot-0.20.2-2007121718 (Web2C 7.5.6) 
(format=cont-en 2007.12.18)  19 DEC 2007 05:40
**test.tex
(./test.tex

ConTeXt  ver: 2007.12.18 19:11 MKIV  fmt: 2007.12.18  int: english/english

language: language en is active
system  : cont-new loaded
(/home/adityam/texmf/tex/context/base/cont-new.tex
systems : beware: some patches loaded from cont-new.tex
(/home/adityam/texmf/tex/context/base/cont-new.mkiv
lua : used config path - /usr/share/texmf/web2c/texmf.cnf
lua : used cache path - 
//home/adityam/luatex-cache/context/c67bf06401a0e1a39f3ee04c60209dc5
) (/home/adityam/texmf/tex/context/base/cont-mtx.tex))
system  : cont-old loaded
(/home/adityam/texmf/tex/context/base/cont-old.tex
loading : Context Old Macros
)
system  : cont-fil loaded
(/home/adityam/texmf/tex/context/base/cont-fil.tex
loading : Context File Synonyms
)
system  : cont-sys.rme loaded
(/home/adityam/texmf/tex/context/user/cont-sys.rme 
(/home/adityam/texmf/tex/context/base/type-tmf.tex) 
(/home/adityam/texmf/tex/context/base/type-siz.tex) 
(/home/adityam/texmf/tex/context/base/type-otf.tex))
bodyfont: 12pt rm is loaded
specials: tex,postscript,rokicki loaded
system  : test.top loaded
(./test.top
specials: loading definition file tpd
(/home/adityam/texmf/tex/context/base/spec-tpd.tex
specials: loading definition file fdf
(/home/adityam/texmf/tex/context/base/spec-fdf.tex 
(/home/adityam/texmf/tex/context/base/spec-fdf.mkiv))
specials: fdf loaded
)
specials: fdf,tpd loaded
) (/home/adityam/texmf/tex/context/base/type-tmf.tex) 
(/home/adityam/texmf/tex/context/base/type-siz.tex) 
(/home/adityam/texmf/tex/context/base/type-otf.tex) 
(/home/adityam/texmf/tex/context/base/type-gyr.tex) 
(/home/adityam/texmf/tex/context/base/type-tmf.tex) 
(/home/adityam/texmf/tex/context/base/type-siz.tex) 
(/home/adityam/texmf/tex/context/base/type-otf.tex) 
(/home/adityam/texmf/tex/context/base/type-gyr.tex) 
(/home/adityam/texmf/tex/context/base/type-tmf.tex) 
(/home/adityam/texmf/tex/context/base/type-siz.tex) 
(/home/adityam/texmf/tex/context/base/type-otf.tex) 
(/home/adityam/texmf/tex/context/base/type-gyr.tex) 
(/home/adityam/texmf/tex/context/base/type-tmf.tex) 
(/home/adityam/texmf/tex/context/base/type-siz.tex) 
(/home/adityam/texmf/tex/context/base/type-otf.tex) 
(/home/adityam/texmf/tex/context/base/type-gyr.tex) (./test.tuo) (./test.tuo)
systems : begin file test at line 12
fonts   : resetting map file list
{/home/adityam/texmf/fonts/map/pdftex/context/original-empty.map}
fonts   : using map file: original-base
{/home/adityam/texmf/fonts/map/pdftex/context/original-base.map}
fonts   : using map file: lm-math
{/home/adityam/texmf/fonts/map/dvips/lm/lm-math.map}
fonts   : using map file: lm-rm
{/home/adityam/texmf/fonts/map/dvips/lm/lm-rm.map}
fonts   : using map file: original-ams-base
{/home/adityam/texmf/fonts/map/pdftex/context/original-ams-base.map}
fonts   : using map file: original-ams-euler
{/home/adityam/texmf/fonts/map/pdftex/context/original-ams-euler.map}
fonts   : using map file: original-public-lm
{/home/adityam/texmf/fonts/map/pdftex/context/original-public-lm.map}
fonts   : using map file: qpl-texnansi
{/home/adityam/texmf/fonts/map/dvips/tex-gyre/qpl-texnansi.map} [1.1]
systems : end file test at line 14
lua : used config path - /usr/share/texmf/web2c/texmf.cnf
lua : used cache path - 
//home/adityam/luatex-cache/context/c67bf06401a0e1a39f3ee04c60209dc5
lua : modules/dumps/instances - 74/17/1
lua : input load time - 0.061 seconds
lua : fonts load time - 0.709 seconds
lua : xml load time - 0.000 seconds
lua : mps conversion time - 0.000 seconds
lua : node processing time - 0.000 seconds (including kernel)
lua : kernel processing time - 0.000 seconds
lua : att

[NTG-context] Why LuaMetaTex is so slow?

2024-01-18 Thread Shiv Shankar Dayal
I can process TeXBook in almost an instant using PDFTeX which is about 450+
pages but my math book takes around 30 seconds averaging ~40 pages/second.

Why LuaMetaTeX is so slow? How can I speed it up?
-- 
Respect,
Shiv Shankar Dayal
___
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
___


Re: [NTG-context] linking to html etc. documents from pdf.

2015-01-22 Thread Aditya Mahajan

On Thu, 22 Jan 2015, John Culleton wrote:


DTP programs like Inkscape and Scribus have
facilities for linking to urls. Pdftex does also.

If this facility exists in Context can some kind
soul point me to the documentation?


You mean useURL?

http://wiki.contextgarden.net/Command/useURL

Aditya
___
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___

Re: [NTG-context] problems with minimal/pdftex

2008-04-19 Thread Martin Schröder
2008/4/19, Patrick Gundlach <[EMAIL PROTECTED]>:
>  (/opt/context/tex/texmf-context/tex/context/base/sort-lan.mkii)) [1.1pdftex: 
> Invalid argument

This is typical for a mixup with LFS. Can you try a newer alpha and
make sure that --disable-largefile is active?

Best
   Martin
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] problems with minimal/pdftex

2008-04-19 Thread Martin Schröder
2008/4/19, Mojca Miklavec <[EMAIL PROTECTED]>:
>  The problem is that I only build the ppc binaries and never have a
>  chance to test them.

I hope that I'll be able to build _and_ test the ppc binaries on
Patrick's computer in the future.

Best
   Martin
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] problems with minimal/pdftex

2008-04-19 Thread Patrick Gundlach
Hi Martin,

> I hope that I'll be able to build _and_ test the ppc binaries on
> Patrick's computer in the future.

I'll give you an account on my machine on monday... So we(=you :) might
be able to track down this problem.

Patrick
-- 
ConTeXt wiki and more: http://contextgarden.net
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Fatal error: catcode push/pop mismatch. Fix this!

2008-04-24 Thread luigi scarso
>  > It disappears when I comment \protect that is at the end of a
>  > stylesheet of mine.
>
>  well, so there is no matching \unprotect then
true;
I did not see until now because  I was using  pdftex.


-- 
luigi
it's new .
it's powerful .
it's luatex .
http://www.luatex.org
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] dejavu fonts

2011-08-14 Thread Mojca Miklavec
> btw, dejavu is already defined in mkiv

I saw it in Wolfgangs' module, but I didn't check the core.

I see it now for MKIV, but the condensed variant is missing. May I
request adding the typescript for XeTeX and pdfTeX to the core then?

Mojca
___
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Embedding fonts

2010-03-06 Thread Martin Schröder
2010/3/6 Tom :
> My document was produced by pdfTeX-1.40.9, PDF version 1.5 and opens with
> Adobe Reader 8.1 or so it says. Is there a way to select a different PDF
> version (older) to be produced? Some printers I work with want PDFs to be

\pdfminorversion=4

Best
   Martin
___
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] [OT] WinEDT with Unicode support

2012-03-20 Thread luigi scarso
On Tue, Mar 20, 2012 at 6:16 PM, Mojca Miklavec
 wrote:
> Hello,
>
> WinEDT finally has Unicode support and the screenshot shows ConTeXt in
> typesetting menu as well (no idea if that runs texexec or context).
Maybe "T" means pdftex engine, "L"  luatex.

-- 
luigi
___
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] pdftex error

2009-03-11 Thread Yue Wang
Hi,

> One tiny question for those working on Windows (I used to have a
> program to track library dependencies, but I forgot which one):
> minimals have plenty of binaries like bibtex.exe that are taken from
> TeX Live 2008. Any idea which library those binaries depend on?

exescope can do that.

Yue Wang
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


[NTG-context] texexec slow

2009-04-23 Thread R. Bastian
Hi,

I am new on this list. I use pftex and would use ConTeXt installed with 
texlive/2007.

'ruby' and 'pdftex' work fine, but 'texexec' (texexec.rb "$@") is very slow.

Where con I get the doc or what shall I do ?

Thanks,

--
René Bastian
1 rue du Presbytère
F-67160 Wissembourg

___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] PSTricks

2009-04-24 Thread luigi scarso
On Fri, Apr 24, 2009 at 8:16 AM, David Arnold wrote:

> All,
>
> Can someone give me some example code that includes a PSTricks object?
>
> Thanks.
>
I believe that PSTricks works well in context mkii,
better from  TL2007 /TL2008 , so you have dvips pdftex etc that are needed
to work .


-- 
luigi
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


[NTG-context] ConTexT minimals problem

2009-04-30 Thread Bowen Alan C.

The latest beta (Minimals) fails to compile and complains:
This is pdfTeX, Version 3.1415926-1.40.10 (Web2C 7.5.7)
 \write18 enabled.
 (/Applications/ConTeXtMinimals/tex/texmf-context/web2c/natural.tcx)
I can't find the format file `cont-en.fmt'!
and
context --version
gets
MTXrun | unknown script 'context.lua' or 'mtx-context.lua'

Alan___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Duotones with spot colors

2009-07-09 Thread Hans Hagen

Piotr Kopszak wrote:

I can't get it right with mkii and xetex either.


forget about xetex; mkii uses a pdftex feature (access to resource dict)


-
  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
-
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] [OT] Edit PDF manually

2009-09-08 Thread Oliver Buerschaper
I'm sure that hartmut has done a presentation sometimes ago f, could  
be

http://www.matexhu.org/eurotex2006/lectures/pdftex/hartmut-talk.pdf


Wonderful! This is exactly the sort of thing I was looking for ... is  
there more material similar in spirit? Hartmut? ;-)


Oliver
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] ActualText

2009-09-19 Thread Arthur Reutenauer
> Heiko Oberdiek wrote the accsupp package to use ActualText in LaTeX,
> why shouldn't it be then possible to use it in LuaTeX (and ConTeXt)?

  Right, you don't need additional engine support, you can use \pdfliteral in
pdfTeX, and in LuaTeX as well.  Heiko's package should be quite easy to port to
ConTeXt.

Arthur
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] ConTeXt Minimal: error pdftex on CentOS x86_64

2009-11-01 Thread Martin Schröder
2009/11/1 Mojca Miklavec :
> Yes, the easy answer would be "upgrade your linux", but we probably
> want the binaries to run on slightly older machines as well.

Indeed. Btw: The binaries from TL run on SUSE 10.1 (which has glibc
2.4).

Best
   Martin
___
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] ConTeXt Minimal: error pdftex on CentOS x86_64

2009-11-01 Thread Vnpenguin
>
> Hey, CentOS 5.4 just released on 21-May-2009 :-) If I have problem
> with ConTeXt on CentOS 5.4 so all users of RHEL 5.4 are the same: they
> can not!
>

Correction: CentOS 5.4 was released on 21-Oct-2009. So it's not so
"old" at all :-)
___
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Curious instruction from Texfont

2005-10-03 Thread Taco Hoekwater

John R. Culleton wrote:

Ran texfont and things seemed to go well. The test program
worked. But in the map file I find this curious instruction:
-
% Alternatively in your TeX source you can say:
%
%   \pdf{+8r-nasa-nasal.map}
%
---

Using pdftex the above statement just causes an error. What am I
misunderstanding here?


Typo / replace error. It should say:

 % Alternatively in your TeX source you can say:
 %
 %   \pdfmapfile{+8r-nasa-nasal.map}
 %

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


Re: [NTG-context] new feature

2005-11-13 Thread Taco Hoekwater

Peter Münster wrote:

On Fri, 11 Nov 2005, Hans Hagen wrote:


A next release will support the setupalign options in align keys (as in 
\framed):


hanging nothanging  
hz nohz
spacing nospacing   
hyphenated nothyphenated
tolerant verytolerant stretch 



Hello Hans,

where could one find some documentation about these keys, especially about
hz and nohz?


hz is pdftex's pseudo-zapf font-based paragraph optimizer, it is
documented in the pdftex manual. It can be switched on or off,
of course.

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


Re: [NTG-context] interaction and hyphenation

2006-02-20 Thread Peter Münster
On Mon, 20 Feb 2006, Hans Hagen wrote:

> maybe some day i'll make a variant for 'hyphenatable text using the
> pdftex split feature' but only as a special feature then, with a limited
> application; i hate to see ugly and inconsistent interactive docs around;
> context tries to provide a consistent look and feel

Hello Hans,
thanks for you explanations and your fast response! Should I add a
collector item for this?
Cheers, Peter

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


Re: [NTG-context] Math encoding in XeTeX

2006-05-20 Thread Mojca Miklavec
On 5/21/06, Mojca Miklavec wrote:
> According to one of the recent threads you can most probably do

I'm sorry for not being precise enough, the thread was on the XeTeX
mailing list, not here. (How to use EC font encoding in XeTeX?)

Mojca

PS: I would vote for better support of encodings (Type1 fonts) in
XeTeX, but I doubt that doing things without active characters can be
as good as it is now in ConTeXt+pdfTeX.
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] teTeX binary package

2006-06-19 Thread VnPenguin
On 6/20/06, Peter Münster <[EMAIL PROTECTED]> wrote:
> There is now a teTeX binary package available on
> http://pmrb.free.fr/work/OS/ConTeXt/tetex/
>
> Features:
> * support for easy ConTeXt update (command "updateConTeXt.sh")
> * support for URW Garamond
> * support for Adobe eurofont
> * support for ruby versions of ConTeXt scripts
> * latest pdfTeX
> * latest MetaPost
> * latest Latin Modern
>
> The binary package has been built on SUSE-Linux-10.1.

Is there .src.rpm package somewhere ?

Thanks,
-- 
http://vnoss.org
Vietnamese Open Source Software Community
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] [OT] extex and xetex

2006-12-13 Thread Hans Hagen
luigi scarso wrote:
> On 12/12/06, Hans Hagen <[EMAIL PROTECTED]> wrote:
>   
>> you can use context with xetex
>> 
> Ok, but to make a pdf we must convert from  dvi, right ?
>   
indeed
> Is it "good" or pdfetex has something more ? (Actually , I mean)
>   
luatex (pdftex 2) probably will have more (esp control) 

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


[NTG-context] ConTeXt 2007.01.02

2007-01-02 Thread Taco Hoekwater
Hi all,

Not even 40 hours into the new year, there is already a new ConTeXt
release available for download from htp://www.pragma-ade.com .

Bugfixes:

 * re-enable norwegian hyphenation patterns
 * footnote referencing fix
 * fix use of prime and underscore in math displays
   (that was already in 2006.12.27)

New feature:

* Use the low-level support for ToUnicode mapping in the
  (likewise brand new) pdftex 1.40, if possible.


Wishing everybody all the best and lots of fun in 2007,

Taco

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


Re: [NTG-context] HZ with latest ConTeXt

2007-01-05 Thread Sanjoy Mahajan
> 2) As hz is sometimes not obvious when viewed, I check the fonts in
> the resulting PDF to see if any are extended.  Most PDF viewers list
> the fonts under File/Properties or similar

They might not be used with pdftex 1.40, which (from what I gathered
reading the NEWS file) can adjust the local text transform matrix to
do font extension.

-Sanjoy

`Not all those who wander are lost.' (J.R.R. Tolkien)
___
ntg-context mailing list
ntg-context@ntg.nl
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] ConTeXt 2007.01.12 problem

2007-01-12 Thread Taco Hoekwater
Mike Bird wrote:
> On Friday 12 January 2007 06:43, Alan Bowen wrote:
> 
>>Processing a file that used to typeset successfully now gets the
>>error message:
>>
>>! Undefined control sequence.
>>\initializenextposition ...dosetpositionpapersize
>>   {\printpaperwidth }
>>{\print...
>>
>>\setposition ...ing \else \initializenextposition
>>   \def
> 
> 
> Hi Norbert,
> 
> context_2007.01.12-1 has this problem.  You might want to pull it until
> a new package is available as this problem is a bit of a showstopper.

Is this a side-effect of context 2007.01.12 demanding pdftex 1.40?


Taco


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


Re: [NTG-context] float next to \bf

2007-01-25 Thread Patrick Gundlach
Hi,

> I don't know whether it's only my version of context, because in
> "context [EMAIL PROTECTED]" I get:
>   (return code : 25
>run time : 0 seconds
>
>  total run time : 0 seconds
>
> warning : use 'texmfstart texexec' instead
>
> but no pdf (I get this with anything, has nothing to do with this
> particular problem).

I guess this is due to the fact that contextgarden still uses pdftex
1.2.x and current ConTeXt requires(??) 1.4 - right?

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: [NTG-context] problem with pdftex-1.40.1 and Gentium ligatures

2007-02-02 Thread Taco Hoekwater
Hi Johan,

Johan Sandblom wrote:
> For the time being I simplified my design and removed the use of Zapf
> Chancery, and there is no problem.

I am trying to work this out, but I obviously miss the gentium
font files (metric and map files, as wel as the actual fonts).
I can get the ttfs from the sil site, but where did the tfms
and map files come from?

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


Re: [NTG-context] printing problem

2007-03-06 Thread Alan Bowen

On Mar 6, 2007, at 10:33 AM, Martin Schröder wrote:

> 2007/3/6, Alan Bowen <[EMAIL PROTECTED]>:
>> How do I preflight the document  and where is the latest pdftex? (Is
>> it not in the latest ConTeXt?)
>
> Get the last TeX Live (http://www.tug.org/tex-live/); the ConTeXt in
> it is quite recent.
>
> Best
>Martin
> ___

Hi, Martin—

I am running the final TeXLive 2007 (from http://www.tug.org/mactex/)  
with ConTeXt  ver: 2007.02.21 11:55 MKII.

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


Re: [NTG-context] lm update+ gyre and ctxtools doesn't work

2007-03-08 Thread Taco Hoekwater


Dalyoung Jeong wrote:
> Dear Taco,
> 
> I have installed following map files in the folder /usr/local/gwTeX/ 
> texmf.texlive/fonts/map/pdftex/context/
> 
> The map files are
> {cs-lm.map, ec-lm.map, el-lm.map, ..., texansi-lm.map, ts1-lm.map}  
> which is included in the new version.
> 
> I put those files only in the folder.
> 
> Does it cause the problem?

Don't know. It is what I did, and it worked for me. Sorry.

Cheers, Taco


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


Re: [NTG-context] ConTeXt versioning model critique

2007-04-20 Thread Taco Hoekwater


[EMAIL PROTECTED] wrote:
>>
>>   
>   I strongly agree that ConTeXt needs an improved versioning model.

I agree. We probably all agree, Hans included. But we also need
improved days with more (or longer) hours. That, and pdftex and
xetex should stop evolving.  Nothing is as disruptive as new
features :-)

In the autumn, Hans and I hopefully have the spare time to think
about some of the issues related to context releases, patches and
distributions.

Best wishes,
Taco

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


[NTG-context] CTAN Update: pdftex 1.40.4

2007-07-12 Thread luigi scarso
just for sure

http://www.mail-archive.com/[EMAIL PROTECTED]/msg01224.html
-- 
luigi

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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] placefigure

2007-07-24 Thread Patrick Gundlach
Hello,


> I have a basic problem on laoding vector drawings.
>
> The photograph loads all right, the cat-drawing doensn't show up.
>
Perhaps this is due to the fact that pdftex doesn't handle eps? If
this is true, you can convert eps files to pdf with epstopdf, that
ships with texlive.

Patrick
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Installing MKiv

2007-08-12 Thread Jean Magnan de Bornier
Le 12 août à 22:45:00 "luigi scarso" <[EMAIL PROTECTED]> écrit notamment:

| >
| > I'm certainly missing something obvious?
| hmm maybe mktexlsr
| 5a/ mktexlsr ; luatools --generate
| 6/ texmfstart texexec --make --all --pdftex
| 7/ texmfstart texexec --make --all --luatoolss 
did you mean luatex here   ^ ?   


Hm, no more joy here :-(
thx anyway
-- 
jean
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


[NTG-context] MK IV & Lilypond

2007-08-20 Thread David Wooten
Greetings all,

Has anyone had any luck getting the lilypond module to work with mkiv/ 
luatex engine? It fails for me (works fine with mkii/pdftex). I can  
send along some log info if others have found it to work.

Regards,
David
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] ConTeXt on device with ARM processor

2007-09-14 Thread Arthur Reutenauer
> If you have LaTeX already running, it probably comes with binaries as
> well. It might be enough to have pdfTeX and mpost available (perhaps
> also kpse[something]).

  Right now I can't remember: are they packages for ConTeXt in Debian?
That could be another solution.
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Female sign in Context

2007-10-27 Thread Taco Hoekwater
Maurí­cio wrote:
> Hi,
> 
> How do I type the female sign (ª)
> in Context?

Depends a bit on your font setup.

In mkiv and xetex and pdftex with texnansi font encoding and
in xml input, just type ª.

If that doesn't work, there is the macro \ordfeminine

Best wishes,
Taco


___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] bib module in pdftex and luatex

2007-12-21 Thread Taco Hoekwater


Thomas A. Schmitz wrote:
> 
> The same file compiles without errors in mkiv. So I'm curious: Is it  
> possible that the bib file is just too large for mkii? 

Just to be complete: In general, the answer to that is "yes", even for
mkiv.

Best wishes,
Taco


___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Combining \inframed with \items

2003-07-18 Thread Willi Egger
Hi Duncan,

> I have the following test file:
>
> --
> \setupoutput[pdftex]\setupcolor[rgb]\starttext
>
>
\items[symbol=none,location=top]{{\inframed[frame=on,corner=round,radius=3mm
> ,offset=1mm]{demand-pull
> inflation}},{\inframed[frame=on,corner=round,radius=3mm,offset=1mm]{in
> comparison}},capital-intensive}
>
> \items[symbol=none,location=top]{fixed assets,entrepreneurs,as a
> result,implementation}
>
>
\items[symbol=none,location=top]{situation,monetary,system,arbitrage,stable}
>
> \stoptext
> --

I have tried your code. If you setup framed then it works. Please refer to
the attached inframed.tex

Willi


inframed.tex
Description: Binary data


Re: [NTG-context] A pretty good day

2003-08-04 Thread Jens-Uwe Morawski
On Sun, 03 Aug 2003 17:08:15 -0700
David Arnold <[EMAIL PROTECTED]> wrote:


> I get this warning at the end of my log file.
> 
> Warning: PDFETEX (file rpxmi): Font rpxmi at 600 not found
> 
> Warning: PDFETEX (file pxsy): Font pxsy at 600 not found

pdftex does not find the font-outlines (PFBs). after installation, did you
 rehash the ls-R database?

try:
kpsewhich pxsy.pfb
to check if the fonts can be found

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


Re: [NTG-context] spacing in heads

2003-09-04 Thread Henning Hraban Ramm
Am Donnerstag, 04.09.03, um 20:57 Uhr (Europe/Zurich) schrieb Hans 
Hagen:
PS. I bet that context is one of the first apps that uses acrobat 
layers in some fashion:
It is. I told "PDF guru" Stephan Jaeggi about and showed him your 
layers.pdf,
and he was amazed. But he wondered, why the PDF is declared as 1.4. ;-)
Perhaps pdfTeX must get more trust in its own capabilities?

Grüßlis vom Hraban!
--
http://www.fiee.net/texnique/
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] Re: font mystery

2003-10-10 Thread Patrick Gundlach
Hi,

> No, it is a (postscript) font I'm creating myself, so there is no
> pk-file. I'm having the same trouble again this morning: edited
> pfb-file, saved, new file is used in pdftex testfont, Context is still
> using the old version.

... of what? the tfm file or the pfb file?

ConTeXt does not cache anything. So the probability that your system is
misconfigured is > 0. I've forgotten: what system are you using? 

Patrick
-- 
You are your own rainbow!
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


[NTG-context] quiz

2003-12-09 Thread olivier Turlier
Hi ConteXers,
Does somebody have done a quiz , like the ones found in "exerquiz " 
pdftex package (now bundled in "acrotex") from d.p. Story (info/exemples 
at http://melusine.eu.org/syracuse/acrotex/exemples/ (in french) or from 
the origin, in english at http://www.math.uakron.edu/~dpstory/acrotex.html)
What interesting me a lot is the abilty for the reader to auto-evaluate 
himself.
I wish to setup a  whole course including theorical + exercises + auto 
evaluation, both (as possible) in screen and paper versions.
Thanks for the tip.
Olivier

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


[NTG-context] \dogetobject and pdf

2004-06-09 Thread Peter Münster
Hello Hans,
I'm sorry, your patch of the May 17 works well for dvi, but not for pdf:
the figure is again shifted down and to the left.

Here an example:
\setupoutput[pdftex]
\starttext
X\externalfigure[example][width=5cm]X
\stoptext

example.pdf is attached, also the resulting pdf.


Concerning the issus with \useencoding[ffr] and FitBH:
Do you think, you could solve the problems? If not, I'll go on trying to
find solutions.

Greeting, Peter

-- 
http://pmrb.free.fr/contact/
_
FilmSearch engine: http://f-s.sf.net/

example.pdf
Description: Adobe PDF document


result.pdf
Description: Adobe PDF document


[NTG-context] Re: pdfTeX questions

2004-06-17 Thread Patrick Gundlach
Hi out there,

>> > It seems, that there is no key named "keywords" ?
>
> it's 'keyword' (e.g. keyword={a,b,c})
>
> for patrick (added to setupb/setupinteraction):
>
>\variable[\c!trefwoord][\c!text!][]


Thanks. I have added this in texshow-web[1] now. Anybody can change
the definition now by editing the xml source. More info soon.

Patrick (thinking about creating a ConTeXt wiki, see same page as
below, just port number 8062)

[1] http://members.ping.de:8061/
___
ntg-context mailing list
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] Re: [FONTS] Japanese Unicode

2004-09-03 Thread Hans Hagen
Nikolai Weibull wrote:
2) Why doesn't pdftex find the map file in $TEXMF/local/fonts/map?  I've
tried manipulating $TEXMF/web2c/texmf.cnf, changing the following:
TEXFONTMAPS = .;$TEXMF/fontname
->
TEXFONTMAPS = .;$TEXMF/fontname;$TEXMF/fonts/map
but that didn't do it, even though 'kpsewhich --show-path=map' seems to
pick it up.
 

- did you run mktexlsr
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
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] A simple project.

2004-11-15 Thread Hans Hagen
Dirar BOUGATEF wrote:
This is pdfeTeXk, Version 3.141592-1.11b-2.1 (Web2c 7.5.2)
%&-line parsing enabled.
(c:/TeXLive/texmf/web2c/cp8bit.tcx)
entering extended mode
(./documents.tex{c:/TeXLive/texmf-var/pdftex/config/pdftex.cfg}
ConTeXt  ver: 2003.9.25  fmt: 2004.8.17  int: english  mes: english
^
looks like an old context mixed with a new one
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
[EMAIL PROTECTED]
http://www.ntg.nl/mailman/listinfo/ntg-context


Re: [NTG-context] A simple project.

2004-11-15 Thread Dirar BOUGATEF
Thanks for the rsync stuff, i have started looking at it.
I first need to know how things work in their basic way. I don't understand 
why my update didn't work as i did everything the way i was asked.

And now, Pdftex doesn't find my fonts anymore :)
It is turning to a nightmare.
Is all of this because of the new way Texlive works now ?
_
FREE pop-up blocking with the new MSN Toolbar - get it now! 
http://toolbar.msn.com/

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


[NTG-context] XeTeX w. ConTeXt question

2005-03-16 Thread sfpno
Greetings,
After a number of attempts (somewhat indistinguishable in my memory at 
this point) I've been able to run ConTeXt with XeTeX support (if that's 
the right nomenclature;). It works! But I do receive this error 
message:

--
(/usr/local/TeTeX/share/texmf.tetex/tex/context/base/spec-tpd.tex
systems : you should use pdfTeX binaries
\wait=
)
--
Looking in spec-tpd.tex, this error message comes from pdftexversion 
being undefined. Could someone clarify this for me?

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


[NTG-context] beta version / dvips

2005-06-08 Thread Hans Hagen

Hi,

The current beta (just uploaded) tries to satisfy dvips with regards to the map 
files; this means that pdftex, dvipdfmx and dvips all do thinsg automatically 
now; (the dvips alternative will be changed when map specials come available)


so, we now have:

texexec --ps  somefile
texexec --dpx somefile
texexec --pdf somefile
texexec --xtx somefile

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] Fwd: [OS X TeX] Re: a problem after reinstall TeX

2005-06-16 Thread 정 달영


2005. 06. 16, 오후 3:40, Gerben Wierda 작성:



Is this something I should take care of upon install? Wht is this  
pdftex.map shipping with ConTeXt? Can I just remove it before  
repackaging?




I look into the file texmf.local/fonts/map/pdftex/context/pdftex.map  
before removing. It is just an empty file.

I don't know why it is in there.

Regards,

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


Re: [NTG-context] problem with MkIV/TeXlive/TEXMFCACHE

2021-08-30 Thread Rainer J.H. Brandt via ntg-context
Hello Luigi,

you asked:
> On Fri, Aug 27, 2021 at 10:35 AM Rainer J.H. Brandt via ntg-context <
> ntg-context@ntg.nl> wrote:
> 
> > Dear experts,
> >
> > I want to use ConTeXt MkIV as supplied by TeXlive 2021.
> > After installation, I ran "mtxrun --generate".
> > I also tried "context --generate".
> > Both create output in the wrong place.
> >
> > The TeXlive documentation says that ConTeXt uses TEXMFCACHE,
> > which uses the default $TEXMFSYSVAR;$TEXMFVAR in my texmf.cnf.
> > My TEXMFSYSVAR is /var/opt/texlive, but ConTeXt doesn't use it.
> > Instead, it creates /opt/texmf-var and creates its output there.
> > I don't understand why it used that path; I've never used or configured
> > it.
> >
> > How can I convice ConTeXt to use TEXMFSYSVAR?
> > [...]
> 
> What does
> $> tlmgr conf
> say ?

The output is appended below and looks reasonable.  In particular, it shows
that I installed under /opt/local/share/texlive and doesn't mention the
"mtxrun --generate" output path /opt/texmf-var at all.

Please note that I don't use tlmgr and also that I didn't use the TeX Live
installer.  I built the binaries from their sources and then installed
the rest from the texmf archive file. I use other engines on a daily basis,
mostly pdflatex, and they work flawlessly.

Thanks, Rainer

=== version information ==
tlmgr revision 57970 (2021-02-27 15:17:34 +0100)
tlmgr using installation: /opt
 executables found by searching PATH =
PATH: 
/opt/local/bin:/opt/local/bin:/usr/local/bin:/usr/bin:/usr/sbin:/usr/X11R6/bin:/bin:/sbin:/Users/rjhb/doc/cvs/rjhb/perl5/bin:.:/Applications/Qt/current/clang_64/bin:/usr/X11/bin
dvipdfmx:  /opt/local/bin/dvipdfmx
dvips:     /opt/local/bin/dvips
fmtutil:   /opt/local/bin/fmtutil
kpsewhich: /opt/local/bin/kpsewhich
luatex:/opt/local/bin/luatex
mktexpk:   /opt/local/bin/mktexpk
pdftex:/opt/local/bin/pdftex
tex:   /opt/local/bin/tex
tlmgr: /opt/local/bin/tlmgr
updmap:/opt/local/bin/updmap
xetex: /opt/local/bin/xetex
=== active config files ==
config.ps:/opt/local/share/texlive/texmf-dist/dvips/config/config.ps
fmtutil.cnf:  /opt/local/share/texlive/texmf-dist/web2c/fmtutil.cnf
mktex.cnf:/opt/local/share/texlive/texmf-dist/web2c/mktex.cnf
pdftexconfig.tex: 
/opt/local/share/texlive/texmf-dist/tex/generic/tex-ini-files/pdftexconfig.tex
texmf.cnf:/opt/local/share/texlive/texmf-dist/web2c/texmf.cnf
updmap.cfg:   /opt/local/share/texlive/texmf-dist/web2c/updmap.cfg
= font map files =
kanjix.map:  
/opt/local/share/texlive/texmf-dist/fonts/map/dvipdfmx/updmap/kanjix.map
pdftex.map:  
/opt/local/share/texlive/texmf-dist/fonts/map/pdftex/updmap/pdftex.map
ps2pk.map:   
/opt/local/share/texlive/texmf-dist/fonts/map/dvips/updmap/ps2pk.map
psfonts.map: 
/opt/local/share/texlive/texmf-dist/fonts/map/dvips/updmap/psfonts.map
=== kpathsea variables ===
ENCFONTS=.:{{}/Users/rjhb/etc/texmf,/Users/rjhb/var/texmf,/Users/rjhb/lib/texmf,!!/opt/local/share/texlive/texmf-local,!!/opt/local/share/texlive/texmf-config,!!/var/opt/texlive,!!/opt/local/share/texlive/texmf-dist}/fonts/enc//
SYSTEXMF=/var/opt/texlive:/opt/local/share/texlive/texmf-local:/opt/local/share/texlive/texmf-dist
TEXCONFIG={{}/Users/rjhb/etc/texmf,/Users/rjhb/var/texmf,/Users/rjhb/lib/texmf,!!/opt/local/share/texlive/texmf-local,!!/opt/local/share/texlive/texmf-config,!!/var/opt/texlive,!!/opt/local/share/texlive/texmf-dist}/dvips//
TEXFONTMAPS=.:{{}/Users/rjhb/etc/texmf,/Users/rjhb/var/texmf,/Users/rjhb/lib/texmf,!!/opt/local/share/texlive/texmf-local,!!/opt/local/share/texlive/texmf-config,!!/var/opt/texlive,!!/opt/local/share/texlive/texmf-dist}/fonts/map/{kpsewhich,pdftex,dvips,}//
TEXMF={{}/Users/rjhb/etc/texmf,/Users/rjhb/var/texmf,/Users/rjhb/lib/texmf,!!/opt/local/share/texlive/texmf-local,!!/opt/local/share/texlive/texmf-config,!!/var/opt/texlive,!!/opt/local/share/texlive/texmf-dist}
TEXMFCONFIG=/Users/rjhb/etc/texmf
TEXMFDBS={!!/opt/local/share/texlive/texmf-local,!!/opt/local/share/texlive/texmf-config,!!/var/opt/texlive,!!/opt/local/share/texlive/texmf-dist}
TEXMFDIST=/opt/local/share/texlive/texmf-dist
TEXMFHOME=/Users/rjhb/lib/texmf
TEXMFLOCAL=/opt/local/share/texlive/texmf-local
TEXMFMAIN=/opt/local/share/texlive/texmf-dist
TEXMFSYSCONFIG=/opt/local/share/texlive/texmf-config
TEXMFSYSVAR=/var/opt/texlive
TEXMFVAR=/Users/rjhb/var/texmf
TEXPSHEADERS=.:{{}/Users/rjhb/etc/texmf,/Users/rjhb/var/texmf,/Users/rjhb/lib/texmf,!!/opt/local/share/texlive/texmf-local,!!/opt/local/share/texlive/texmf-config,!!/var/opt/texlive,!!/opt/local/share/texlive/texmf-dist}/{dvips,f

Re: [NTG-context] installing MKIV

2007-08-08 Thread Hans Hagen
Arthur Reutenauer wrote:

>> And just for curioisty, where such names as Mark II and Mark IV come from?

% engine=luatex language=uk

\startcomponent mk-iitoiv

\environment mk-environment

\chapter{From \MKII\ to \MKIV}

Sometime in 2005 the development of \LUATEX\ started, a further
development of \PDFTEX\ and a precursor to \PDFTEX\ version~2. This
\TEX\ variant will provide:

\startitemize[packed]
\item 21--32 bit internals plus a code cleanup
\item flexible support for \OPENTYPE\ fonts
\item an internal \UTF\ data flow
\item the bidirectional typesetting of \ALEPH
\item \LUA\ callbacks to the most relevant \TEX\ internals
\item some extensions to \TEX\ (for instance math)
\item an efficient way to communicate with \METAPOST
\stopitemize

In the tradition of \TEX\ this successor will be downward
compatible in most essential parts and in the end, there is
still \PDFTEX\ version~1 as fall back.

In the mean time we have seen another unicode variant show up,
\XETEX\ which is under active development, uses external
libraries, provides access to the fonts on the operating system,
etc.

 From the beginning, \CONTEXT\ always worked with all engines. This
was achieved by conditional code blocks: depending on what engine
was used, different code was put in the format and|/|or used at
runtime. Users normally were unaware of this. Examples of engines
are \ETEX, \ALEPH, and \XETEX. Because nowadays all engines
provide the \ETEX\ features, in August 2006 we decided to consider
those features to be present and drop providing the standard \TEX\
compatible variants. This is a small effort because all code that
is sensitive for optimization already has \ETEX\ code branches for
many years.

However, with the arrival of \LUATEX, we need a more drastic approach.
Quite some existing code can go away and will be replaced by different
solutions. Where \TEX\ code ends up in the format file, along with
its state, \LUA\ code will be initiated at run time, after a \LUA\
instance is started. \CONTEXT\ reserves its own instance of \LUA.

Most of this will go unnoticed for the users because the user
interface will not change. For developers however, we need to
provide a mechanism to deal with these issues. This is why, for the
first time in \CONTEXT's history we will officially use a kind of
version tag. When we changed the low level interface from Dutch to
English we jokingly talked of version~2. So, it makes sense to
follow this lead.

\startitemize[packed]

\item \notabene {\CONTEXT\ \MKI}\quad At that moment we still had a
low level Dutch interface, invisible for users but not for developers.

\item \notabene {\CONTEXT\ \MKII}\quad We now have a low level English
interface, which (as we indeed saw happen) triggers more development by
users.

\item \notabene {\CONTEXT\ \MKIV}\quad This is the next generation of
\CONTEXT, with parts re||implemented. It's an at some points drastic
system overhaul.

\stopitemize

Keep in mind that the functionality does not change, although in
some places, for instance fonts, \MKIV\ may provide additional
functionality. The reason why most users will not notice the
difference (maybe apart from performance and convenience) is that at
the user interface level nothing changes (most of it deals with
typesetting, not with low level details).

The hole in the numbering permits us to provide a \MKIII\ version
as well. Once \XETEX\ is stable, we may use that slot for \XETEX\
specific implementations.

As per August 2006 the banner is adapted to this distinction:

\starttyping
...  ver: 2006.09.06 22:46 MK II  fmt: 2006.9.6  ...
...  ver: 2006.09.06 22:47 MK IV  fmt: 2006.9.6  ...
\stoptyping

This numbering system is reflected at the file level in such a way
that we can keep developing the way we do, i.e.\ no files all over
the place, in subdirectories, etc.

Most of the system's core files are not affected, but some may be, like
those dealing with fonts, input- and output encodings, file handling,
etc. Those files may come with different suffixes:

\startitemize

\item \type {somefile.tex}: the main file, implementing the interface
and common code

\item \type {somefile.mkii}: mostly existing code, suitable for good
old \TEX\ (\ETEX, \PDFTEX, \ALEPH).

\item \type {somefile.mkiv}: code optimized for use with \LUATEX, which
could follow completely different approaches

\item \type {somefile.lua}: \LUA\ code, loaded at format generation time
and|/|or runtime

\stopitemize

As said, some day \type {somefile.mkiii} code may show up. Which
variant is loaded is determined automatically at format generation
time as well as at run time.

\stopcomponent




-
   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

[NTG-context] Can I compare with someone?

2003-12-11 Thread David Arnold
All,

I've recently installed tetex 2.0.2. I am having difficulty with Metapost
and I am wondering if I have a good installation. If someone else out there
is running tetex 2.0.2, could you try the following on your system and tell
me if you get similar results. Also, if I'm making some sort of silly
mistake, please let me know.

I have a little file named junk.mp.

beginfig(1);
path p;
p:=fullcircle scaled 100pt;
draw p;
endfig;
end.

It compiles much as I expect.

[EMAIL PROTECTED] darnold]$ mpost junk
This is MetaPost, Version 0.641 (Web2C 7.4.5)
(junk.mp [1] )
1 output file written: junk.1
Transcript written on junk.log.

No problems. Now I add a line to junk.mp.

beginfig(1);
path p;
p:=fullcircle scaled 100pt;
draw p;
label(btex $x$ etex, center p);
endfig;
end.

Now, when I compile, texexec seems to be invoked. Is this what happens on
your systems? Is this correct behavior?

[EMAIL PROTECTED] darnold]$ mpost junk
This is MetaPost, Version 0.641 (Web2C 7.4.5)
(junk.mp
 TeXExec 4.0 - ConTeXt / PRAGMA ADE 1997-2003

   metapost to tex : junk
executable : pdfetex
format : cont-en
 inputfile : tmpgraph
output : dvips
 interface : en
   options : once nomp
  current mode : none

This is pdfeTeX, Version 3.14159-1.10b-2.1 (Web2C 7.4.5)
 \write18 enabled.
entering extended mode
(./tmpgraph.tex{/usr/local/teTeX/share/texmf/pdftex/config/pdftex.cfg}

ConTeXt  ver: 2003.9.25  fmt: 2003.12.10  int: english  mes: english

language   : language en is active

system : cont-new loaded
(/usr/local/teTeX/share/texmf/tex/context/base/cont-new.tex
systems: beware: some patches loaded from cont-new.tex!
)
system : cont-old loaded
(/usr/local/teTeX/share/texmf/tex/context/base/cont-old.tex
loading: Context Old Macros
)
system : cont-fil loaded
(/usr/local/teTeX/share/texmf/tex/context/base/cont-fil.tex
loading: Context File Synonyms
)
bodyfont   : 12pt rm is loaded
language   : patterns 2:2-en-2 3:2-uk-2 4:2-de-2 5:2-fr-2 6:2-es-2
7:2-it-2
 8:2-nl-2 loaded
specials   : tex,postscript,rokicki loaded
system : tmpgraph.top loaded
(./tmpgraph.top
specials   : loading definition file dvi
(/usr/local/teTeX/share/texmf/tex/context/base/spec-dvi.tex 
)
specials   : tex loaded
specials   : loading definition file ps
(/usr/local/teTeX/share/texmf/tex/context/base/spec-ps.tex)
specials   : tex,postscript loaded
specials   : loading definition file tr
(/usr/local/teTeX/share/texmf/tex/context/base/spec-tr.tex)
specials   : tex,postscript,rokicki loaded
)
pdftex : needs map file: original-context-symbol.map
pdftex : needs map file: pl0-ams-cmr.map
pdftex : needs map file: original-vogel-symbol.map
[1.1]
systems: end file tmpgraph at line 3
 )
Output written on tmpgraph.dvi (1 page, 192 bytes).
Transcript written on tmpgraph.log.

   return code : 0
  run time : 0 seconds
   dvi to metapost : junk
  metapost : junk
format : metafun
This is MetaPost, Version 0.641 (Web2C 7.4.5)
(junk.mp [1]
metafun 2003-12-10 14:21
 )
1 output file written: junk.1
Transcript written on junk.log.

total run time : 0 seconds
 [1] )
1 output file written: junk.1
Transcript written on junk.log.

I now add another line to junk.mp. This is an attempt to get 10pt font size.

beginfig(1);
defaultscale:=10pt/fontsize defaultfont;
path p;
p:=fullcircle scaled 100pt;
draw p;
label(btex $x$ etex, center p);
endfig;
end.

But when I compile, I still get 12pt. And the culprit seems to be:

bodyfont   : 12pt rm is loaded

I tried the following workaround by editing junk.mp. But,

mpost junk

produces this error message:

! Undefined control sequence.
l.1 \documentclass
  [10pt]{article}

So, I try:

mpost --tex=latex junk

But now my system tries to build cont-en.fmt. Toward the end, one message I
get is:

Sorry, I can't find the format `cont-en.fmt'; will try `context.fmt'.

But this doesn't make sense, as cont-en.efmt is already built.

[EMAIL PROTECTED] darnold]$ ll /usr/local/teTeX/share/texmf/web2c/*.efmt
-rw-r--r--1 root root  4713749 Dec 10 14:22
/usr/local/teTeX/share/texmf/web2c/cont-en.efmt
-rw-r--r--1 root root  4760442 Dec  9 07:38
/usr/local/teTeX/share/texmf/web2c/cont-nl.efmt
-rw-r--r--1 root root   756368 Dec 10 14:21
/usr/local/teTeX/share/texmf/web2c/elatex.efmt
-rw-r--r--1 root root   278813 Dec 10 14:21
/usr/local/teTeX/share/texmf/web2c/etex.efmt
-rw-r--r--1 root root   226652 Dec 10 14:22
/usr/local/teTeX/share/texmf/web2c/mptopdf.efmt
-rw-r--r--1 root root   765252 Dec 10 14:21
/usr/local/teTeX/share/texmf/web2c/pdfelatex.efmt
-rw-r--r--1 root root   288178 Dec 10 14:21
/usr/local/teTeX/share/texmf/web2c/pdfetex.efmt


I am at a loss at

Re: [NTG-context] LuaJitTeX, \texenginename, and \texengineversion

2013-05-08 Thread luigi scarso
On Wed, May 8, 2013 at 9:32 AM, luigi scarso  wrote:

>
>
>
> yes, it's known and it's ok, because luajittex is not  different from
> luatex as luatex is different from pdftex/xetex/etex
> (and if it's so, then it is an error).
>
 (and if it's not so, then it is an error).

-- 
luigi
___
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___

Re: [NTG-context] PDF Transparency and ConTeXt

2013-09-29 Thread Martin Schröder
2013/9/29 Thangalin :
> I ran into what I think is a similar issue with LaTeX and was able to
> resolve it using the following command in the preamble:
>
>   \pdfpageattr{/Group << /S /Transparency /I true /CS /DeviceRGB>>}

This should be done automagically in pdfTeX (at least it once was).

Best
   Martin
___
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


[NTG-context] rpcode values in pure?

2013-11-05 Thread john Culleton
In pdftex we have \rpcode and \lpcode. In context these values
are already defined somewhere. What module/file contains the
Context values for character protrusion?

-- 
John Culleton
Wexford Press
Free list of books for self-publishers:
http://wexfordpress.net/shortlist.html
PDF e-book: "Create Book Covers with Scribus"
available at http://www.booklocker.com/books/4055.html
___
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] PDF/A with ConTeXt

2008-02-07 Thread luigi scarso
> Records management systems prefer to receive their PDFs compliant with the
> PDF/A standard (subset of PDF 1.4).  Is there any mechanism in
> ConTeXt/pdfTex to specify the PDF output should comply with PDF/A?
>
>  http://en.wikipedia.org/wiki/PDF/A

What about postprocessing pdf with latest ghostscript  ?

-- 
luigi
it's new .
it's powerful .
it's luatex .
http://www.luatex.org
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] bib module and pdftex 1.40.7: Virtual memory exhausted using MiKTeX-2.7

2008-02-27 Thread Hans Hagen
Thomas A. Schmitz wrote:

> ! TeX capacity exceeded, sorry [PDF object stream buffer=5].

that looks quite small to me

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
-
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


[NTG-context] Problem with presentation module(s)

2008-05-09 Thread Jean Magnan de Bornier
Hi all,
I wanted to use a presentation module today, but it failed with my
up-to-date minimals install (mkiv).
I ended up on live-context trying:

\usemodule[pre-14]
\starttext
Salut Nivers!
\stoptext

Also tried pre-01.

Both fail with pdftex, xetex and luatex on the web + at home.

Anything I miss?
-- 
Jean
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Latest beta + LuaTeX

2008-07-16 Thread Taco Hoekwater


Taco Hoekwater wrote:
> 
> Thanks, for the heads up. The luatex trunk is a bit in flux at the
> moment. We are trying to squeeze the previous half year of pdftex and
> texlive development into it, and it takes some effort.

For the repository users of luatex: The trunk seems to be
compiling and running again.

Best wishes,
Taco

___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


[NTG-context] units module has bug with markIV?

2008-09-02 Thread Chen Shen
Hi all,
"\Micro" in the "units" module failed, while "\Nano" and "\Milli" works fine.
"$\mu$" works, so it doesn't look like a font problem.
The following code works with pdftex/MarkII, but fails under Luatex
0.29beta/MarkIV.

\usemodule[units]
\starttext Hello world! $1\Micro\Meter$ $1\Micro\Second$
\stoptext

Any hints? Thanks a lot!

regards,
shenchen
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


[NTG-context] Clickable Subsections in TOC

2008-09-22 Thread holzminister
Hi,

it's me again. :)

Why can I only click the green dots left of the words but not the
words themself? (Tested with luatex an pdftex.)

>>>
\setupcolors
[state=start]

\setupinteraction
[state=start]

\setuplist
[subsection]
[interaction=all,
 alternative=d,
 style={\tfx},
 margin=5mm]

\starttext

\placelist[subsection][symbol=one]

\subsection{one}
\subsection{two}

\stoptext
>>>


Best regards,
Eyke
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Copy & Paste chinese in PDF files

2008-12-11 Thread Yanrui Li
2008/12/12 Yue Wang :
> Hi, Yanrui,
>
> Are you sure we should proceed the bibtex manually? (page38 of your version 2)
> since I run pdfTeX and bibtex, the process can be done automatically
> using texexec (after the 2006 release, of course).

Yes, If we use 'context' as compiling command, I'm sure that.

-- 
Best wishes,
Li Yanrui
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] error updating beta WAS: beta

2011-02-02 Thread Peter Münster
Hans Hagen  writes:

> no, i'm still trying to get mkii and mkiv working at the same time with a
> fundamental different setup strategy .. getting there

Or perhaps 2 completely different distributions?
mkii: frozen, only some fixes from time to time
mkiv: no more mkii files, no more pdftex, just pure mkiv

-- 
   Peter
___
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://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Tracking?

2009-02-08 Thread Yue Wang
Hi

On Mon, Feb 9, 2009 at 1:24 AM, Wolfgang Schuster
 wrote:
> Wolfgang Schuster schrieb:
>
>> Another solution for pdfTeX is to use \knbccode and \knaccode.
>>
>> \pdfappendkern=1
>>
>> \knbccode\font`a=125 \knaccode\font`a=125
>
>> ...
>
> A shorter version is:
>
> \dostepwiserecurse{65}{122}{1}
>  {\knbccode\font#1=125 \knaccode\font#1=125 }
>
Works, Thanks a lot for this!

Yue Wang
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


[NTG-context] pdftex error

2009-03-08 Thread Fengnan
When I updated my context minimal earlier today, at the end of the update 
process, the cmd window pops up a error message box which says "Unable to find 
kpathsea357-dev.dll, so this program cannot be started" ( I translate from 
Chinese). Just pure guess, did Mojca forget to put the file in the right place?

Fengnan Gao  ___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Dividing dimensions

2009-03-22 Thread Wolfgang Schuster


Am 21.03.2009 um 23:26 schrieb Arthur Reutenauer:


Can I divide dimensions to get a number in pdftex?


 LaTeX has a package to do exactly that, fp.  You could look into its
code.  Or you could use LuaTeX :-)


\startluacode
if tex.dimen["!!dimena"] / tex.dimen["!!dimenb"] > tex.dimen["!! 
dimenc"] / tex.dimen["!!dimend"] then

tex.sprint("this")
else
tex.sprint("that")
end
\stopluacode

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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] Textbackground bug [repost]

2009-04-25 Thread Diego Depaoli
2009/4/25 Wolfgang Schuster :
>
> Am 25.04.2009 um 18:15 schrieb Diego Depaoli:
>
>> [I got no answers to my previous post]
>> With page imposition, in luatex, background overrides text
>
> context --arrange 

Thanks!
but I'm a bit confused...
in pdftex or xetex the arrange switch is always needed, in luatex page
imposition works well without it


Cheers
-- 
Diego Depaoli
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


Re: [NTG-context] mkiv fails to load pdf image

2009-10-05 Thread Taco Hoekwater

Hi,

Martin Schröder wrote:
> 2009/10/5 Taco Hoekwater :
>> Somehow this is related to the example.pdf, because using cow.pdf works
>> just fine.
> 
> example.pdf has a /Group. And it works here in pdfTeX 1.50 & LaTeX.
> Can LuaTeX handle pdf inclusion with transparency groups?

This could very well be the problem.

Best wishes,
Taco
___
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://tex.aanhet.net
archive  : https://foundry.supelec.fr/projects/contextrev/
wiki : http://contextgarden.net
___


<    8   9   10   11   12   13   14   15   16   17   >