一些常用常忘的LaTeX命令備份
阿新 • • 發佈:2019-01-11
LaTeX用的熟練以後十分方便,並且其實常用的命令也並不算多。不過每次使用LaTeX寫論文時候總是會有一兩個命令想不起來,結果不得不每次都在Google裡翻江倒海。於是今天就把常用的命令備份在這裡,希望以後不用每次都重新搜尋…
另外有幾年沒發文了,藉機表存在。
{a \brack b} | |
{a \choose a_1,a_2} or \binom {a} {a_1,a_2} |
|
{a \brace b} |
|
{a \bangle b} with \def \bangle{ \atopwithdelims \langle \rangle}. |
|
Figure | \begin{figure}[!ht] \centering \includegraphics[scale=0.5]{img/pf.png} \caption{Sub-soutions represented as points in coordinate system} \begin{flushleft} \end{flushleft} \label{fig:pf} \end{figure} |
Multiline underneath subscript 多行下限 |
\usepackage amsmath \underset{ \substack{ k\in S;\\ m\in [1,n] } }{MinMax} |
Predefined symbols 複雜度理論 |
\usepackage{amssymb} \newcommand{\nph}{\mathcal{NP-}hard} \newcommand{\ostar}[1]{\mathcal{O}^*(#1)} \newcommand{\bigo}[1]{\mathcal{O}(#1)} |
Bibtex | \bibliographystyle{spmpsci} \bibliography{ref} % The file name is ref.bib Use \cite{} to cite |
待辦事項 todonotes | \usepqckage{todonotes} \todo{...} |
批註 | \margepar{。。。} |
陸續更新。
注:前四個來自http://www.combinatorics.net/weblib/commands/command.html