[zz]在Ubuntu下简易配置Tex UTF-8中文环境

little lily posted @ Sat, 27 Mar 2010 21:38:00 +0800 in LaTeX , 2691 readers

 

写在前面:问到TigerSoldier师兄找到的相关参考Ubuntu下配置latex的中文环境,正在尝试,应该会ok的吧。之前自己配很多次都不成功>_<转载过来纯粹记录

转自画猫不成反类虎转自LDCN

在Ubuntu下配置使用Tex中文环境有好几种选择和相关方法,有些比较简单(比如直接用XeTeX),有些则相对麻烦一点(比如手动去生成相关字体)。

现在应用最广的一般是TexLive CJK,如果想尽量使你的Tex文档在Windows/Linux下互相通用,一般都选择这种组合,而且这也是目前最成熟的(相对于XeTeX)。

今天这篇文章中的方法,是利用目前已经成功的方法,再结合Ubuntu的特定环境所作的。希望能给想在Ubuntu下配置Tex中文环境的朋友一个参考。

—–

先介绍一下之前最流行的在Linux下配置Tex的方法,一般是参考这篇文章:

http://mailboxpublic.googlepages.com/texlive2007cjkchinesehowto

下载1GB左右的ISO档,挂载ISO并安装其中的TexLive,再自己生动生成相关字体文件。一般都能顺利的配置好Tex UTF-8的中文环境。

但是对于习惯了apt-get的用户,可能不愿意从外部安装Tex套件。因此,我参考了一些文章,琢磨出了这个利用Ubuntu源里的TexLive,再手动生成字体包的方法,优点是:

  • 不需要下载1GB的ISO档,只需要下载我准备的几百KB的字体生成要用的相关文件。
  • 只从Ubuntu源里安装相关Tex套件,不往系统目录写入其他文件,方便删除。
  • 仍需要手动生成字体文件,不过是安装在自己的主目录下。

好。请看详细方法:

一、安装TexLive Latex CJK:

打开终端,执行下述命令安装TexLive和常用的一些Latex宏包(可以根据自己的需要增改):

sudo apt-get install texlive texlive-math-extra texlive-latex-base texlive-latex-extra texlive-latex-recommended texlive-pictures texlive-science texlive-bibtex-extra texlive-common latex-beamer

如果硬盘充裕的话,直接完整安装也可以:

sudo apt-get install texlive-full latex-beamer

安装完后,就可以安装CJK的相关软件包了,如果只需要获得中文支持,那么执行:

sudo apt-get install latex-cjk-chinese ttf-arphic-* hbf-*

否则,建议安装latex-cjk-all以获取完整支持。

二、生成中文字体包

安装好TexLive CJK以后,还需要安装一个软件──fontforge用于生成字体:

sudo apt-get install fontforge

好了,前面所做的,都是标准的Debian式安装,假如哪天你不需要了,直接remove安装即可。

生成字体前,请自己准备你需要生成的字体文件:simsun.ttc,simhei.ttf等,这里以simsun.ttc(宋体)为例。

准备好后下载下面这个包,解压到一个地方,如自己的主目录~/font:

font.tar.bz2

然后把simsun.ttc也复制到~/font里去,执行下面的命令生成字体地图:

cd ~/font
time fontforge -script subfonts.pe simsun.ttc song Unicode.sfd

加time是为了计算时间,因为比较耗时,在我的Core 2 Duo T5500下,生成song花了40分钟,生成hei花了24分钟,仅供参考。

字体生成好了,再建立一个描述文件吧。

在~/font下,建立一个makemap文件,内容如下:

for i in *.tfm
do
cat >> song.map << EOF
${i%.tfm} ${i%.tfm} < ${i%.tfm}.pfb
EOF
done

然后在终端下执行:chmod x makemap让文件加上执行权限,最后执行:

./makemap

再建立一个一个c70song.fd文件:

% This is c70song.fd for CJK package.
% created by Edward G.J. Lee
% modify by Yue Wang
\ProvidesFile{c70song.fd}
\DeclareFontFamily{C70}{song}{\hyphenchar \font\m@ne}
\DeclareFontShape{C70}{song}{m}{n}{<-> CJK * song}{}
\DeclareFontShape{C70}{song}{bx}{n}{<-> CJKb * song}{\CJKbold}
\endinput

好的,相关文件都已生成,开始复制字体使其生效。

执行下面的命令,在你的主目录下生成隐藏的个人Tex配置,如果你哪天不需要了,也可以删除:

mkdir -p ~/.texmf-var/fonts/map/dvips/CJK
mkdir -p ~/.texmf-var/fonts/tfm/CJK/song
mkdir -p ~/.texmf-var/fonts/type1/CJK/song
mkdir -p ~/.texmf-var/tex/latex/CJK/UTF8

