<div dir="ltr"><div>And if you do not know which font file to send me, this is a help:<br><br>$ fc-match -v lohitbengali<br>Pattern has 31 elts (size 32)<br>        family: "Lohit Bengali"(s)<br>        familylang: "en"(s)<br>        style: "Regular"(w)<br>        stylelang: "en"(w)<br>        fullname: "Lohit Bengali"(w)<br>        fullnamelang: "en"(w)<br>        slant: 0(i)(s)<br>        weight: 80(i)(s)<br>        width: 100(i)(s)<br>        size: 12(f)(s)<br>        pixelsize: 12.5(f)(s)<br>        foundry: "unknown"(s)<br>        hintstyle: 3(i)(s)<br>        hinting: FcTrue(s)<br>        verticallayout: FcFalse(s)<br>        autohint: FcTrue(w)<br>        globaladvance: FcTrue(s)<br>        file: "/usr/share/fonts/lohit-bengali/Lohit-Bengali.ttf"(s)<br>        index: 0(i)(s)<br>        outline: FcTrue(s)<br>        scalable: FcTrue(s)<br>        dpi: 75(f)(s)<br>        scale: 1(f)(s)<br>        charset: <br>        0000: 00000000 ffffffff f8000001 78000001 00000000 00000004 00800000 00800000<br>        0009: 00000000 00000000 00000000 00000030 fff99fee f3c5fdff b080799f 0fffffcf<br>        0020: 33183000 00000040 00000000 00000000 00000000 02000000 00000000 00000000<br>        0022: 00040000 00000000 00000000 00000000 00000000 00000000 00000000 00000000<br>        0025: 00000000 00000000 00000000 00000000 00000000 00000000 00001000 00000000<br>(s)<br>        lang: as|bn|mni(s)<br>        fontversion: 163840(i)(s)<br>        capability: "otlayout:beng"(s)<br>        fontformat: "TrueType"(s)<br>        embeddedbitmap: FcTrue(s)<br>        decorative: FcFalse(s)<br>        namelang: "en"(s)<br><br></div>Notice that fc-match tries to find similar names if the exact match is not found. It says that the correct font name is Lohit Bengali and the corresponding file is<br>/usr/share/fonts/lohit-bengali/Lohit-Bengali.ttf<br><br></div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature">Zdeněk Wagner<br><a href="http://ttsm.icpf.cas.cz/team/wagner.shtml" target="_blank">http://ttsm.icpf.cas.cz/team/wagner.shtml</a><br><a href="http://icebearsoft.euweb.cz" target="_blank">http://icebearsoft.euweb.cz</a></div></div>
<br><div class="gmail_quote">2016-03-13 21:11 GMT+01:00 Zdenek Wagner <span dir="ltr"><<a href="mailto:zdenek.wagner@gmail.com" target="_blank">zdenek.wagner@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">If it is a font issue, TeX Live 2015 will not help but downgrade to 2012 will. I still have all versions from 2007 to 2015 installed. If I get a short text demonstrating complex conjuncts and your font file, I can test it in all TL versions both with your font and my fonts.<br></div><div class="gmail_extra"><span class=""><br clear="all"><div><div>Zdeněk Wagner<br><a href="http://ttsm.icpf.cas.cz/team/wagner.shtml" target="_blank">http://ttsm.icpf.cas.cz/team/wagner.shtml</a><br><a href="http://icebearsoft.euweb.cz" target="_blank">http://icebearsoft.euweb.cz</a></div></div>
<br></span><div><div class="h5"><div class="gmail_quote">2016-03-13 19:40 GMT+01:00 Susan Dittmar <span dir="ltr"><<a href="mailto:Susan.Dittmar@gmx.de" target="_blank">Susan.Dittmar@gmx.de</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi!<br>
<br>
Purnendu Chakraborty schrieb:<span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I have a naive question to the group. How do I set up xetex distribution in the<br>
user area?  I could not find any documentation in this regard.<br>
<br>
The reason is the following. I have TeXlive 2013 from  Opensuse 13.2. I find<br>
that the xetex bundled with distribution is buggy. I have some issue<br>
with Bengali<br>
conjuncts with this version of xetex.  So I want a fresh install of<br>
xetex without<br>
touching the system-wide TexLive installation.<br>
</blockquote>
<br></span>
If you have enough room on the disk -- my installation takes about 4.3 G -- you can easily install the current texlive (which includes xetex) in your home directory. Just download the installation script, start it as instructed, and before you tell it to install, change the directories appropriately. Then write a small script that adds the paths to your current environment. Something like<br>
<br>
------ texlive2015.sh ------<br>
#!/bin/bash<br>
export INFOPATH="~/texlive/2015/texmf-dist/doc/info:${INFOPATH}"<br>
export  MANPATH="~/texlive/2015/texmf-dist/doc/man:${MANPATH}"<br>
export     PATH="~/texlive/2015/bin/x86_64-linux:${PATH}"<br>
------ end of texlive2015.sh ------<br>
<br>
You might have to adjust the paths. Now, before you use xetex, call this script, for example<br>
<br>
. texlive2015.sh<br>
<br>
from the same shell (terminal) from which you call your XeTeX-using programms.<br>
<br>
This precedes the given paths with the new version paths, so any program you call with these environment variables active is searched for in the new directories first.<br>
<br>
If you know you'll never want to use openSUSE's version of texlive 2013, you can rename this file to '~/.profile' (make sure such a file does not yet exist) or append those commands to an existing ~/.profile file. Then you can even use (graphical) window manager shortcuts to TeX editors (in case you use them) with the correct environment settings.<br>
<br>
Hope that helps,<br>
<br>
Susan<div><div><br>
<br>
<br>
--------------------------------------------------<br>
Subscriptions, Archive, and List information, etc.:<br>
 <a href="http://tug.org/mailman/listinfo/xetex" rel="noreferrer" target="_blank">http://tug.org/mailman/listinfo/xetex</a><br>
</div></div></blockquote></div><br></div></div></div>
</blockquote></div><br></div>