Ubuntu上使用Latex
参考:https://blog.csdn.net/qq_41814939/article/details/82288145
sudo apt-get install texlive-full
sudo apt-get install texlive-xetex
sudo apt-get install texlive-lang-chinese
sudo apt-get install texstudio
这里要注意,编译时需要设置编译器为XeLaTeX,TeXstudio中在Options->Configure TeXstudio->Build->Default Compiler中更改默认编译器为XeLaTeX即可。在配置中可以更改软件界面语言,将Options->Configure TeXstudio->General->Language更改为zh-CN即可将界面设置为中文。
新建文件,在文本编辑框输入
\documentclass{article}
\usepackage{xeCJK}
\begin{document}
hello,你好
\end{document}
按F5进行编译预览。