主機平台:Gentoo 11.2
內核版本:Linux Kernel 3.2.1
即將面臨畢業,要寫畢業論文,由於自己一直使用Linux,而Linux下的Office軟件兼容性實在是達不到論文的要求,以前也聽說過Linux下的強大的排版工具--LaTeX。這樣就不會出現換台電腦格式就會發生改變,然後忙著修改論文格式的窘境。
下面安裝環境,看網絡上好多都是使用texlive鏡像安裝,我看了一下,那鏡像2個多G,好大。而且通過CJK解決中文問題(現在還不是很了解)。
下面是安裝XeLaTeX的步驟
在Gentoo下直接emerge即可
Gentoo下Xetex和默認安裝的texlive-core是互相block的,最終方式是選擇安裝texlive-xetex模塊
emerge texlive-xetex -av
自動解決依賴問題。
XeLaTeX可以直接解決字體的問題,直接使用系統的字體,不用像LaTeX手動生成字體。
下面是sheriden2006的中文宏包的一個配置文件(字體得自己安裝,可以從網上下載,也可以直接在win下copy)
- % xetex/xelatex 字體設定宏包
-
- \ProvidesPackage{zhfontcfg}
- \usepackage[cm-default]{fontspec} %[cm-default]選項主要用來解決使用數學環境時數學符號不能正常顯示的問題
-
- \usepackage{xunicode,xltxtra}
- \defaultfontfeatures{Mapping=tex-text} %如果沒有它,會有一些 tex 特殊字符無法正常使用,比如連字符。
- % 中文斷行
- \XeTeXlinebreaklocale "zh"
- \XeTeXlinebreakskip = 0pt plus 1pt minus 0.1pt
- %將系統字體名映射為邏輯字體名稱,主要是為了維護的方便
- \newcommand\fontnamehei{Microsoft YaHei}
- \newcommand\fontnamesong{SimSun}
- \newcommand\fontnamekai{AR PL KaitiM GB}
- \newcommand\fontnamemono{DejaVu Sans Mono}
- \newcommand\fontnameroman{Times New Roman}
- %%設置常用中文字號,方便調用
- \newcommand{\erhao}{\fontsize{22pt}{\baselineskip}\selectfont}
- \newcommand{\xiaoerhao}{\fontsize{18pt}{\baselineskip}\selectfont}
- \newcommand{\sanhao}{\fontsize{16pt}{\baselineskip}\selectfont}
- \newcommand{\xiaosanhao}{\fontsize{15pt}{\baselineskip}\selectfont}
- \newcommand{\sihao}{\fontsize{14pt}{\baselineskip}\selectfont}
- \newcommand{\xiaosihao}{\fontsize{12pt}{\baselineskip}\selectfont}
- \newcommand{\wuhao}{\fontsize{10.5pt}{\baselineskip}\selectfont}
- \newcommand{\xiaowuhao}{\fontsize{9pt}{\baselineskip}\selectfont}
- \newcommand{\liuhao}{\fontsize{7.5pt}{\baselineskip}\selectfont}
- %設置文檔正文字體為宋體
- \setmainfont[BoldFont=\fontnamehei]{\fontnamesong}
- \setsansfont[BoldFont=\fontnamehei]{\fontnamekai}
- \setmonofont{\fontnamemono}
- %楷體
- \newfontinstance\KAI {\fontnamekai}
- \newcommand{\kai}[1]{{\KAI#1}}
- %黑體
- \newfontinstance\HEI{\fontnamehei}
- \newcommand{\hei}[1]{{\HEI#1}}
- %英文
- \newfontinstance\ENF{\fontnameroman}
- \newcommand{\en}[1]{\,{\ENF#1}\,}
下面是一個tex測試文件input.tex
- \documentclass{article}
-
- \usepackage{zhfontcfg}
- \usepackage[colorlinks,linkcolor=black]{hyperref}
- %opening
- \title{latex多字體簡易示例}
- \author{顏開}
- \begin{document}
- \maketitle
- \section{楷體}
- \kai{楷體}
- \section{黑體}
- \hei{黑體}
- \end{document}
使用命令xelatex input.tex
這樣就生成了input.pdf文件