以下內容揭示我從自己的 Medium 搬過來的,但因為這邊放圖很不方便,所以圖的部分會少很多。想看圖可以至我的 Medium觀賞(但之後應該不會更新ㄌ)
什麼是 $\LaTeX$?
相信會看到這篇文章的人,應該都對 $\LaTeX$ 有基本認識了(不然你根本不會找到這篇ㄅ),所以他的優點缺點啥的這裡一概不贅述,僅以一言以蔽之:好看的 Word,上手難度較高的 Word(或 ppt)
Editor
跟寫程式一樣,$\LaTeX$ 也需要一個編輯器,這邊就列上我有在用的兩個:
- VSCode (Local)
- Overleaf (Web)
Overleaf 應該是所有 Web Editor 裡面最廣為人知也最方便使用的了,而且還支援共編,強烈推薦新手都去用 Overleaf。
至於 Local Editor 的部分,除了 VSCode 這個寫啥都可以的工具以外,好像還有 TeXLive, MikTeX 之類的可以用(但我沒用過就是ㄌ)
Start!!
以下介紹的是最基礎的 $\LaTeX$ 排版功能,包含設定字體大小、字體樣式、文件結構等等。
一般 $\LaTeX$ 的文件結構會長得像
\documentclass[12pt,a4paper]{article}
\usepackage{package1}
\begin{document}
Your content
\end{document}
來拆解程式碼ㄅ
\documentclass[]{}
中的[]
可以選擇字體、紙張大小(例如a4paper
為紙張大小,12pt
為字體大小。而{}
則是選擇文件類別,例如article
,report
,moderncv
\usepackage{}
用來載入套件\begin{document}
與\end{document{}
代表的是文章的開始與結束
以下附上 Overleaf 更詳細的解說
字體
\textbf{word}
是粗體\textit{word}
與\emph{word}
是斜體\underline{word}
是加上底線\\
或\newline
皆可以達到換行效果\newpage
則可以直接換頁
文章架構
由大到小分別是
\part{part}
\chapter{chapter}
\section{section}
\subsection{subsection}
\subsubsection{subsubsection}
\paragraph{paragraph}
\subparagraph{subparagraph}
- 特別注意到,
\chapter
與\part
僅適用於 report 或 book 樣式的文件 - 以 section 為例,可以選擇使用
\section{}
或\section*{}
。*
的用途是捨棄章節的數字
Lists in $\LaTeX$
常用的 lists 有分三種,這邊先舉例性質比較相似的兩種:itemize
以及 enumerate
。使用 itemize
出現的是點,而使用 enumerate
出現的是數字。用法如下
%% itemize
\begin{itemize}
\item item 1
\item item 2
\item item 3
\end{itemize}
%% enumerate
\begin{enumerate}
\item item 1
\item item 2
\item item 3
\end{enumerate}
再來要介紹第三種 list – description
,description
的特別之處在於標籤是使用者自定義的
\begin{description}
\item This is an entry without label
\item[One-line description] This is an one-line description. \end{description}
Nested List
Nested 指的是巢狀結構,意即可以在 list 中再放入一個甚至多個 lists,形成一份篇幅較大的筆記
\begin{enumerate}
\item number item 1
\begin{itemize}
\item bullet item 1
\item bullet item 2
\begin{description}
\item[Note:] Note
\item[Caveat!] Warning
\end{description}
\end{itemize}
\item number item 2
\end{enumerate}
Math Equations
$\LaTeX$ 的重頭戲,我認為這邊是最一開始可以感受到 $\LaTeX$ 與 Microsoft Word 的差別。但我不會去細講數學式本身怎麼打,我會講的是如何把數學式寫得更好看。
首先,數學是在一份文件中有兩種呈現方法,第一個是 Inline equation,顧名思義就是直接在句子中加入數學式,例如:Where $y = \alpha + \beta x$。
第二種則是 block,例如:
$$\beta = \frac{\mathbf{x}^{\intercal}\mathbf{y}}{\mathbf{x}^{\intercal}\mathbf{x}}$$
Inline equation 比較單純,通常就是用 $ type here $
或 \begin{math} type here \end{math}
的方式呈現。
而 block 則有很多種寫法
$$ type here $$
\[ type here \]
\begin{equation} type here \end{equation}
\begin{align} type here \end{align}
我自己是覺得後兩個比較正式也比較好看,就給大家參考ㄌ!
Code Insertion
Code Insertion 這個東西好像不是每個人都用得到,但是寫作業時特別好用 XD。尤其是當大家都在截圖貼 word 的時候,你的作業會顯得格外漂亮且工整。
將程式碼嵌入文件中的方法就是使用 listings
這個套件,接著使用 \lstset{}
依照自己的喜好去更改 keyword, commend 等語法的顏色以及整個版面的其他設定(例如要不要留行數、程式碼的 block 要是什麼顏色、tab 是幾個 space 等等),最後則是使用 \begin{lstlisting}type your code here \end{lstlisting}
來顯示程式碼。
\usepackage{listings}
\lstset{
frame=tb,
language=C++,
aboveskip=3mm,
belowskip=3mm,
numbers=left,
tabsize=4
basicstyle={\small\ttfamily}
}
\begin{document}
\begin{lstlisting}
#include <iostream>
using namespace std;
int main() {
return 0;
}
\end{lstlisting}
\end{document}
後記
這次的內容主要 focus 在基礎的語法以及應用上(就是看完即可寫作業的程度),但其實 $\LaTeX$ 還有一個比較麻煩比較搞的地方是插入表格以及圖片的部分,想要兩張圖片並排還要多寫幾行程式碼XD,這部分就留到下一篇再講ㄌ(雖然我也不知道下一篇是啥時)。最後將附上自己的模板給需要的人使用。
Template Link: here