Latex常用命令

望天邊星宿發表於2020-12-18

Latex安裝教程(Texlive和TexStudio)和輔助外掛

更新中……


一、Latex基本結構

1.1 導言區

導言區:對全域性進行設定。

\documentclass{article} % 文字型別:book、report、letter……
\usepackage{ctex}  % 引入ctex巨集包,中文包

\title{\heiti 我的文章標題}  % 黑體
\author{\kaishu 張三}  % 楷書
\date{\today}

1.2 正文區

正文區:對文件進行編寫。

\begin{document}  % 只能有一個document環境
	\maketitle
	你好,\LaTeX
	\begin{equation}  % 用於產生帶編號的行間公式
		AB^2 = BC^2 + AC^2  
	\end{equation}
\end{document}

二、字型設定

在Latex中,一個字型有五種屬性:字型編碼、字型族、字型系列、字型形狀、字型大小 。

% 導言區
\documentclass {article}
\usepackage{ctex} 


% 正文區
\begin{document}  % 只能有一個document環境
	% 字型族設定(羅馬字型、無襯線字型、打字機字型)
	\textrm{Roman Family 羅馬字型}
	\textsf{Sans Serif Family 無襯線字型}
	\texttt{Typewriter Family 打字機字型}
	
	{\rmfamily Roman Family 羅馬字型}  
	{\sffamily Sans Serif Family 無襯線字型}
	{\texttt Typewriter Family 打字機字型}
	
	% 字型系列設定(粗細、寬度)
	\textmd{Medium Series}
	\textbf{Boldface Series}
	
	{\mdseries Medium Series}
	{\bfseries Boldface Series}
	
	% 字型形設定(直立、斜體、偽斜體、小型大寫)
	\textup{Upright Shape}
	\textit{Italic Shape}
	\textsl{Slanted Shape}
	\textsc{Small Capse Shape}
	
	{\upshape Upright Shape}
	{\itshape Italic Shape}
	{\slshape Slanted Shape}
	{\scshape Small Caps Shape}
	
	% 中文字型
	{\songti 宋體}
	{\heiti 黑體}
	{\fangsong 仿宋}
	{\kaishu 楷體}
	
	{\textbf{粗體}}
	{\textit{斜體}}
	
	% 字型大小
	{\tiny Hello}\\
	{\scriptsize Hello}\\
	{\footnotesize Hello}\\
	{\small Hello}\\
	{\normalsize Hello}\\
	{\large Hello}\\
	{\Large Hello}\\
	{\LARGE Hello}\\
	{\huge Hello}\\
	{\Huge Hello}\\
	
\end{document}

ctex中文字型設定的細節在ctex巨集包手冊(上面介紹了怎麼開啟該文件)中的第五節。

三、文件基本結構

小節:section、subsection、subsubsection
目錄:tableofcontents
在這裡插入圖片描述

% 導言區
\documentclass {article}
\usepackage{ctex} 

% 正文區
\begin{document} 
	\tableofcontents
	
	\section{引言}
	大盤雞掉怕我哈佛iaehfoiaehfoueashf發呢膚色暗訪雙方的違法威風威風肺癌搜房網微風撒馮紹峰五位粉絲方法
	
	的阿峰按省份按雙方威風威風色粉微風撒馮紹峰二分法峰峰我是個如果認購的人生觀代人受過熱帶水果二個人第三個人工讓國人
	\section{實驗方法}
		\subsection{資料}
			\subsubsection{資料1}
			\subsubsection{資料2}
		\subsection{圖示}	
	\section{實驗結果}
	\section{結論}
	\section{致謝}
\end{document}

參考:https://www.bilibili.com/video/BV15x411j7k6?p=5

四、特殊符號

參考:https://www.bilibili.com/video/BV15x411j7k6?p=6

五、插圖

參考:https://www.bilibili.com/video/BV15x411j7k6?p=7

六、表格

參考:https://www.bilibili.com/video/BV15x411j7k6?p=8

七、浮動體

實現靈活分頁,避免無法分割的內容產生的頁面留白;給圖示新增標題;交叉引用等。

參考:https://www.bilibili.com/video/BV15x411j7k6?p=9

八、數學公式

參考:
簡單數學公式:https://www.bilibili.com/video/BV15x411j7k6?p=10
矩陣:https://www.bilibili.com/video/BV15x411j7k6?p=11
多行公式:https://www.bilibili.com/video/BV15x411j7k6?p=12

九、參考文獻

BibTex:https://www.bilibili.com/video/BV15x411j7k6?p=13
BibLatex:https://www.bilibili.com/video/BV15x411j7k6?p=14

十、插入程式碼

10.1 插入Matlab程式碼

1 下載巨集包

首先需要下載M-code LaTeX Package,進入網站點選Download。

在這裡插入圖片描述
2 移動巨集包

將下載好後的檔案進行解壓,放到...\texlive\2020\texmf-dist\tex\latex目錄下。

(這個目錄下有很多巨集包)

3 更新庫

命令視窗內輸入命令:texthash
在這裡插入圖片描述
4 執行Demo

開啟其中的mcode_demo.tex並執行。
在這裡插入圖片描述
編譯成功。
在這裡插入圖片描述

相關文章