<div dir="ltr">Hi Nagase, Richard.<div><br></div><div>Thank you Nagase, your solution is very good!!!</div><div>Korean text and fonts is almost good. </div><div><br></div><div>But it have one important problem, all SPACE CHAR in Korean string is removed like Japanese string.</div>
<div>In korean, space char is important like English. </div><div><br></div><div>Do you have some idea for solve it?<br><div><br></div><div><br></div></div></div><div class="gmail_extra"><br><br><div class="gmail_quote">2014-06-17 19:01 GMT+09:00 Ko Nagase <span dir="ltr"><<a href="mailto:nagase@georepublic.co.jp" target="_blank">nagase@georepublic.co.jp</a>></span>:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Richards, BJ Jang<br>
<br>
"platex" is for only Japanese,<br>
so please use "xelatex" to process other languages as follows.<br>
<br>
[Additional packages for Ubuntu 12.04 (precise) ... nearly equal Debian Squeeze]<br>
=====<br>
cmap-adobe-korea1<br>
fonts-nanum<br>
fonts-nanum-coding<br>
fonts-nanum-extra<br>
fonts-unfonts-core<br>
----<br>
(Probably, the followings will be necessary for Hindi)<br>
ttf-devanagari-fonts<br>
ttf-indic-fonts<br>
texlive-lang-indic<br>
latex-sanskrit<br>
=====<br>
<br>
[Makefile modification part]<br>
=====<br>
:<br>
@-if [ $(LANG) = "ko" -o $(LANG) = "hi" ]; then \<br>
    cp -f $(SOURCEDIR)/conf.py $(SOURCEDIR)/i18n/$(LANG)/; \<br>
    cat $(SOURCEDIR)/i18n/$(LANG)/conf.py.diff >><br>
$(SOURCEDIR)/i18n/$(LANG)/conf.py; \<br>
    $(SPHINXBUILD) -b latex -c $(SOURCEDIR)/i18n/$(LANG)<br>
$(ALLSPHINXOPTS) $(BUILDDIR)/latex/$(LANG); \<br>
else \<br>
    $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex/$(LANG); \<br>
fi<br>
:<br>
elif [ $(LANG) = "ko" -o $(LANG) = "hi" ]; then \<br>
    cd $(BUILDDIR)/latex/$(LANG); \<br>
    xelatex -interaction=batchmode --no-pdf -shell-escape QGISUserGuide.tex; \<br>
    xelatex -interaction=batchmode --no-pdf -shell-escape QGISUserGuide.tex; \<br>
    xelatex -interaction=batchmode --no-pdf -shell-escape QGISUserGuide.tex; \<br>
    xdvipdfmx QGISUserGuide.xdv; \<br>
