一、如何安装TeXstudio
很多人推荐使用TexStudio。注意,texstudio是一个latex编译器,而非latex的软件实体。正如rstudio和r的关系。因此,先要安装latex软件,之后才能使用TexStudio。
1. 到这里下载并安装MikTex:http://miktex.org/ 或者TexLive2015: http://tug.org/texlive/
2. 到这里下载并安装最新的texstudio http://texstudio.sourceforge.net/
二、Texstudio当中的中文字体使用
但texstudio当中中使用ctex中文包总是出错。怎么回事呢?主要是两个问题:中文字体,字体编码。
如何解决呢?
1. 为支持中文字体在miktex中安装ctex包
2. 设置字体的编码
这一步并不那么简单,需要在软件中设置两个地方(见博客),在代码中声明两个地方。如下:
(2a) 选项->设置->编辑器->Default Font Encoding 选择"System" 并勾上Auto Detect Encoding of Loaded files.
(2b) 编辑"->设置编码->{如果是GBK编码,就选择"System"},并点重新载入即可。
(2c) 在Latex代码中声明usepackage{ctex},如下代码
读者设置了2a和2b之后可以尝试run下面这个简单的例子:
\documentclass[10pt,a4paper]{article}
\usepackage{ctex}
\begin{document}
good morning!\
中文English中文
\end{document}