Installation of latex (2022 new version)

1. Premise

The name of latex has long been heard, and I have never used it. I am going to download and install it today.

latex使用的软件叫TeX Live,当然也可使用vscode的插件

2. Download

2.1 Tex Live installation (need to download tex Live and texStudio)

2.1.1 Download address

You can directly use
the USTC Tex Live image of the USTC image

insert image description here

2.1.2 Installation

After downloading, open the folder, select the install-tl-windows.bat file, right-click to run as an administrator,
insert image description here
and then select the installation location
insert image description here
insert image description here

During the installation, it takes a long time here, so you need to wait patiently.
insert image description here
After downloading, check whether you need to configure environment variables

xelatex -v

insert image description here

2.2 Install texstudio


Download texstudio directly from the official website
to modify the installation path

insert image description here

2.2.1 Configuration environment

insert image description here

Click options, configure texstudio

Language can be changed to Chinese
insert image description here
insert image description here

2.3 Testing

insert image description here

\documentclass{article}
% 这里是导言区
\begin{document}
Hello, world!
\end{document}

insert image description here

Guess you like

Origin blog.csdn.net/qq_43471945/article/details/127978621