ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* How does mtxrun selecting tma files?
@ 2008-11-07  3:07 Weiwei Guo
  2008-11-07  8:33 ` Taco Hoekwater
  0 siblings, 1 reply; 3+ messages in thread
From: Weiwei Guo @ 2008-11-07  3:07 UTC (permalink / raw)
  To: ntg-context

Hi everyone,

If you get two same email from me, sorry for that. I used a wrong email address in the previous email. That email 
address is not the subscribed email address of the list.

I'm new to the list and also new to ConTeXt. I'm configuring my ConTeXt distributed with TeX Live 2008 and I cannot get
my mtxrun working.


I'm using Gentoo which put texmf.cnf in /etc/texmf/web2c. I set

TEXMFCNF = /etc/texmf/web2c
TEXMFCACHE = /var/cache/texmf

and run

# luatool --generate

LuaTools | loading /etc/texmf/web2c/texmf.cnf
LuaTools | preparing configuration for
/var/cache/texmf/luatex-cache/context/b51cb04348b3b14d1dfc7333fc9b63f2/trees/3c56e5e8bc2a4b2593850bb5489fdfee.tma
LuaTools | saving configuration in
/var/cache/texmf/luatex-cache/context/b51cb04348b3b14d1dfc7333fc9b63f2/trees/3c56e5e8bc2a4b2593850bb5489fdfee.tma
LuaTools | compiling configuration to
/var/cache/texmf/luatex-cache/context/b51cb04348b3b14d1dfc7333fc9b63f2/trees/3c56e5e8bc2a4b2593850bb5489fdfee.tmc
LuaTools | locating list of /root/.texlive2008/texmf-config
LuaTools | locating list of /root/.texlive2008/texmf-var
LuaTools | locating list of /root/texmf
LuaTools | locating list of /usr/share/texmf
LuaTools | locating list of /usr/local/share/texmf
LuaTools | locating list of /usr/share/texmf-site
LuaTools | locating list of /usr/share/texmf-dist
LuaTools | locating list of /etc/texmf
LuaTools | locating list of /var/lib/texmf
LuaTools | scanning path /usr/share/texmf
LuaTools | 2257 files found on 205 directories with 111 uppercase remappings
LuaTools | scanning path /usr/local/share/texmf
LuaTools | 4289 files found on 65 directories with 2 uppercase remappings
LuaTools | scanning path /usr/share/texmf-site
LuaTools | 322 files found on 51 directories with 30 uppercase remappings
LuaTools | scanning path /usr/share/texmf-dist
LuaTools | 13640 files found on 1587 directories with 161 uppercase remappings
LuaTools | scanning path /etc/texmf
LuaTools | 36 files found on 12 directories with 0 uppercase remappings
LuaTools | scanning path /var/lib/texmf
LuaTools | 51 files found on 17 directories with 0 uppercase remappings
.....


It seems fine and I get seven tma files (along with tmc files) in /var/cache/texmf:

0638a6bb4aac17125bf8bd1aa29dc0c8.tma
5044cbe2799fe389b078f26ff6b9ee8e.tma
aa488cd1b5c872b403f3532fd1b4df18.tma
3c56e5e8bc2a4b2593850bb5489fdfee.tma
5a308100aaf95a99c661562a470a4cf8.tma
49ce9fb6981e7315a79363280fdfe510.tma
76f9d14d3870a3ca17c588db81902d3d.tma

But when I run

$ context hello.tex

MtxRun | loading configuration for /etc/texmf/web2c from
/var/cache/texmf/luatex-cache/context/b51cb04348b3b14d1dfc7333fc9b63f2/trees/3c56e5e8bc2a4b2593850bb5489fdfee
MtxRun | error no format found with name cont-en
MtxRun | total runtime: 0.086


It seems mtxrun only searching in 3c56e5e8bc2a4b2593850bb5489fdfee.tma. I find that cont-en.tex is listed in
5a308100aaf95a99c661562a470a4cf8.tma.

How can I make mtxrun searching in all tma files instead of only 3c56e5e8bc2a4b2593850bb5489fdfee.tma?

Thanks in advance!

Best wishes,
Wei-Wei

___________________________________________________________________________________
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
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: How does mtxrun selecting tma files?
  2008-11-07  3:07 How does mtxrun selecting tma files? Weiwei Guo
@ 2008-11-07  8:33 ` Taco Hoekwater
  2008-11-07 11:10   ` Weiwei Guo
  0 siblings, 1 reply; 3+ messages in thread
From: Taco Hoekwater @ 2008-11-07  8:33 UTC (permalink / raw)
  To: mailing list for ConTeXt users



Weiwei Guo wrote:
> Hi everyone,
> 
> If you get two same email from me, sorry for that. I used a wrong email address in the previous email. That email 
> address is not the subscribed email address of the list.
> 
> I'm new to the list and also new to ConTeXt. I'm configuring my ConTeXt distributed with TeX Live 2008 and I cannot get
> my mtxrun working.
> 
> 
> # luatool --generate

Good so far, but you are missing a command between this and the one you 
gave below. You should do:

   # context --make

> $ context hello.tex

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
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: How does mtxrun selecting tma files?
  2008-11-07  8:33 ` Taco Hoekwater
@ 2008-11-07 11:10   ` Weiwei Guo
  0 siblings, 0 replies; 3+ messages in thread
From: Weiwei Guo @ 2008-11-07 11:10 UTC (permalink / raw)
  To: mailing list for ConTeXt users

That solves my problem. Thank you very much. Now I can begin exploring 
the amazing world of ConTeXt :)

Best wishes,
Wei-Wei



Taco Hoekwater wrote:
>
> Weiwei Guo wrote:
>> Hi everyone,
>>
>> If you get two same email from me, sorry for that. I used a wrong email address in the previous email. That email 
>> address is not the subscribed email address of the list.
>>
>> I'm new to the list and also new to ConTeXt. I'm configuring my ConTeXt distributed with TeX Live 2008 and I cannot get
>> my mtxrun working.
>>
>>
>> # luatool --generate
>
> Good so far, but you are missing a command between this and the one you 
> gave below. You should do:
>
>    # context --make
>
>> $ context hello.tex
>
> 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
> ___________________________________________________________________________________
>
___________________________________________________________________________________
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
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2008-11-07 11:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-11-07  3:07 How does mtxrun selecting tma files? Weiwei Guo
2008-11-07  8:33 ` Taco Hoekwater
2008-11-07 11:10   ` Weiwei Guo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).