ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
From: Dohyun Kim <nomosnomos@gmail.com>
To: mailing list for ConTeXt users <ntg-context@ntg.nl>
Subject: Re: Chinese opentype fonts can not be loaded in luatex-plain
Date: Wed, 13 May 2009 01:55:22 +0900	[thread overview]
Message-ID: <bfeb3bf10905120955x57b293a9q7853958f983859ad@mail.gmail.com> (raw)
In-Reply-To: <4A0989A7.6070708@wxs.nl>

2009/5/12 Hans Hagen <pragma@wxs.nl>:
> Yanrui Li wrote:
>>
>> Hi Hans,
>>
>> I tried to use Chinese opentype fonts with luatex + plain fmt but I
>> failed. Only with Chinese TTF fonts it can work.
>>
>> This a simple example:
>>
>> \pdfoutput=1
>> \font\myfont=AdobeSongStd-Light
>>
>> \myfont
>> 我想实现 LuaTeX 对中文的支持
>>
>> \end
>>
>> When I compiled it, I got the following messages:
>>
>> This is LuaTeX, Version beta-0.41.0-2009051221 (Web2C 7.5.7)
>>  \write18 enabled.
>> (tt.tex (luatex-basics.tex) (luatex-fonts.tex <luatex-fonts-merged.lua>
>> <luatex
>> -fonts.lua loaded in 0.027 seconds>) (luatex-mplib.tex)
>> LuaTeX warning: lua-loaded font [51]
>> (/usr/share/fonts/adobe/AdobeSongStd-Light
>> .otf) has no characters!
>> [1{/opt/context/tex/texmf/fonts/map/pdftex/plain/pdftex.map}]
>> ){/opt/context/te
>>
>> x/texmf/fonts/enc/dvips/lm/lm-rep-cmrm.enc}</opt/context/tex/texmf/fonts/type1/
>> public/lm/lmr10.pfb>
>> Output written on tt.pdf (1 page, 17128 bytes).
>> Transcript written on tt.log.
>
> this is because a cidmap is needed and the kpse that you use does not have
> it; upcoming versions of kpse (and luatex's kpse lib) will support it given
> that you also adapted your texmf.cnf accordingly then
>
> so a bit patience is needed
>

Yes, that is a source of problem; more obstacles, however, are waiting for us.

1.
To test an cid-keyed opentype fonts, I have copied *.cidmap files
into current directory and processed a simple document with luatex-plain.
But it did not work:

This is LuaTeX, Version beta-0.40.1-2009050920 (Web2C 7.5.7)
 \write18 enabled.
(nanumotf.tex
(/media/disk/context/tex/texmf-context/tex/generic/context/luatex-basics.tex)
(/media/disk/context/tex/texmf-context/tex/generic/context/luatex-fonts.tex <lu
atex-fonts-merged.lua> <luatex-fonts.lua loaded in 0.027 seconds>)
(/media/disk/context/tex/texmf-context/tex/generic/context/luatex-mplib.tex)
LuaTeX warning: lua-loaded font [51] (/media/disk/context/tex/texmf-local/fonts
/opentype/korean/NanumGothic.otf) has no characters!

The same message as that of Li Yanrui's experiment, which would not
occur on windows machine. But I am on my linux box, whose
file system, as you know, distinguishs upper- and lower-case letters:
Adobe-Korea1-2.cidmap is quite different from adobe-korea1-2.cidmap.
So I added one line into luatex-fonts-merged.lua as follows:

--- ../tex/texmf-context/tex/generic/context/luatex-fonts-merged.lua	2009-05-12
18:29:55.000000000 +0900
+++ luatex-fonts-merged.lua	2009-05-13 01:14:55.000000000 +0900
@@ -3898,6 +3898,7 @@

 local function locate(registry,ordering,supplement)
     local filename = format(template,registry,ordering,supplement)
+    filename = string.lower(filename)
     local cidmap = fonts.cid.map[filename]
     if not cidmap then
         if trace_loading then


2.
However, I still got an error even after that one-line patch:

This is LuaTeX, Version beta-0.40.1-2009050920 (Web2C 7.5.7)
 \write18 enabled.
(nanumotf.tex
(/media/disk/context/tex/texmf-context/tex/generic/context/luatex-basics.tex)
(/media/disk/context/tex/texmf-context/tex/generic/context/luatex-fonts.tex <lu
atex-fonts-merged.lua> <luatex-fonts.lua loaded in 0.029 seconds>)
(/media/disk/context/tex/texmf-context/tex/generic/context/luatex-mplib.tex)
! LuaTeX error ./luatex-fonts-merged.lua:3879: attempt to call field 'loaddata'
 (a nil value).

In other words, loaddata is not defined.  So I issued "grep" command,
which helped me finding "io.loaddata" function defined in l-io.lua.

In sum:
even after modification of kpse, two more problems should be fixed.
1. lowering uppercase filename before searching cidmap
2. including l-io.lua into luatex-plain

Regards,
Dohyun Kim
___________________________________________________________________________________
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
___________________________________________________________________________________

  parent reply	other threads:[~2009-05-12 16:55 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-05-12 14:25 Yanrui Li
2009-05-12 14:37 ` Hans Hagen
2009-05-12 15:02   ` Yanrui Li
2009-05-12 15:47     ` Hans Hagen
2009-05-12 16:04       ` Yue Wang
2009-05-12 16:15         ` Wolfgang Schuster
2009-05-12 16:55   ` Dohyun Kim [this message]
2009-05-12 17:51     ` Hans Hagen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bfeb3bf10905120955x57b293a9q7853958f983859ad@mail.gmail.com \
    --to=nomosnomos@gmail.com \
    --cc=ntg-context@ntg.nl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).