1 前期工作
vscode不用说了
texlive推荐清华镜像源。装的时候不用选全部包,例如语言我只选了英文、中文。
自动添加环境变量路径选上。
vscode扩展LeTex Workshop
装上就好了。
2 初次使用
新建一个文件,保存为.tex文件
\documentclass[UTF8,11pt,a4paper]{article}
\usepackage[space]{ctex}
\begin{document}
\title{FrameNet简述}
\author{my}
\date{\today}
\maketitle
\section{文献翻译}
你 好 world!
\end{document}
重要的快捷键:Ctrl + Alt + B 编译文件,Ctrl + Alt + V 查看文件
3 中文配置
好像用ctex就可以噜。文件编码也要设成UTF8
\documentclass[UTF8,11pt,a4paper]{ctexart}
\begin{document}
3.1中文字体配置
4页面布局
4.1页边距调整:geometry包
放在begin前面
\usepackage{geometry}
\geometry{a4paper,left=2cm,right=2cm,top=1cm,bottom=1cm}