Overleaf

Overleaf

Overleaf就是在線Latex

https://www.overleaf.com/

註冊要用gmail,126、163等都會提示無效

 

模板

https://www.overleaf.com/latex/templates

 

 

\usepackage{}

就類似於寫代碼導入的包,比如規定上下左右頁邊距,能不能識別漢字,顏色之類的,一般不用動

 

加粗

\textbf{}  

 

斜體

\emph{}  

 

正文內容

\begin{document} 

\end{document}

 

摘要

\begin{abstract}

\end{abstract}

 

產生一段段落,用於我們練習

\lipsum

\lipsum[1]、lipsum[2]都是一段固定的段落

 

多級標題

\section

\subsection

\subsubsection

如果不想排序號

\section*

 

多個點標題

\begin{itemize}

\item

\item

\end{itemize}

 

多個數字標題

\begin{enumerate}

\item

\item

\end{enumerate}

 

插入圖片

\begin{figure}

\end{figure}

h!是插在當前位置

圖片必須先上傳到overleaf上

 

新起一頁

\newpage

也起到分割頁的作用

 

插入表格

 

插入公式

一些數學符號怎麼表示可以在這查

https://oeis.org/wiki/List_of_LaTeX_mathematical_symbols

 

插入參考文獻

https://blog.csdn.net/z_ramsey/article/details/81986447

 

 

 

這樣的話就是報錯

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章