我之前把Markdown和LaTeX的语法写在一个博文里了,但是现在感觉还是应该拆开来比较合适,因为LaTeX太复杂了……
LaTex核心其实是套模板,但是为了套好模版,也需要学习一些具体的语法。
我一般用的编辑器是在线的Overleaf, Online LaTeX Editor或者离线的TeXLive原生编辑器、或者VSCode。overleaf其实用的也是TeXLive,但是用法跟TeXLive不一样。编辑器指的是这个,compiler/编译器指的是pdfLaTeX etc. 见后文。
TeXLive和结合VSCode的安装教程:使用TeXLive+VSCode实现Windows系统本地读写、编译LaTeX文件
overleaf中可以从零开始新建LaTeX项目,也可以上传zip压缩包上传LaTeX项目。
在项目中,menu:
点击这里编译,或者Ctrl + S自动编译:
安装好TeXLive后会默认用TeXWorks打开.tex
文件,点击这个位置进行编译:
点击这个位置进行编译,或者默认设置保存时自动编译:
(具体的标题都是可以改的,文件名后缀不能改)
main.tex
:主LaTeX代码文件,在这个文件里面设置LaTeX排版布局、写内容等。也可以放在其他文件里面,然后在main.tex
里面引用reference.bib
:如果用的是BibTeX,会引用BibTeX格式的参考文献,放到reference.bib
里,然后在main.tex
中引用。LaTeX文件的整体格式:
\documentclass{...}
到\begin{document}
之间的部分称为导言区,此部分通常用于全文样式设定\textbf{文字}
\emph{文字}
或 \textit{文字}
underline{文字}
或者uline{文字}
(可以换行)1\href{链接}
\url{链接}
或 \href{链接}{显示文字}
2\footnote{脚注文字}
\
就能使其不产生渲染效果我一般用的是pdfLaTeX或者XeLaTeX。不过一般来说其实是看原模版用的是什么格式,就用什么格式。
在想要被注明的文字后加\cite{id}
,在文末添加\bibitem{id}: 参考文献
或使用bib文件。
还有2种做法是\citep{}
和\citet{}
,但是我至今还不知道区别是啥……
使用bib的操作:以Re5:读论文 TWAG: A Topic-guided Wikipedia Abstract Generator_诸神缄默不语的博客-CSDN博客这篇论文为例,在其论文ACL官网TWAG: A Topic-Guided Wikipedia Abstract Generator - ACL Anthology上可以下载到bib格式的引用文献:
@inproceedings{zhu-etal-2021-twag,
title = "{TWAG}: A Topic-Guided {W}ikipedia Abstract Generator",
author = "Zhu, Fangwei and
Tu, Shangqing and
Shi, Jiaxin and
Li, Juanzi and
Hou, Lei and
Cui, Tong",
booktitle = "Proceedings of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing (Volume 1: Long Papers)",
month = aug,
year = "2021",
address = "Online",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2021.acl-long.356",
doi = "10.18653/v1/2021.acl-long.356",
pages = "4623--4635",
abstract = "Wikipedia abstract generation aims to distill a Wikipedia abstract from web sources and has met significant success by adopting multi-document summarization techniques. However, previous works generally view the abstract as plain text, ignoring the fact that it is a description of a certain entity and can be decomposed into different topics. In this paper, we propose a two-stage model TWAG that guides the abstract generation with topical information. First, we detect the topic of each input paragraph with a classifier trained on existing Wikipedia articles to divide input documents into different topics. Then, we predict the topic distribution of each abstract sentence, and decode the sentence from topic-aware representations with a Pointer-Generator network. We evaluate our model on the WikiCatSum dataset, and the results show that TWAG outperforms various existing baselines and is capable of generating comprehensive abstracts.",
}
将这个文本文件存储为bib文件,如bibexample.bib。以overleaf为例,上传该文件,在正文中引用时调用\cite{zhu-etal-2021-twag}
,在后文参考文献部分调用:
\bibliographystyle{IEEEtran}
\bibliography{IEEEabrv,bibexample}
\nocite{zhu-etal-2021-twag}
事实上相当于自动写了bibitem
后面的参考文献格式。
如果需要引用多条参考文献,就在bib文件后面继续叠bibtext格式文献条目就行。
如果只有ris格式的参考文献,将其转换为bibtex可以使用:Online RIS to BibTeX converter3
对于nbib格式的文件,可以在这个网站上搜索论文标题,下载对应的bib文件:TeXMed - Exporting PubMed to BibTeX4
\begin{table}[]
\begin{tabular}{lllll}
1 & 2 & 3 & 4 & 5 \\
1 & 2 & 3 & 4 & 5 \\
9 & 8 & 9 & 7 & 6 \\
1 & 2 & 3 & 4 & 5
\end{tabular}
\end{table}
\hline
\cline{i-j}
\toprule
,第二条是\hline
,第三条是\bottomrule
\begin{tabular}
后面加竖线,比如{ll}
就是两行无竖线,{|l|l|}
就是全加竖线。l
改成p{10em}
(这个数字就是宽度,单位可以改成in之类的)\\
换行,&
跳到下一单元,这一点跟数学公式里画矩阵时的操作比较像\begin{table*}[!ht]
\centering
\caption{表格上方的标题}
\begin{tabular}{p{8em}p{7em}p{7em}p{8em}p{7em}}
\toprule
表头 & 表头 & 表头 & 表头 & 表头 \\ \hline
内容 & 内容 & 内容 & 内容 & 内容 \\ \bottomrule
\end{tabular}
\begin{tablenotes}
\footnotesize
脚注内容\\
会显示在表格下方
\end{tablenotes}
\label{这个是~\ref{这个花括号里面就写这个label花括号里面的内容}}
\end{table*}
官方介绍:Chinese - Overleaf, Online LaTeX Editor
总之很复杂,据我观察,这是需要根据每个模板不同的情况来进行具体调整的。以爱思唯尔的https://www.overleaf.com/latex/templates/elsevier-article-elsarticle-template/vdzfjgjbckgz为例,想要在LaTeX中渲染中文,需要在导言区加:\usepackage{CJKutf8}
然后在\begin{document}
后加:\begin{CJK*}{UTF8}{gbsn}
在\end{document}
前加:\end{CJK*}
然后就能渲染中文了
一般来说直接使用支持中文的模版就行
其他支持中文的包:
\usepackage{ctex}
LaTex{}
\textcircled{1}
\textbackslash
overleaf官方模版集合:Templates - Journals, CVs, Presentations, Reports and More - Overleaf, Online LaTeX Editor)
\ExecuteBibliographyOptions{sorting=none}
,sorting方式的选择参考:(图源6)\RequirePackage{fontawesome5}
(参考标题前的小图标有哪些可选 · Issue #26 · billryan/resume)我还没看过: