关于overleaf的一些坑
秋诗关于overleaf的⼀些坑
1. 中⽂显⽰
(1)导⼊包\usepackage[UTF8]{ctex}
(2)编译器选择XeLaTeX
2. ⾃动⽣成参考⽂献
(1)导⼊包\usepackage[sorting=none]{biblatex}。其中,[sorting=none]是为了让⽂献以正⽂引⽤顺序显⽰。
(2)加⼊bib源\addbibresource{reference.bib}。其中,reference.bib是你⾃⼰创建的⽂献,⾥⾯包含bibTex格式的引⽤信息。⽐如:
@inproceedings{引⽤标识(⾃定义),
title={论⽂题⽬},
游戏全屏设置author={论⽂作者},
booktitle={书的标题},
pages={页码范围},
year={年份},
organization={组织}
}
(3)正⽂使⽤\cite{引⽤标识}进⾏⽂献引⽤。
(4)在\end{document}之前加上\printbibliography[title={参考⽂献}]进⾏参考⽂献⽬录显⽰。其中,[title={参考⽂献}]是为了改变参考⽂献的标题”Reference“为”参考⽂献。
只有当正⽂引⽤了,相对应的⽂献才能显⽰出来。
(5)\package{bibtex}与\package{cite}不兼容。
3. 关于图⽚显⽰
(1)先定义图⽚:
\begin{figure}[!t]凭证纸尺寸
\centering
\includegraphics[width=3.5in]{图⽚⽂件名}
\caption{图注}
\label{图⽚标识(⾃定义)}
\end{figure}
(2)再通过\ref{图⽚标识}引⽤图⽚。
(3)图⽚占两栏:
\begin{figure*}[!t]
\centering
\includegraphics[width=7in]{图⽚⽂件名}
\caption{图注}
\label{图⽚标识(⾃定义)}
\end{figure*}
4. 整个⽂章的⼤致模板
\begin{document}
\title{⽂章标题}
\author{作者, 机构thanks{脚注1}\thanks{脚注2}}
\markboth{页眉}
{Shell} % 这个不知道⼲嘛的,但是不加会出错
\maketitle
\begin{abstract}
这⾥写摘要
\end{abstract}
\section{章名}
\subsection{节名}
\subsubsection{段名}
狼的翻译文言文翻译
\printbibliography
\textsl{斜体,中⽂会显⽰楷体}
%公式
\begin{equation}
公式⾃动带标号
\end{equation}
\begin{equation}
\begin{aligned}
可以对多个公式进⾏对齐,多个公式共⽤⼀个标号 \end{aligned}
\end{equation}
炸酱面的家常做法
\begin{align}
可以对多个公式进⾏对齐,每个公式都有⼀个标号\end{align}
$
\pmb{加粗}馒头的做法
\mathbb{R}
\times 乘号
\mathcal{花体字母}
$
\newpage % 换栏
\clearpage % 换页
\end{document}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。