【科研利器】overleaf

@科研利器

利用overleaf编写latex文章

一直被同学说latex多么多么好,省得排版啥的,寒假自己也琢磨琢磨,发现了一个可以在线编辑latex的工具——overleaf,炒鸡好用。目前我还处于摸索阶段,下面简单分享下使用过程。

编写文章前的准备

账号

overleaf是在线编辑的工具,写的文章会直接上传至云上,因此需要去官网创建个账号。
网址是:https://www.overleaf.com/ 或者点击overleaf

【科研利器】overleaf_第1张图片

设置中文模板

刚注册好之后会给提供一个英文模板,直接替换成中文的话不会显示,这有个小方法。
1.点击menu
【科研利器】overleaf_第2张图片
2.切换编码模式
【科研利器】overleaf_第3张图片
换成XeLaTex,这样就可以编辑中文了
(其他方法)CSDN上还有很多别的设置,我暂时还没看到。
3.分享个简单的中文模块,这个用来测试各个操作。

\documentclass{article}

\usepackage{ctex}
\usepackage{graphicx}
\usepackage{float}
\usepackage{datetime}

\title{LaTeX快速入门}
\author{xxx}
\date{\today}

\begin{document}
\maketitle
hello!LaTeX

\part{part标题}
\section{section标题}
\subsection{subsection标题}
\subsubsection{subsubsection标题}
\paragraph{paragraph标题}
\subparagraph{subparagraph标题}

\begin{thebibliography}{99}
\bibitem{1} 参考文献1
\bibitem{2} 参考文献2
\end{thebibliography}

\begin{appendix}
\section{附录1}
\section{附录2}
\end{appendix}

\end{document}

效果的话前面两张截图可以看到的

你可能感兴趣的:(视觉惯性导航,其他)