Overleaf & LaTex__编辑指南

参考指南🧭:https://www.overleaf.com/learn/latex/Learn_LaTeX_in_30_minutes
中文入门指南:https://zhuanlan.zhihu.com/p/513218186
基本使用命令:https://blog.csdn.net/Gentleman_Qin/article/details/79963396

在线latex公式编辑器:https://www.latexlive.com/

在线latex表格编辑:https://tableconvert.com/zh-cn/latex-generator

免费绘制思维导图:https://www.figma.com/

如何设置引用

找到对应文献的BibeX链接,然后复制在overleaf新建的.bib文件中,然后最.tex中对应字段部份\cite{作者}就好了,然后在末尾添加下列代码就行了

\bibliographystyle{plain} % 这里是你选择的参考文献样式,例如 "plain""unsrt""alpha""abbrv" 等等。
\bibliography{reference} % 这里 "reference" 是你的 .bib 文件的名称(不包括扩展名)

如何添加图片:

在.tex想要添加图片的位置加上如下代码即可,注意主文件要声明\usepackage{graphicx}

\begin{figure}[htp]
    \centering
    \includegraphics[width=12cm]{mind.jpg}   %[设置宽度]{图片名称}
    \caption{Overview of the research}     %图片命名
    \label{fig:diagram}
\end{figure}
滚动至顶部