本周暑期课程大作业需要使用Latex模板,采用的是老师给的IEEE的格式。从最开始不知道Latex是什么,到摸索着把大作业的小论文排版完成,其中也有一些心得体会。写在这里记录一下,以便以后回来再看,有更多的思考沉淀。
1、开始的\usepackage{cite}
是引入一些模板样例。后面方便直接调用格式。
2、文章以\begin{document}
开头,\end{doucument}
结尾。 \title \author 之类的标签,表示文章标题、作者。
3、我采用的IEEE模板以\section{}表示一级标题,会自动标明序号;\subsection{}表示二级标题,无序号;插入图片的代码如下:
\begin{figure}[htbp]
\centering
\includegraphics[scale=0.3]{eps/figure1.eps}
\caption{Traditional streaming with RTSP}
\label{figure}
\end{figure}
4、文章想要分点陈述的样式如下所示:
可以使用以下样式:
\begin{itemize}
\item HTTP simplifies the implementation of traversing NAT and firewalls.
\item Traditional Web servers and network caches (such as CDN) can be used.
\item The client maintains the playback session status, and the server does not need to maintain any status, so the client can download videos from different servers without affecting the scalability of the system.
\item There is no need for a persistent connection between the client and the server, which improves the scalability of the system and reduces the implementation and deployment overhead.
\item HAS allows the client to request videos with different bit rates according to network changes, which improves bandwidth utilization and improves QoE.
\end{itemize}
5、 图片如果采用eps格式,可以使用cmd进行转换。
首先打开png或jpg图片所在文件夹,在该文件夹下打开cmd窗口;然后输入以下代码:
bmeps -c 原始图片名字.png 转换后的图片名字.eps
其中参数解释如下:
`bmeps -c 原始图片名字.png 转换后的图片名字.eps`
bmeps其实是LaTeX编译器自动的工具,这里直接调用;
-c参数是代表彩色图片;
picturename.png是需要转换的png图片;
picturename.eps是转换后的eps图片。
6、公式输入有很多种方法,我在这里使用的是equation标签方法。
\begin{equation}
\begin{split}
{c}Q o E_{1}^{K} = \sum_{k = 1}^{K} q\left(R_{k}\right)-\lambda \sum_{k = 1}^{K-1}\left|q\left(R_{k+1}\right)-q\left(R_{k}\right)\right|-\\\mu \sum_{k = 1}^{K}\left(\frac{d_{k}\left(R_{k}\right)}{C_{k}}-B_{k}\right)_{+}-\mu_{s} T_{s}
\end{split}
\end{equation}
公式显示出来是
右边编号自动给出,\\双斜杠可以换行。
7、引用统一使用bib文件,好像是要通过多次编译才能把引用放到正文中(应该各两次编译)。引用 标签为:
\bibliographystyle{IEEEtran} %表示采用的是IEEE引用格式
\bibliography{mybib} %mybib.bib文件是我的引用文献所在文件
bib文件中的文献格式可以直接上谷歌学术,查询到文献后
点击引用的双引号,可以弹出各种引用格式
点击下方的BibTex即可获取bib格式的文献引用格式。
@article{evangelista2022sigcom,
title={SigCom LINCS: data and metadata search engine for a million gene expression signatures},
author={Evangelista, John Erol and Clarke, Daniel JB and Xie, Zhuorui and Lachmann, Alexander and Jeon, Minji and Chen, Kerwin and Jagodnik, Kathleen M and Jenkins, Sherry L and Kuleshov, Maxim V and Wojciechowicz, Megan L and others},
journal={Nucleic acids research},
volume={50},
number={W1},
pages={W697--W709},
year={2022},
publisher={Oxford University Press}
}
至此本次Latex使用就完成了。之后肯定还会用到,也有很多需要学习的地方,标题就取位Latex使用心得1吧,留有余地,之后再次学习进步。