TeX Live and TeX studio installation

Recently, I want to study how Letex writes papers, and then I checked the information to find out. First, install two software, how to use it for research, and record the software installation process here for future reference.

Introduction to Latex

TeX: It is a typesetting system that provides a powerful and flexible typesetting language, has macro definition functions, and supports secondary development and system function expansion.
LaTeX: It is a macro language based on TeX. It is a format of TeX. Many commands and templates (macro packages) have been defined in LaTeX according to the author's typesetting habits, which can quickly generate beautiful typesetting results.
TeX Live: It can be used on multiple platforms including Windows, Linux, and Mac OS.
TeX studio: is an integrated writing environment for creating LaTeX documents, including syntax highlighting, PDF viewing and other functions.

TexLive installation

Download the installation package of TexLive

https://www.latex-project.org/

insert image description here
insert image description here
insert image description here
insert image description here
insert image description here
insert image description here

Install TexLive

insert image description here
insert image description here

insert image description here
insert image description here
insert image description here
insert image description here
insert image description here

It takes a long time to install, so be patient!

insert image description here

Verify that TexLive is installed successfully

Open cmd (Win + R + enter cmd), enter the following command to view

tex -v

insert image description here

latex -v

insert image description here

xelatex -v

insert image description here

pdflatex -v

insert image description here

Write Hello Word! Test effect

insert image description here

insert image description here

\documentclass{
    
    article}
\begin{
    
    document}
Hello world!
\end{
    
    document}

insert image description here

insert image description here

TeXstudio installation

Download the TeXstudio installation package

https://texstudio.sourceforge.net/

insert image description here

Install TeXstudio

insert image description here
insert image description here
insert image description here
insert image description here

insert image description here
insert image description here

Common configuration of TeXstudio

insert image description here

If writing a Chinese paper, change the default compiler to Xelatex. If writing a paper in English, change the default compiler to Pdflatex.
insert image description here

Add the paragraph line number, so that you can easily check the position of a certain sentence in the paragraph, especially when running an error, you can easily check the error position.

insert image description here

Download a dissertation template to have a look

https://template-selector.ieee.org/secure/templateSelector/publicationType

insert image description here

Guess you like

Origin blog.csdn.net/qq_41990294/article/details/130881470
TEX