$\rm{}$ | 正体 |
$\bf{}$ | 粗体 |
$\it{} | 斜体 |
\begin{equation}\label{} \end{equation} | 公式 |
'\ref{}' | 引用 |
'\eqref{}' | 带括号引用公式 |
\begin{equation}\label{} \begin{aligned} ...=&.. &... \end{aligned} \end{equation} | 公式等号处对齐 |
\texatasciiticle, $\sim$ | 波浪线 |
$\times$ | 乘号 |
\begin{figure}[] figure*占两栏 \small \centering \includegraphics[width=1cm,height=10cm]{F1.pdf} \caption{标题} \label{标签} \end{figure} | 插入图片 |
\cite{} | 引用参考文献 |
\bibliographystyle{IEEEtran(参考文献格式)} \bibliography{ref(bib文件名)} | 添加参考文献 |
\allowdisplaybreaks[4] . . . \begin{align*} 公式 \end{align*} | 跨业公式 |
\begin{table*}[t]带星通栏,不带星单栏 \end{table*} | 插入表格 通栏表格想插到页顶,需要提前一页 |
Create LaTeX tables online – TablesGenerator.com | Tables Generator 网络,可以帮助我们快速生成表格代码 |
$\pm$ | ![]() |
\% , \_ | 百分号,下划线 |
论文结尾插入作者照片,右键点图片(事先转成灰度照片)选(bitmap2eps.exe) | |
插入子图用subfigure \begin{figure}[t] \subfigure[]{\includegraphics[width=3cm,height=3.2cm]{images//jjs.pdf}} 插入分组子图用minipage(比如三组图片希望同时出现在一页) 多个表格希望时同出在一个table内用多个tabular | |
bib 参考文献作者姓名: 姓,名 and 姓,名 and... 或者 名 姓 and 名 姓 | 论文参考文献处就会显示成名首字母加点在前,姓在后的形式 (不确定对不对) |
在文章末尾添加 \begin{IEEEbiography}[{\includegraphics[width=1in,height=1.25in,clip,keepaspectratio]{images\\Robot_Starscream.pdf}}]{name} 作者简介 \end{IEEEbiography}由于内容太多老是自动跳到下一页或右栏,可以将简介内容拿出一部分来,放到\newpage后面 再参考 LaTeX基础四:字体字号设置 - shawncheer - 博客园 改变字号 有必要再参考 https://jingyan.baidu.com/article/948f5924e1ac52d80ef5f966.html 调整文字间隔就好 | |
直接在下载学术网站论文引用的bib文件时 会有@article和@inproceedings @article 内用journal={} @inproceedings 内用booktitle={} | 如果用反了可能会使参考文献显示不出期刊和会议,注意检查(猜的) |
\addtocounter{equation}{+1} | 公式序号加1 |
\begin{itemize} \item[$\bullet$] \item[$\bullet$] \item[$\bullet$] | 列举 |
| 列举 |
\appendices \section{A} \section{B} | 附录 |
\section*{标题} | 无标号章节 |
https://jingyan.baidu.com/article/f3e34a128c53aef5ea653542.html | 输入矩阵 |
\usepackage[numbers,sort&compress]{natbib} 正文中\cite{1,2,5,7,8,9} | 引用多篇参考文献效果[1,2,5,7-9] |
\usepackage{stfloats} \begin{table*}[bp] \newcommand{\tabincell}[2]{\begin{tabular} {@{}#1@{}}#2\end{tabular}} \centering \resizebox{180mm}{25mm}{ \begin{tabular}{c} \toprule \begin{math} \begin{aligned} \mathbf{T} &=\left\langle\mathbf{k}_{p} \bullet \mathbf{k}_{p}^{* \top}\right\rangle=\left[\begin{array}{ccc} | 页面底部放表格,表格内插入数学公式(效果自己试) |
\sum\nolimits_{j=1}^{M} 上下标位于求和符号的水平右端, \sum\limits_{j=1}^{M} 上下标位于求和符号的上下处, \sum_{j=1}^{M} 对上下标位置没有设定,会随公式所处环境自动调整。 | 求和符号上下标位置 |
各种空格 | |
\usepackage{algorithm} \usepackage{algorithmicx} \usepackage{algpseudocode} \renewcommand{\algorithmicrequire}{\textbf{Input:}} % Use Input in the format of Algorithm \renewcommand{\algorithmicensure}{\textbf{Output:}} % Use Output in the format of Algorithm \begin{algorithm}[t] \caption{Stage-wise Training} \label{A1} \begin{algorithmic}[1] \Require {Training dataset $\Omega$} \Ensure The learned PolMPCNN \State{\textbf{X} and \textbf{Y} represent a two-scale training sample and its one-hot encoding label from $\Omega$, respectively;} \State $\lambda$ represents the training weight of \textit{X}; | 插入伪代码; 换行对齐 |
\begin{table}[h]\label{T1} | 标题前后空白 |
| 文字中间插入图片 |
\section*{Checklist} | 标题不带标号 |