歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> Linux教程

LaTeX使用--使用XeLaTeX支持中文(可以放棄Office了)

主機平台: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)

  1. % xetex/xelatex 字體設定宏包  
  2.   
  3. \ProvidesPackage{zhfontcfg}  
  4. \usepackage[cm-default]{fontspec} %[cm-default]選項主要用來解決使用數學環境時數學符號不能正常顯示的問題  
  5.   
  6. \usepackage{xunicode,xltxtra}  
  7. \defaultfontfeatures{Mapping=tex-text} %如果沒有它,會有一些 tex 特殊字符無法正常使用,比如連字符。  
  8. % 中文斷行  
  9. \XeTeXlinebreaklocale "zh"  
  10. \XeTeXlinebreakskip = 0pt plus 1pt minus 0.1pt  
  11. %將系統字體名映射為邏輯字體名稱,主要是為了維護的方便  
  12. \newcommand\fontnamehei{Microsoft YaHei}  
  13. \newcommand\fontnamesong{SimSun}  
  14. \newcommand\fontnamekai{AR PL KaitiM GB}  
  15. \newcommand\fontnamemono{DejaVu Sans Mono}  
  16. \newcommand\fontnameroman{Times New Roman}  
  17. %%設置常用中文字號,方便調用  
  18. \newcommand{\erhao}{\fontsize{22pt}{\baselineskip}\selectfont}  
  19. \newcommand{\xiaoerhao}{\fontsize{18pt}{\baselineskip}\selectfont}  
  20. \newcommand{\sanhao}{\fontsize{16pt}{\baselineskip}\selectfont}  
  21. \newcommand{\xiaosanhao}{\fontsize{15pt}{\baselineskip}\selectfont}  
  22. \newcommand{\sihao}{\fontsize{14pt}{\baselineskip}\selectfont}  
  23. \newcommand{\xiaosihao}{\fontsize{12pt}{\baselineskip}\selectfont}  
  24. \newcommand{\wuhao}{\fontsize{10.5pt}{\baselineskip}\selectfont}  
  25. \newcommand{\xiaowuhao}{\fontsize{9pt}{\baselineskip}\selectfont}  
  26. \newcommand{\liuhao}{\fontsize{7.5pt}{\baselineskip}\selectfont}  
  27. %設置文檔正文字體為宋體  
  28. \setmainfont[BoldFont=\fontnamehei]{\fontnamesong}  
  29. \setsansfont[BoldFont=\fontnamehei]{\fontnamekai}  
  30. \setmonofont{\fontnamemono}  
  31. %楷體  
  32. \newfontinstance\KAI {\fontnamekai}  
  33. \newcommand{\kai}[1]{{\KAI#1}}  
  34. %黑體  
  35. \newfontinstance\HEI{\fontnamehei}  
  36. \newcommand{\hei}[1]{{\HEI#1}}  
  37. %英文  
  38. \newfontinstance\ENF{\fontnameroman}  
  39. \newcommand{\en}[1]{\,{\ENF#1}\,}  
下面是一個tex測試文件input.tex
  1. \documentclass{article}  
  2.   
  3. \usepackage{zhfontcfg}  
  4. \usepackage[colorlinks,linkcolor=black]{hyperref}  
  5. %opening  
  6. \title{latex多字體簡易示例}  
  7. \author{顏開}  
  8. \begin{document}  
  9. \maketitle  
  10. \section{楷體}  
  11. \kai{楷體}  
  12. \section{黑體}  
  13. \hei{黑體}  
  14. \end{document}  
使用命令xelatex input.tex

這樣就生成了input.pdf文件


Copyright © Linux教程網 All Rights Reserved