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

雖然本人用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之後,長這樣子

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