建立完这层层叠叠的目录以后,就把刚刚生成的字体复制进去吧。

cp ~/font/song.map ~/.texmf-var/fonts/map/dvips/CJK
cp ~/font/*.tfm ~/.texmf-var/fonts/tfm/CJK/song
cp ~/font/*.pfb ~/.texmf-var/fonts/type1/CJK/song
cp ~/font/c70song.fd ~/.texmf-var/tex/latex/CJK/UTF8

复制完后就执行命令刷新缓存,让它生效:

sudo texhash
updmap --enable Map song.map

假如一切顺序的话, 就测试一下我们安装的song体是否能用吧。

在任意位置编辑这个文件,然后保存为test.tex,支持UTF-8格式:

\documentclass{article}
\usepackage{CJKutf8}
\begin{document}
\begin{CJK}{UTF8}{song}
你好!这里是Ubuntu下的TexLive CJK环境!
\end{CJK}
\end{document}

 

执行分别生成pdf文档和用evince来查看文档:

pdflatex test.tex
evince test.pdf

看看你的过程顺不顺利,生成的PDF档也是下面这样吗?

texlive.png

texlive-2.png

用同样的方法搞定hei和kai等常用中文标准字体,开始享受你的Tex吧!

参考资料是:

Fedora上配置Tex UTF-8 中文系统

TeXLive 2007 CJK Chinese Howto

ubuntu 7.10下搞定Latex CJK

Avatar_small
meidir said:
Tue, 06 Dec 2022 01:41:00 +0800

You really make it seem so uncomplicated with your presentation but I find that topic to be really something that I think I would never understand. It seems too complicated and incredibly broad for me. I am looking forward for your next post, I can try to get the hang up of it! Macbook pro

 

=============

 

This is really important, You’re a remarkably expert article author. I’ve joined with your feed and also count on reading your excellent write-ups. In addition to that, I’ve shared your websites inside our web pages. 토토사이트

Avatar_small
meidir said:
Thu, 05 Jan 2023 01:27:44 +0800

When I originally commented I clicked the -Notify me when new surveys are added- checkbox and after this every time a comment is added I recieve four emails using the same comment. Could there be in whatever way you may eliminate me from that service? Thanks! محامي عمالي

 

=============

 

Hi! I could have sworn I've been to this blog before but after checking through some of the post I realized it's new to me. Anyhow, I'm definitely glad I found it and I'll be bookmarking and checking back often! افضل محامي في الرياض

 

=============

 

I read a lot of online articles and I’ve found that it’s hard to find quality writing. I’m so happy I found this article because it’s renews my faith in good writers. This is awesome! محامي تجاري في الرياض

 

=============

 

My spouse and i continue to have blended sentiments about the apple ipad. I’d really enjoy to relax and play close to utilizing one to get a compelling realization. محامي متخصص في القضايا الجنائية

 

=============

 

Just added your blog to my list of value reading blogs استشارات قانونية مجانية جدة

Avatar_small
meidir said:
Thu, 12 Jan 2023 00:16:00 +0800

What i do not realize is in reality how you are no longer actually a lot more neatly-appreciated than you may be right now. You are so intelligent. You understand therefore considerably in relation to this matter, made me personally believe it from a lot of varied angles. Its like women and men don’t seem to be fascinated except it?s something to accomplish with Lady gaga! Your own stuffs excellent. At all times deal with it up! 온라인카지노

Avatar_small
meidir said:
Wed, 08 Feb 2023 23:55:01 +0800

You need to take part in a contest personally of the most effective blogs over the internet. I’m going to suggest this web site! SaaS Licensing Attorney

Avatar_small
meidir said:
Sun, 19 Feb 2023 02:41:14 +0800

Good day” i am doing research right now and your blog really helped me”   슈어맨

Avatar_small
sibaji said:
Mon, 31 Jul 2023 17:03:57 +0800

Your blog has piqued a lot of real interest. I can see why since you have done such a good job of making it interesting. I appreciate your efforts very much. Vip box

Avatar_small
meidir said:
Thu, 24 Aug 2023 02:15:27 +0800

I don’t know if it’s just me or if everyone else encountering problems with your website. It appears like some of the text on your posts are running off the screen. Can somebody else please provide feedback and let me know if this is happening to them too? This could be a problem with my browser because I’ve had this happen before. Thank you 花藝學校

Avatar_small
meidir said:
Sat, 09 Dec 2023 14:26:52 +0800

I also thought Ken Jeong is really fantastic and another standout comedic performance. 玫瑰花

 

=================

 

Enjoyed looking through this, very good stuff, thanks . 開張花籃花牌

 

=================

 

I just extra this particular give food to to my book marks. I must say, I truly take pleasure in reading the weblogs. Continue the good work! 訂花推介

 

=================

 

infant clothing should be as comfy as possible because infants can really nag if they have bad clothing` 訂花

Avatar_small
meidir said:
Sat, 09 Dec 2023 23:06:27 +0800

Hello there, I found your blog via Google even as searching for a comparable matter, your web site got here up, it appears great. I have bookmarked it in my google bookmarks. amazon

Avatar_small
meidir said:
Wed, 27 Dec 2023 02:06:00 +0800

learning toys can enable your kids to develop their motor skills quite easily;; universitas medan

Avatar_small
meidir said:
Thu, 11 Jan 2024 16:39:48 +0800

Pretty nice post, thanks for the awesome article. I’m having troubles subscribing to your blogs feed. Thought I’d let you know Agencja marketingowa Gdańsk

 

===================

 

Hi there this is kinda of off topic but I was wondering if bloger use editors or if you have to manually code with HTML. I’m starting a blog soon but have no coding know-how so I wanted to get guidance from someone with experience. Any help would be greatly appreciated! 訂花

 

===================

 

I like the precious information you offer for your articles. I will be able to bookmark your weblog and feature my youngsters check up here generally. I’m somewhat certain they are going to learn numerous new stuff here than anyone else! 訂花推介

 

===================

 

Hey you. I do not know whether it’s acceptable, but this blog is really well designed. 開張花籃花牌

 

===================

 

I’m impressed, I have to admit. Truly rarely will i encounter a blog that’s both educative and entertaining, and without a doubt, you have hit the nail on the head. Your concept is outstanding; the problem is something that too few folks are speaking intelligently about. I’m delighted that we came across this within my seek out some thing relating to this. 玫瑰花

 

===================

 

This is the type of movie that the less you know, the more enjoyable it will be. Seiko King Samurai

 

===================

 

This post something certainly worth reading. There are tons of sites that really make no sense at all. Please keep up the fresh blogging and many more people will keep coming. seiko watch bands

 

===================

 

Youre so cool! I dont suppose Ive read anything such as this just before. So nice to discover somebody with some original ideas on this subject. realy thanks for starting this up. this fabulous website is a thing that is needed on the net, someone after a little originality. beneficial problem for bringing a new challenge on the internet! watch straps

 

===================

 

Hiya. Very cool web site!! Man .. Beautiful .. Superb .. I’ll bookmark your web site and take the feeds also…I’m glad to find a lot of useful info here in the article. Thank you for sharing.. seiko 5 sports gmt

 

===================

 

Hello, you used to write fantastic, but the last few posts have been kinda boring… I miss your tremendous writings. Past few posts are just a bit out of track! come on! 二手電腦

Avatar_small
meidir said:
Sun, 21 Jan 2024 20:11:11 +0800

you have a very excellent blog here! do you wish to have invite posts on my own weblog? AI Agents Explained

Avatar_small
meidir said:
Fri, 26 Jan 2024 06:22:04 +0800

I am perpetually thought about this, appreciate it for putting up. 타이틀카지노보증

Avatar_small
meidir said:
Fri, 16 Feb 2024 05:33:37 +0800

I feel that is among the so much important info for me. And i’m satisfied studying your article. However wanna commentary on some normal things, The site taste is ideal, the articles is actually nice . Good task, cheers. black dollar cleaning machine

 

==============

 

Hi, your blog is full of comments and it is very active,    母親節

 

==============

 

Yes, really. I join told all above. We can communicate on this theme. Here or in PM. 玫瑰花

 

==============

 

Very good written blog. It will be useful to everyone who usess it, including myself. Keep up the good work. 生日訂花

 

==============

 

being a blogger myself , i can see someone with great potential,    法式花藝

 

==============

 

I visited a lot of website but I believe this one has got something extra in it. 手機回收

 

==============

 

There are a few interesting points in time in this posting but I do not determine if I see these people center to heart. There may be some validity but Let me take hold opinion until I take a look at it further. Very good write-up , thanks and we want much more! Included in FeedBurner likewise Seiko King Samurai

 

==============

 

I was just imagine about it and you provided me the correct information I really bookmark it seiko watch bands

 

==============

 

Awsome site! I am loving it!! Will be back later to read some more. I am taking your feeds also watch straps

 

==============

 

An fascinating discussion will be worth comment. I do think that you should write on this topic, it might not often be a taboo subject but generally persons are insufficient to talk on such topics. To the next. Cheers seiko 5 sports gmt

Avatar_small
meidir said:
Sat, 17 Feb 2024 06:43:34 +0800

What your stating is totally accurate. I know that everyone must say the exact same issue, but I just believe that you set it in a way that absolutely everyone can recognize. I also appreciate the images you place in the following. They suit so properly with what youre hoping to say. Im certain youll achieve so a lot of men and women with what youve obtained to say. ZLD SYSTEM MANUFACTURER (ZERO LIQUID DISCHARGE SYSTEM)

 

 

======================

 

 

Wonderful blog! I found it while surfing around on Yahoo News. Do you have any suggestions on how to get listed in Yahoo News? I’ve been trying for a while but I never seem to get there! Thank you ARSENIC REMOVAL PLANT MANUFACTURER

Avatar_small
Meidir said:
Wed, 20 Mar 2024 15:07:39 +0800

I love the opinions on this site, it really gives it that community sense! Download WordPress

Avatar_small
Meidir said:
Thu, 21 Mar 2024 23:20:33 +0800

hey there and thank you for your info – I have definitely picked up something new from right here. I did however expertise some technical issues using this website, as I experienced to reload the web site a lot of times previous to I could get it to load correctly. I had been wondering if your web host is OK? Not that I’m complaining, but sluggish loading instances times will very frequently affect your placement in google and could damage your high-quality score if ads and marketing with Adwords. Anyway I’m adding this RSS to my email and can look out for a lot more of your respective interesting content. Ensure that you update this again soon.. 母親節

 

===================

 

puppies and dogs are very cute, i always love to play with them during my spare time’ 玫瑰花

 

===================

 

This is Great. So much good, useful and well written information and entertaining too! I appreciate the time you have spent on this. It is a big help for me. – Thank you! 生日訂花

 

===================

 

Awesome! I thank you your input to this matter. It has been useful. my blog: maple syrup 法式花藝

 

===================

 

I believe there’s a issue with your blog working with Safari internet browser. 回收iphone

 

===================

 

Just as before, you need to alteration your tax bill obligations for anybody who is expected an important substantial return. Seiko King Samurai

 

===================

 

Awesome site! You’ve some quite interesting posts.. Nice background as well haha. Keep up the nice work, Ill make sure to come across to see really your page! seiko watch bands

 

===================

 

I am glad to read this post, it’s an impressive piece. I am always searching for quality posts and articles and this is what I found here, I hope you will be adding more in future. watch straps

 

====================

 

Only wanna say that this is extremely helpful, Thanks for taking your time to write this. seiko 5 sports gmt

Avatar_small
Meidir said:
Thu, 28 Mar 2024 18:36:49 +0800

I’m speechless. This is a excellent weblog and very engaging too. Nice paintings! That’s not in point of fact much coming from an novice publisher like me, but it surely’s all I may say after diving into your posts. Nice grammar and vocabulary. No longer like other blogs. You actually understand what you?re talking about too. Such a lot that you made me wish to discover more. Your weblog has change into a stepping stone for me, my friend. Tech

 

----------------------

 

Many thanks for creating the effort to discuss this, I feel strongly about this and like studying a great deal more on this topic. If feasible, as you gain knowledge, would you mind updating your webpage with a great deal more details? It’s really helpful for me. Tech

Avatar_small
Meidir said:
Sun, 31 Mar 2024 03:39:44 +0800

It can be in no way also late to mend. Black dollar cleaning machine in Dubai

 

 

===================

 

 

Useful info. Fortunate me I discovered your site unintentionally, and I’m shocked why this coincidence did not happened in advance! I bookmarked it. najlepszy klub piłkarski

Avatar_small
Meidir said:
Fri, 12 Apr 2024 15:33:32 +0800 Just where perhaps you have discovered the supply for this kind of post? Amazing reading through I’ve subscribed for your site feed. Yep Marketing Agency
Avatar_small
Meidir said:
Sat, 27 Apr 2024 04:27:04 +0800

There is obviously a lot to realize about this. I believe you made various good points in features also. 法式花藝

 

===============

 

Good day! I simply wish to give an enormous thumbs up for the great info you’ve got right here on this post. I might be coming back to your blog for more soon. 生日訂花

 

===============

 

Can I simply say what a aid to find someone who actually knows what theyre speaking about on the internet. You definitely know how one can bring an issue to gentle and make it important. More individuals need to learn this and perceive this aspect of the story. I cant believe youre not more well-liked since you definitely have the gift. 玫瑰花

 

===============

 

How do I start to learn how to Hip Hop dance? 母親節


Login *


loading captcha image...
(type the code from the image)
or Ctrl+Enter