Ubuntu + TeXLive2013中英文字体设置

首先确保系统上有Adobe的字体,如果没有从网上下载导入系统


使用中文标题宏包

1
2
\usepackage{ctexcap}
\usepackage{fontspec}


% 英文字体设置

1
2
3
\setmainfont[Mapping=tex-text]{Times New Roman}
\setsansfont[Mapping=tex-text]{Tahoma}
\setmonofont{Courier New}

% 中文字体设置

1
2
3
4
5
\setCJKmainfont[BoldFont={Adobe Heiti Std},
ItalicFont={Adobe Kaiti Std}]{Adobe Song Std}
\setCJKsansfont{Adobe Heiti Std}
\setCJKmonofont{Adobe Fangsong Std}
\punctstyle{hangmobanjiao}



本文转自   bigstone2012  51CTO博客,原文链接:http://blog.51cto.com/lavenliu/1386748

你可能感兴趣的:(Ubuntu + TeXLive2013中英文字体设置)