賈維斯的智慧工坊

  • Home
  • About
  • Note
  • Project
  • Experience
  • Service
  • Sitemap


MY | NOTES

  1. 首頁
  2. >
  3. 筆記
  4. >
  5. 排版系統

IEEE conference template
in LaTex

使用Latex套用IEEE格式
Jul, 2015

一、事前準備

一般電機電子的學術發表都以IEEE Xplore Digital Library為主
他們有提供Accessing the templates

下載LaTeX Archive Contents的Windows版後
壓縮檔IEEEtran中含有許多檔案

如果是要撰寫會議論文(Conf.)
只需要將IEEEtran.cls及bare_conf.tex
壓縮出來放到同個資料夾

所有格式都已經設定在IEEEtran.cls中
而我們使用bare_conf.tex去撰寫內容及可

二、習慣設定


1、進入WinEdt9 → Options → Excutions Modes
2、找到PDFLaTex (或PDFTeXify)
3、將Start Vierer打勾
4、每次輸出及可直接顯示PDF擋


完成以上步驟,及可在上圖框起來的地方
選擇PDFLaTex (或PDFTeXify),並點擊按鈕
及 tex → PDF
不用經過DVI或PS

三、開始編輯

此種編輯模式的圖片只能用PDF檔(放入同路徑資料夾)
若使用EPS檔要在前面引入

\usepackage{epstopdf}

而我們可以清楚看到
由IEEE提供的tex檔中已經清楚分類段落

\begin{document}

%標題
\title{Optimal Path Planning with Static and Dynamic Obstacles by the Neural Network}

%作者
\author{
     \IEEEauthorblockN{Yi-Wen Chen}
     \IEEEauthorblockA{
          Department of Electrical Engineering,\\
          Yuan Ze University\\
          Taoyuan 32003, Taiwan\\
          yiwen1210.chen@gmail.com\\
     }
     \and
     \IEEEauthorblockN{Yi-Wen Chen}
     \IEEEauthorblockA{
          Department of Electrical Engineering,\\
          Yuan Ze University\\
          Taoyuan 32003, Taiwan\\
          yiwen1210.chen@gmail.com\\
     }
     }
}

% make the title area
\maketitle

%abstract
\begin{abstract}
\end{abstract}

%introduction
\section{Introduction}
\end{Introduction}

%your section \section{System Model and Proposed Framework}
\subsection{Subsection Heading Here}
Subsection text here.

\subsubsection{Subsubsection Heading Here}
Subsubsection text here.


%reference
\cite{paper name}
\begin{thebibliography}{100}

     %conf. paper
     \bibitem{RRT with BSpline}
          E.-H. Shan, B. Dai, J. Song and Z.-P. Sun,
          ``A dynamic RRT path planning algorithm based on B-Spline,'' in Proc.
          {\it International Symp. on Computational Intelligence and Design,}
          Changsha, China, Dec. 12-14, 2009, pp. 25-29.


     %journal paper
     \bibitem{RRT transition}
          L. Jaillet, J. Cortés and T. Siméon,
          ``Sampling-based path planning on configuration-space costmaps,''
          {\it International Trans. on Robotics,}
          Vol. 26, no. 4, pp. 635-646, Aug. 20010.
\end{thebibliography}

\end{document}


一開始的架構並沒有keywords,我們可以自己加入

\begin{IEEEkeywords}
\end{IEEEkeywords}

Reference

1、Manuscript Templates for Conference Proceedings

← Back to note