LaTeX的IEEE模板,以及有用的链接

版权声明:本文为博主原创文章,未经博主允许不得转载。博客主页:http://blog.csdn.net/u013390476 https://blog.csdn.net/u013390476/article/details/52145100

虽然本人用Word用的挺不错的,但是正规学术文章必须用LaTeX。以下是一个IEEE的会议LaTeX模板。我加入了{CJK}包,这样可以写中文。学会用LaTex很重要:1)写国际论文都用这个;2)平时写课程报告用LaTex,逼格陡增~

\documentclass[10pt, conference, compsocconf]{IEEEtran}
\usepackage{CJK}

\hyphenation{op-tical net-works semi-conduc-tor}

\begin{document}
\begin{CJK*}{GBK}{song}

\title{This is the title}

\author
{\IEEEauthorblockN{Caitao Zhan}
    \IEEEauthorblockA
    {
    School of Computer Science\\
    China University of Geoscience\\
    Wuhan, China\\
    caitaozhan AT 163.com
    }
}

\maketitle

\begin{abstract}
The abstract goes here. DO NOT USE SPECIAL CHARACTERS, SYMBOLS, OR MATH IN YOUR TITLE OR ABSTRACT.
\end{abstract}

\begin{IEEEkeywords}
component; formatting; style; styling;

\end{IEEEkeywords}

\IEEEpeerreviewmaketitle

\section{Introduction}
This demo file is intended to serve as a ``starter file''
for IEEE conference papers produced under \LaTeX\ using
IEEEtran.cls version 1.7 and later.


\subsection{Subsection Heading Here}
Subsection text here.


\subsubsection{Subsubsection Heading Here}
Subsubsection text here.

\section{Type style and Fonts}
Wherever Times is specified, Times Roman or Times New Roman may be used. If neither is available on your system, please use the font closest in appearance to Times. Avoid using bit-mapped fonts if possible. True-Type 1 or Open Type fonts are preferred. Please embed symbol fonts, as well, for math, etc.

\section{Conclusion}
The conclusion goes here. this is more of the conclusion

\section*{Acknowledgment}
The authors would like to thank...
more thanks here


\begin{thebibliography}{1}

\bibitem{IEEEhowto:kopka}
H.~Kopka and P.~W. Daly, \emph{A Guide to \LaTeX}, 3rd~ed.\hskip 1em plus
  0.5em minus 0.4em\relax Harlow, England: Addison-Wesley, 1999.

\end{thebibliography}

\end{CJK*}
\end{document}

将上述LaTeX编译,转换成PDF之后,长这样子

猜你喜欢

转载自blog.csdn.net/u013390476/article/details/52145100
今日推荐