Latex常用命令(歡迎查閱)
阿新 • • 發佈:2018-11-15
之前使用過Atom+latex,覺得挺棒的,推薦給需要寫論文的小夥伴們。
latex絕對是排版之王,在我眼裡,真心比word排版好看。
但是latex寫起來卻是一個艱難的過程,耗時真的比較長,所以大家平時的一些文章還是用word來書寫吧。
接下來分享一些常用指令,大家可以收藏,方便日後使用~ 【如果查閱官方文件的話真的比較累】
latex常用指令
1、支援中文
\documentclass[UTF8]{article}
\usepackage{CJK}
2、向文章中插入圖片
\documentclass{article}
\usepackage{graphicx}
\begin{document}
\includegraphics[scale=0.6]{1.png} //scale是圖片比例,1.png要和文章在同一路徑
\end{document}
3、參考文獻引用(在寫論文的時候常用) —-有兩種方法
方法一<直接在tex檔案裡引用>
\documentclass{article}
\begin{document}
\section{Introduction} Partl~\cite{pa} has proposed that \ldots
\begin{thebibliography}{99}
\bibitem{pa} H. ~Partl: \emph{German \TeX}, TUGboat Volume~9, Issue~1 (1988)
\end{thebibliography} \end{document}
方法二<現將參考文獻放到bib檔案中,再在tex檔案中呼叫>!!!強烈推薦!!
首先新建一個x.bib檔案,然後用記事本之類的編輯器工具開啟(名字可以隨便起)
@book{Lamport1994,
title = {{\LaTeX:} A Document Preparation System},
author = {Leslie Lamport},
publisher = {Addison-Wesley},
address = {Reading, Massachusetts},
year = {1994},
edition = {2nd} } #儲存在x.bib檔案中
接著在tex檔案裡引用就好了
\documentclass{article}
\bibliographystyle{plain}
\begin{document}
\section{Some words} Some excellent books, for example, \cite{Lamport1994} and \cite{Mittelbach2004} \ldots
\bibliography{x}
\end{document}
4、頁首頁尾
(1)修改頁首頁尾樣式
\pagestyle{⟨page-style⟩} ——-全文
\thispagestyle{⟨page-style⟩} —–本頁
(2)利用巨集包fancyhdr
\documentclass{article}
\usepackage{fancyhdr} %引用擴充套件包
\pagestyle{fancy} %設定樣式
\lhead{} %設定為空(可以不寫)
\chead{}
\rhead{\bfseries The performance of new graduates}
\lfoot{From: K. Grant}
\cfoot{To: Dean A. Smith}
\rfoot{\thepage}
\renewcommand{\headrulewidth}{0.4pt} %設定線寬
\renewcommand{\footrulewidth}{0.4pt}
......
\begin{document}
......
\end{document}
5、頁面設定
\usepackage[hmargin=1.25in,vmargin=1in]{geometry}
#上下邊距1英寸,左右邊距1.25英寸
#需要設定周圍的邊距一致為 1.25 英寸,可以用更簡單的語法:
\usepackage[margin=1.25in]{geometry}
6、段落格式
#以下長度分別為段落的左縮排、右縮排和首行縮排:
\setlength{\leftskip}{20pt}
\setlength{\rightskip}{20pt}
\setlength{\parindent}{2em}
#如果你在某一段 不想使用縮排,可使用某一段開頭使用
\noindent
7、字型
(1)全域性字型大小
\documentclass[10pt]{article} %確定全域性字型大小磅數,10/11/12三個選項
(2)區域性字型大小
He likes {\LARGE large and {\small small} letters}
(3)字型粗細
\textmd{Medium Series}
\textbf{Boldface Series} //加粗
(4)字型形狀
\textup{Upright Shape}
\textit{Italic Shape}
\textsl{Slanted Shape}
\textsc{Small Caps Shape}
(5)字型(基本是拼音)
{\songti 宋體} \quad {\heiti 黑體} \quad {\fangsong 仿宋} \quad {\kaishu 楷書}\quad
{\youyuan 幼圓}{\youyuan 幼圓}
8、公式(比較重要的一個了)
(1)行內公式
$a^2 + b^2 = c^2$
(2)行間公式(帶編號)
\begin{equation}
a^2 + b^2 = c^2
\end{equation}
(3)行間公式(不帶編號)
#寫法一
\begin{equation*}
a^2 + b^2 = c^2
\end{equation*}
#寫法二
\[ a^2 + b^2 = c^2 \]
以上都是比較常用的指令啦,至於一些符號書寫、分數指數等書寫,可以查閱這份資料
lshort