写论文时遇到的Latex问题

arXiv引用格式

以PRCV为例:
在这里插入图片描述
具体引用格式还要参考要投稿的会议或期刊。PRCV期刊只给了LaTex模板,没有ICIP等会议的详细要求,只好搜了去年的论文集看看先例了。

通讯作者

解决1:信封
在这里插入图片描述

\usepackage{marvosym}
\Letter

\usepackage{bbding}
\Envelope

解决2:*+脚注
在这里插入图片描述
在这里插入图片描述

\footnote{Corresponding Author.}

subcaption不兼容

报错信息:

Package caption Error: The `subcaption' package does not work correctly(caption) in compatibility mode. \begin{document}

解决1:可以设置兼容性的(模板没有自带subfig)

\usepackage{subcaption}
\captionsetup{compatibility=false}

参考链接:https://tex.stackexchange.com/questions/31906/subcaption-package-compatibility-issue
解决2:不使用subcaption,使用subfigure和subtable来解决子表和子图问题。(模板自带subfig,例如BMVC)

\begin{figure}[!htb]
	\begin{center}
		\subfigure[subcaption_name{\label{label_name}}]{\includegraphics[width=6cm]{images/img1}}\hfill
		\subfigure[subcaption_name{\label{label_name}}]{\includegraphics[width=6cm]{images/img2}}
	\end{center}
	\caption{The illustrations of the feedback mechanism in the proposed network.}
\end{figure}

图表居中显示

解决1:

\centering

解决2:

\begin{center}
	内容
\end{center}

赞助

对于题目不能用\thanks的,比如BMVC,可以写在最后的Acknowledgement,用\paragraph控制段落。

参考文献

按照引用的先后排序:
\bibliographystyle{unsrt}
按字母的顺序排列:
\bibliographystyle{plain}
比较次序为作者、年度和标题,其中作者中姓氏字母优先,如S. Zhang会排在 S. Li后边,姓名的书写顺序为名前姓后。
参考:https://blog.csdn.net/c_arm/article/details/7013144

发布了21 篇原创文章 · 获赞 9 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/sinat_27990891/article/details/88684345