Overleaf paper writing English scientific paper reference

introduction

As a scientific researcher, the author recently used overleaf to write the first paper. This process encountered many obstacles, so I wrote this blog to record the following methods of using overleaf.

1. Create a project

First, open the overleaf website overleaf official website . After registering an account, enter my project. Usually writing a paper requires using the latex template of a specified conference or journal. In this article, we practice by using a latex template downloaded from the Internet.

Click Create New Project -> Upload Project -> Select the downloaded latex template compression package to generate a new project with template format.

Second title modification

exist

\begin{document}

Start writing your dissertation below.

Find \title in the file with the .tex suffix to modify the title of the thesis. The author’s information is modified in a similar way, so I won’t go into details here.

Three frame combing

In most latex templates, most of them are a tex file containing the content of this thesis, which makes our project framework not very obvious. An additional folder can be created under the project to store the content of the thesis.

As shown in the figure below, it can be seen that this part includes abstract, keywords, introduction and ease of use.

We can replace this part with the following code.

\input {路径}
如:\input {abstract}
    \input {sections/introduction}

In your project, create a folder called sections.

Then create a new file called introduction in sections.

At the same time, create a keywords and abstract file in the main directory. The structure after the file is created is shown in the figure below.

In order to improve the recognition, we write the content in three new files.

The introduction part also needs to add "\section{Introduction}" in the first line, and then write the text content.

Abstract and keywords do not need to add \section code, just write the content directly.

Next, modify the previously mentioned code to:

Click Recompile, and the PDF of the thesis becomes as shown below. As you can see, the changes we made are all valid.

Four Heading Format

List some code formats for different headings

first level title

\section{Content}

secondary title

\subsection{content}

black body

\textbf{content}

编写如下代码,注意latex中空一行是回车,所以要记得空行。

五 公式

公式可以通过编辑网站或是自己写都可以。

大致操作如下图所示,其中label是公式的编号。

六 图片

latex的图片最好保存pdf格式,jpg和png不是很清楚。

在项目中新建一个fig文件夹,上传已经转换pdf的test图片。

如下是插入图片的代码,当figure*时是全屏居中,没有*则是在本列展示。

 \begin{figure*}[htp]
    \includegraphics[width=\linewidth]{fig/test.pdf}
    \caption{xxxxxx.}
    \label{test.pdf}
\end{figure*}

效果图:

七 参考文献

参考文献通常在搜索文献时有引用,点击引用选择latex版本。

很多latex模板的参考文献格式不一样,就不细说了。

主要是在引用时使用\cite{}.

八 其他说明

列举一些注意事项。

回车

空一行

字符表示

$对应字符$

另外,伪代码编写就不说明了,网上例子很多。

Guess you like

Origin blog.csdn.net/qq_43604183/article/details/129302631
Recommended