LaTex环境安装配置验证及记事本运行

1 下载编译器Tex Live

官网地址
LaTex环境安装配置验证及记事本运行_第1张图片
LaTex环境安装配置验证及记事本运行_第2张图片
LaTex环境安装配置验证及记事本运行_第3张图片
LaTex环境安装配置验证及记事本运行_第4张图片

2 安装

解压texlive2020.iso后,进入该目录,以管理员权限运行“install-tl-advanced.bat”即可。

注意:为节约空间,在安装过程中可以删减一些不必要的选项,比如其他国家的语言。
在这里插入图片描述
LaTex环境安装配置验证及记事本运行_第5张图片

3 验证安装

tex -v

LaTex环境安装配置验证及记事本运行_第6张图片

xelatex -v

LaTex环境安装配置验证及记事本运行_第7张图片

4 运行 Hello, World.

4.1 生成文本均为“英文”

mkdir latex_helloWorld
cd latex_helloWorld

notepad helloWorld.tex
############ begin #############
# 编辑helloWorld.tex, 代码如下:
\documentclass{
     article}
\begin{
     document}
Hello, World.
\end{
     document}
############ end #############

latex helloWorld.tex

dvipdfmx helloWorld.dvi

helloWorld.pdf

在这里插入图片描述
LaTex环境安装配置验证及记事本运行_第8张图片
LaTex环境安装配置验证及记事本运行_第9张图片
LaTex环境安装配置验证及记事本运行_第10张图片
LaTex环境安装配置验证及记事本运行_第11张图片

4.2 生成文本包括“英文+中文”

notepad helloWorld.tex
############ begin #############
# 编辑helloWorld.tex, 代码如下:
\documentclass{
     article}
\usepackage{
     ctex}
\begin{
     document}
Hello, World.\\
你好,世界。
\end{
     document}
############ end #############

xelatex helloWorld.tex

helloWorld.pf

注意:*.tex文件格式为“UTF-8”!
LaTex环境安装配置验证及记事本运行_第12张图片

LaTex环境安装配置验证及记事本运行_第13张图片

5 bat 脚本

5.1 latex

notepad run_by_latex.bat
############ begin #############
latex helloWorld.tex
dvipdfmx helloWorld.dvi
del *.aux *.dvi *.log
############ end #############

run_by_xelatex

5.2 xelatex

notepad run_by_xelatex.bat
############ begin #############
xelatex helloWorld.tex
del *.aux *.dvi *.log
############ end #############

run_by_xelatex

LaTex环境安装配置验证及记事本运行_第14张图片

你可能感兴趣的:(LaTeX)