(內(nèi)容來源于“交大PhD?”←?關(guān)注它)
Latex是什么?
LaTeX(音譯“拉泰赫”)是一種基于TEX的排版系統(tǒng),由美國計(jì)算機(jī)學(xué)家萊斯利·蘭伯特(Leslie Lamport)在20世紀(jì)80年代初期開發(fā),利用這種格式,即使使用者沒有排版和程序設(shè)計(jì)的知識也可以充分發(fā)揮由TeX所提供的強(qiáng)大功能,能在幾天,甚至幾小時(shí)內(nèi)生成很多具有書籍質(zhì)量的印刷品。
?
對于生成復(fù)雜表格和數(shù)學(xué)公式,這一點(diǎn)表現(xiàn)得尤為突出。因此它非常適用于生成高印刷質(zhì)量的科技和數(shù)學(xué)類文檔。這個(gè)系統(tǒng)同樣適用于生成從簡單的信件到完整書籍的所有其他種類的文檔。總的來說,會(huì)用Latex,寫論文效率各種高!
Latex基本語法
打開WinEdt,建立一個(gè)新文檔,將以下內(nèi)容復(fù)制進(jìn)入文檔中,保存,保存類型選擇為UTF-8。?
documentclass{article}?
begin{document}?
hello, world?
end{document}?
然后在WinEdt的工具欄中找到編譯按鈕(在垃圾桶和字母B中間),在下拉菜單中選擇XeTeX,并點(diǎn)擊編譯。
如果順利的話,我們就可以順利生成出第一個(gè)pdf文件,點(diǎn)擊工具欄中的放大鏡按鈕就可以快速打開生成的pdf文件。?
建立一個(gè)新文檔,將以下內(nèi)容復(fù)制進(jìn)入文檔中,保存,保存類型選擇為UTF-8,編譯并觀察現(xiàn)象。?
documentclass{article}?
author{My Name}?
title{The Title}?
begin{document}?
maketitle?
hello, world % This is comment?
end{document}?
建立一個(gè)新文檔,將以下內(nèi)容復(fù)制進(jìn)入文檔中,保存,保存類型選擇為UTF-8,編譯并觀察現(xiàn)象。?
documentclass{article}?
title{Hello World}?
begin{document}?
maketitle?
section{Hello China} China is in East Asia.?
subsection{Hello Beijing} Beijing is the capital of China.?
subsubsection{Hello Dongcheng District}?
paragraph{Tian’anmen Square}is in the center of Beijing?
subparagraph{Chairman Mao} is in the center of Tian’anmen Square?
subsection{Hello Guangzhou}?
paragraph{Sun Yat-sen University} is the best university in Guangzhou.?
end{document}?
退格只是我個(gè)人偏好,看起來層次清晰美觀。實(shí)際操作上未必要如此,每一行之前的空格不影響編譯生成PDF的排版結(jié)果。?
建立一個(gè)新文檔,將以下內(nèi)容復(fù)制進(jìn)入文檔中,保存,保存類型選擇為UTF-8,編譯并觀察現(xiàn)象。?
documentclass{article}?
begin{document}?
tableofcontents?
section{Hello China} China is in East Asia.?
subsection{Hello Beijing} Beijing is the capital of China.?
subsubsection{Hello Dongcheng District}?
paragraph{Hello Tian’anmen Square}is in the center of Beijing?
subparagraph{Hello Chairman Mao} is in the center of Tian’anmen Square?
end{document}?
建立一個(gè)新文檔,將以下內(nèi)容復(fù)制進(jìn)入文檔中,保存,保存類型選擇為UTF-8,編譯并觀察現(xiàn)象。?
documentclass{article}?
begin{document}?
Beijing is?
the capital?
of China.?
New York is?
the capital?
of America.?
Amsterdam is \ the capital \?
of Netherlands.?
end{document}?
建立一個(gè)新文檔,將以下內(nèi)容復(fù)制進(jìn)入文檔中,保存,保存類型選擇為UTF-8,編譯并觀察現(xiàn)象。?
documentclass{article}?
usepackage{amsmath}?
usepackage{amssymb}?
begin{document}?
The Newton’s second law is F=ma.?
The Newton’s second law is $F=ma$.?
The Newton’s second law is?
F=ma
The Newton’s second law is?
F=ma
Greek Letters $eta$ and $mu$?
Fraction $frac{a}{b}$?
Power $a^b$?
Subscript $a_b$?
Derivate $frac{partial y}{partial t} $?
Vector $vec{n}$?
Bold $mathbf{n}$?
To time differential $dot{F}$?
Matrix (lcr here means left, center or right for each column)?
[?
left[?
begin{array}{lcr}?
a1 & b22 & c333 \?
d444 & e555555 & f6?
end{array}?
right]?
]?
Equations(here & is the symbol for aligning different rows)?
begin{align}?
a+b&=c\?
d&=e+f+g?
end{align}?
[?
left{?
begin{aligned}?
&a+b=c\?
&d=e+f+g?
end{aligned}?
right.?
]?
end{document}?
具體細(xì)節(jié)可以自行搜索LaTeX的數(shù)學(xué)符號表或別人給的例子。?
先搜索到一個(gè)將圖片轉(zhuǎn)成eps文件的軟件,很容易找的,然后將圖片保存為一個(gè)名字如figure1.eps。?
建立一個(gè)新文檔,將以下內(nèi)容復(fù)制進(jìn)入文檔中,保存,保存類型選擇為UTF-8,放在和圖片文件同一個(gè)文件夾里,編譯并觀察現(xiàn)象。?
documentclass{article}?
usepackage{graphicx}?
begin{document}?
includegraphics[width=4.00in,height=3.00in]{figure1.eps}?
end{document}?
建立一個(gè)新文檔,將以下內(nèi)容復(fù)制進(jìn)入文檔中,保存,保存類型選擇為UTF-8,編譯并觀察現(xiàn)象。?
documentclass{article}?
begin{document}?
begin{tabular}{|c|c|}?
a & b \?
c & d\?
end{tabular}?
begin{tabular}{|c|c|}?
hline?
a & b \?
hline?
c & d\?
hline?
end{tabular}?
begin{center}?
begin{tabular}{|c|c|}?
hline?
a & b \ hline?
c & d\?
hline?
end{tabular}?
end{center}?
end{document}
?
此處可以算是Latex最大的優(yōu)勢所在。一般來說,word寫的論文每一段落的格式,字體,縮進(jìn)等都需要進(jìn)行具體的編輯,如果投稿雜志具有具體的格式要求,則需要對全文進(jìn)行編輯,這將花費(fèi)大量的時(shí)間,而Latex則不需要。Latex的全文的格式都在一個(gè)被定義的文檔中,一般雜事提供的模板中會(huì)有這個(gè)文檔,也就是說只要把雜志提供的模板文檔復(fù)制過來,全文的格式就會(huì)自動(dòng)轉(zhuǎn)變成雜志的要求了!
舉個(gè)例子:
?
微納院的小樓原本寫了一篇論文,打算投C類Sci–Micromachines,他找到了這個(gè)雜志的模板:
?
后來,小樓獲得靈感,打算投機(jī)器人領(lǐng)域頂級Sci雜志–IJRR,于是他找到了這個(gè)雜志的模板:
以上部分內(nèi)容來自網(wǎng)絡(luò),若涉及版權(quán)問題,請?jiān)瓌?chuàng)作者留言聯(lián)系我們。
原創(chuàng)文章,作者:菜菜歐尼醬,如若轉(zhuǎn)載,請注明來源華算科技,注明出處:http://www.zzhhcy.com/index.php/2023/11/17/2211c2df62/