X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:mime-version:to:subject :references:in-reply-to:content-type; q=dns; s=default; b=a3thkr CZ3PfoU89wOxFZyeFP8mxHPRoMZH0mEpqanlOxr/ShoyD1Z4Sbgj2aUCsiF1iNf2 0oQPHrCiy41Vng8DolOlIgVdmrkHFuu56TDdg143FZRB8UFuBc+1fGO1F5/HUuuq HQGG000tToMMSZQBncFNATGuDUK8Ln3XVKk0E= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:message-id:date:from:mime-version:to:subject :references:in-reply-to:content-type; s=default; bh=93sGQZMZTFDx co1bXdil77OG1I8=; b=E9vIbX6Vf26oGO3O4MR1if3ikPA5EoVN7vI7O+1qQv1O 0AJ+/0uR6j57FpJnCMMeHTUn9LwkZURe94FUUyaeo6tvTW2Ui8pdT/PLg9DRsRqo u13wvfM16DZ7/luaPR7dSRfS6c9iDcSN9iVwAjd9kZ6GAq4ARVI1wx5apdOS9y0= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com X-Spam-SWARE-Status: No, score=-7.1 required=5.0 tests=BAYES_00,KHOP_THREADED,RCVD_IN_DNSWL_MED,RCVD_IN_HOSTKARMA_NO,RCVD_IN_HOSTKARMA_YE,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.1 X-CornellRouted: This message has been Routed already. Message-ID: <518977B4.1010803@cornell.edu> Date: Tue, 07 May 2013 17:52:52 -0400 From: Ken Brown User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130328 Thunderbird/17.0.5 MIME-Version: 1.0 To: cygwin AT cygwin DOT com Subject: Re: luatex font path problem References: <517D54B8 DOT 1060109 AT gmail DOT com> <517EA41F DOT 3040404 AT cornell DOT edu> <517F3170 DOT 3080107 AT gmail DOT com> In-Reply-To: <517F3170.3080107@gmail.com> Content-Type: multipart/mixed; boundary="------------050105000406010106040804" X-Virus-Found: No --------------050105000406010106040804 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit On 4/29/2013 10:50 PM, Arthur Tu wrote: > On 4/30/2013 12:47 AM, Ken Brown wrote: >> On 4/28/2013 12:56 PM, Arthur Tu wrote: >>> After lualatex command, file >>> "~/.cache/texmf/luatex-cache/generic/names/otfl-names.lua" was >>> generated. >>> >>> Entry like this for example >>> { >>> ["familyname"]="SimSun", >>> ["filename"]={ "c:/windows/fonts/simsun.ttc", 0 }, >>> ["fontname"]="SimSun", >>> ["fullname"]="SimSun", >>> ["names"]={ >>> ["family"]="SimSun", >>> ["fullname"]="SimSun", >>> ["psname"]="SimSun", >>> ["subfamily"]="Regular", >>> }, >>> ["size"]={}, >>> ["slant"]=0, >>> ["weight"]=400, >>> ["width"]=5, >>> }, >>> >>> when I used \setmainfont{SimSun}, error occured that SimSun font not >>> found. >>> When i used \setmainjfont[Path=/cygdrive/c/windows/fonts/]{simsun.ttc} > A typo here. > \setmainjfont Should be \setmainfont. \setmainjfont only works when > luatex-ja package is available. >>> and specify the path in *unix-style, it works. >>> >>> So i think this is another mixed path style problem in cygwin. >>> Even though the fonts in system dir are listed in otfl-names.lua, they >>> can't be accessed because their pathes are in windows-style. >> >> I'm on vacation right now, but I'll look into this in mid-May when I >> return. I'm still on vacation but had a chance to look at this. The problem is the Cygwin-specific code in /usr/share/texmf-dist/tex/luatex/luaotfload/otfl-font-nms.lua.orig otfl-font-nms.lua. If you remove that code (see the attached patch) and regenerate ~/.cache/texmf/luatex-cache/generic/names/otfl-names.lua, I think the problem will be solved. Ken --------------050105000406010106040804 Content-Type: text/plain; charset=windows-1252; name="luaotfload.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="luaotfload.patch" --- otfl-font-nms.lua.orig 2012-12-21 18:12:14.000000000 -0500 +++ otfl-font-nms.lua 2013-05-07 13:33:36.478763100 -0400 @@ -393,7 +393,7 @@ - reading symlinks under non-Win32 - using kpse.readable_file on Win32 ]] - if os.type == "windows" or os.type == "msdos" or os.name == "cygwin" then + if os.type == "windows" or os.type == "msdos" then path = path:gsub('\\', '/') path = path:lower() path = path:gsub('^/cygdrive/(%a)/', '%1:/') @@ -600,7 +600,7 @@ "/System/Library/Fonts", "/Network/Library/Fonts", } - elseif os.type == "windows" or os.type == "msdos" or os.name == "cygwin" then + elseif os.type == "windows" or os.type == "msdos" then local windir = os.getenv("WINDIR") return { file.join(windir, 'Fonts') } else --------------050105000406010106040804 Content-Type: text/plain; charset=us-ascii -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple --------------050105000406010106040804--