Latex installation tutorial (with the latex template of Meisai paper)

Introduction to Latex

LaTeX (LATEX, transliteration "LaTehe") is a typesetting system based on TEX. It was developed by American computer scientist Leslie Lamport in the early 1980s. Using this format, even Users without knowledge of typesetting and programming can give full play to the powerful functions provided by TeX, and can generate many book-quality printed materials within days or even hours. This is particularly prominent for generating complex tables and mathematical formulas. Therefore, it is very suitable for generating high-quality technical and mathematical documents.


PS: Meisai typesetting papers are also very good.
Taken from Baidu Encyclopedia
latex online editor:

  1. https://www.overleaf.com/
  2. https://latex.91maths.com/

installation steps

texlive download

Download
Insert picture description here
from official website Since it is a foreign website, if the download is strenuous, you can consider that the mirror download is
Insert picture description here
a bit too large, but the download speed can be
Insert picture description here
double-clicked to open the downloaded iso file, right-click install-tl-windows.bat in the following figure, and run as an administrator
Insert picture description here
It is best not to install on the C drive, and then click install (a bit slow, about an hour) and
Insert picture description here
Insert picture description here
wait for the installation to complete
Insert picture description here

Configure environment variables

Insert picture description here
Enter xelatex -v
if you do not need the following interface configuration environment variable, or need to configure the environment variables
Insert picture description here
installed Texstudio
official website to download (download a bit slow)
Insert picture description here
downloaded, install it
Insert picture description here

Configure Texsudio

Open texstudio
Insert picture description here
Insert picture description here
Insert picture description here

latex version helloworld

Create a new file
Enter code

% 导言区
\documentclass{
    
    article} % book, report, letter  

\title{
    
    latex安装教程}  
\author{
    
    不想赖床}
\date{
    
    \today}

% 正文区(文稿区)
\begin{
    
    document} 
    \maketitle % 输出标题

   \begin{
    
    center}
   	 Hello World!
   \end{
    
    center}

   
\end{
    
    document}

Insert picture description here
Generate results
Insert picture description here
latex reference document
open cmd input texdoc texdocto
Insert picture description here

Meisai latex template

Link: Click here to download
Extraction code: 6666
welcome one-click triple connection

Guess you like

Origin blog.csdn.net/qq_43475285/article/details/113405698