else \<br>
:<br>
## Other manuals are same as above.<br>
:<br>
=====<br>
<br>
[Create "source/i18n/ko/conf.py.diff" with the following contents]<br>
=====<br>
latex_elements = {<br>
    'inputenc': '',<br>
    'utf8extra': '',<br>
    'preamble': '''<br>
<br>
\usepackage{fontspec}<br>
\usepackage{xeCJK}<br>
\setCJKmainfont{NanumMyeongjo}<br>
''',<br>
}<br>
=====<br>
<br>
To create Hindi PDF, other "source/i18n/hi/conf.py.diff" will be necessary,<br>
but I don't know how to set "latex_elements" parameters for Hindi.<br>
<br>
<br>
Result Korean PDF file is here.<br>
Ubuntu 12.04 (precise):<br>
<a href="https://dl.dropboxusercontent.com/u/93823511/QGIS-testing-UserGuide-ko-precise.pdf" target="_blank">https://dl.dropboxusercontent.com/u/93823511/QGIS-testing-UserGuide-ko-precise.pdf</a><br>
<br>
> BJ Jang<br>
<br>
I am not sure whether above PDF is valid one,<br>
so could you check this ?<br>
<br>
Thanks,<br>
<br>
<br>
2014-06-17 15:15 GMT+09:00 Richard Duivenvoorde <<a href="mailto:richard@duif.net">richard@duif.net</a>>:<br>
<div><div class="h5">><br>
> Thanks fro you answer,<br>
><br>
> I tried to add texlive-lang-cjk (which adds texlive-lang-ko) and tried<br>
> both options we use to build a pdf from a tex file.<br>
><br>
> See<br>
> <a href="https://github.com/qgis/QGIS-Documentation/blob/master/Makefile#L102-L114" target="_blank">https://github.com/qgis/QGIS-Documentation/blob/master/Makefile#L102-L114</a> for<br>
> the two options we use.<br>
><br>
> The texi2pdf way quits immediately, the platex way finishes with some<br>
> errors, but there are no korean characters in the generated pdf.<br>
><br>
> For khmer I can not find a reference to some lang file.<br>
><br>
> I hope somebody from khmer of korean community can invest some time in<br>
> this to investigate.<br>
><br>
> Regards,<br>
><br>
> Richard Duivenvoorde<br>
><br>
> On 16-06-14 15:41, BJ Jang wrote:<br>
>> Hi Richard.<br>
>><br>
>> According to the information I have found, for Korean, miktex is not<br>
>> work but texlive can make PDF.<br>
>> Cause is that texlive included Ko,TeX file basically.<br>
>><br>
>> Regards,<br>
>> BJ Jang<br>
>><br>
>><br>
>><br>
>> 2014-06-15 22:59 GMT+09:00 Richard Duivenvoorde <<a href="mailto:richard@duif.net">richard@duif.net</a><br>
>> <mailto:<a href="mailto:richard@duif.net">richard@duif.net</a>>>:<br>
>><br>
>>     Hi Lists,<br>
>><br>
>>     as you maybe know we build pdf versions of different documentation<br>
>>     objects:<br>
>><br>
>>     <a href="http://docs.qgis.org/2.2/pdf/" target="_blank">http://docs.qgis.org/2.2/pdf/</a><br>
>><br>
>>     as you can see there, all languages EXCEPT korean and hindi are build.<br>
>><br>
>>     We already have a switch because japanese pdf needed another way of<br>
>>     building pdf's, see<br>
>><br>
>>     <a href="https://github.com/qgis/QGIS-Documentation/blob/master/Makefile#L102" target="_blank">https://github.com/qgis/QGIS-Documentation/blob/master/Makefile#L102</a><br>
>><br>
>>     So Question:<br>
>><br>
>>     is somebody able to build the Korean and or Hindi version of the docs<br>
>>     (pereferably on Debian as that is our build platform)?<br>
>><br>
>>     If so, can you please let us know what we miss (like certain fonts or<br>
>>     tools or libs).<br>
>><br>
>>     If not: is somebody available with more latex knowledge then me who can<br>
>>     create pdf's from the created tex files? Creation of html is ok, as is<br>
>>     the creation of tex files. It is just the last step that is (silently)<br>
>>     failing.<br>
>><br>
>>     Help is much appreciated.<br>
>><br>
>>     Regards,<br>
>><br>
>>     Richard Duivenvoorde<br>
>>     _______________________________________________<br>
>>     Qgis-tr mailing list<br>
>>     <a href="mailto:Qgis-tr@lists.osgeo.org">Qgis-tr@lists.osgeo.org</a> <mailto:<a href="mailto:Qgis-tr@lists.osgeo.org">Qgis-tr@lists.osgeo.org</a>><br>
>>     <a href="http://lists.osgeo.org/mailman/listinfo/qgis-tr" target="_blank">http://lists.osgeo.org/mailman/listinfo/qgis-tr</a><br>
>><br>
>><br>
>><br>
>><br>
>> --<br>
>><br>
>> *----------------------------------------------------------*<br>
>><br>
>> Open Source GIS Technical Manager / e-Cartographer<br>
>> BJ Jang**<br>
>><br>
>> *Gaia3D Inc,*<br>
>><br>
>><br>
>><br>
>> _______________________________________________<br>
>> Qgis-tr mailing list<br>
>> <a href="mailto:Qgis-tr@lists.osgeo.org">Qgis-tr@lists.osgeo.org</a><br>
>> <a href="http://lists.osgeo.org/mailman/listinfo/qgis-tr" target="_blank">http://lists.osgeo.org/mailman/listinfo/qgis-tr</a><br>
>><br>
><br>
> _______________________________________________<br>
</div></div>> Qgis-community-team mailing list for organizing community resources such as documentation, translation etc..<br>
> <a href="mailto:Qgis-community-team@lists.osgeo.org">Qgis-community-team@lists.osgeo.org</a><br>
> <a href="http://lists.osgeo.org/mailman/listinfo/qgis-community-team" target="_blank">http://lists.osgeo.org/mailman/listinfo/qgis-community-team</a><br>
<span class="HOEnZb"><font color="#888888"><br>
<br>
<br>
--<br>
Ko Nagase (長瀬 興)<br>
Georepublic Japan<br>
mail: <a href="mailto:nagase@georepublic.co.jp">nagase@georepublic.co.jp</a><br>
web: <a href="http://georepublic.co.jp" target="_blank">http://georepublic.co.jp</a><br>
</font></span><div class="HOEnZb"><div class="h5">_______________________________________________<br>
Qgis-tr mailing list<br>
<a href="mailto:Qgis-tr@lists.osgeo.org">Qgis-tr@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/qgis-tr" target="_blank">http://lists.osgeo.org/mailman/listinfo/qgis-tr</a></div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div dir="ltr"><p align="left" style="color:rgb(136,136,136)">
<strong><span lang="EN-US"><font face="맑은 고딕">----------------------------------------------------------</font></span></strong></p><p align="left" style="color:rgb(136,136,136)"><span lang="EN-US"><font face="맑은 고딕" color="#009900">Open Source GIS Technical Manager / e-Cartographer</font></span><span lang="EN-US" style="font-weight:bold"><br>
</span><font face="맑은 고딕"><span lang="EN-US" style="font-family:Verdana;color:rgb(79,79,79)"><font size="4">BJ Jang</font></span><b><span lang="EN-US"></span></b></font></p><p><font color="#000099" face="맑은 고딕"><b>Gaia3D Inc,</b></font></p>
</div>
</div>