寫論文時遇到的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

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章