LaTeX 의 장점
IEEE Template (IEEEtran.cls)
Space Saving
textfloatsep 은 텍스트와 Float 간의 간격을 조절해준다. Figure 와 텍스트간의 간격 조절이 수정된다. 뒤에 숫자가 10mm plus 5mm minus 2mm 이라는건 기본 10mm 에 상황에 따라 최대 15mm 까지 최소 8mm 까지 조절하라는 뜻.
Letter Size + Embedded All Fonts
US 는 대부분 A4 대신 Letter 크기를 많이 쓰고, IEEE 는 PDF 제출시 모든 폰트가 Embedded 되어 있어야 한다.
이를 위한 DviPs 와 Ghostscript (ps2pdf) 옵션들
dvips -Ppdf -G0 -tletter
gswin32c -sPAPERSIZE=letter -dPDFSETTINGS=/prepress -dEmbedAllFonts=true
Bookmark 막기
IEEE 는 Bookmark 가 들어가 있으면 안된다. (아니 대체 왜 !!)
hyperref 패키지를 쓰면 안된다.
Tight Equation: 편법으로 간격줄이기. Space 지정이 있을거 같은데 못 찾겠다. (아시는 분?)
ACM Template
Shared Affiliation
Tight Bibliography
각종 적어두면 좋은 것들
일반 Figure
Sub-Figure
Table: LaTeX Table 은 별로 안 이뻐서 테이블은 Word 에서 만들어서 그림으로 넣는다.
- 글씨체가 이쁘다. 한 줄에 들어가는 글자수 조절이 일정해 딱 보기에 아름답게 나온다.
- 수식이 이쁘다. 있어 보인다.
- Figure 위치 지정이 자동이다. 알아서 해준다. Word 는 텍스트 수정할 때마다 이리저리 날라다닌다.
- Template 바꾸기가 쉽다. IEEE, ACM 간에 템플릿 파일만 교체해주면 바로 모양 변경 !
- Bookmark 넣기가 편하다. Section, Figure, Equation, Reference 에 북마크 넣어주면 읽을 때 마우스 클릭만으로 휙휙 날아다닐수 있다.
IEEE Template (IEEEtran.cls)
Space Saving
// begin document 앞에다가 적기
\setlength{\textfloatsep}{0.6\baselineskip plus 0.1\baselineskip minus 0.1\baselineskip}
\setlength{\intextsep}{0.2\baselineskip plus 0.1\baselineskip minus 0.1\baselineskip}
\setlength{\abovedisplayskip}{8pt plus 2pt minus 2pt}
\setlength{\belowdisplayskip}{8pt plus 2pt minus 2pt}
\begin{document}
textfloatsep 은 텍스트와 Float 간의 간격을 조절해준다. Figure 와 텍스트간의 간격 조절이 수정된다. 뒤에 숫자가 10mm plus 5mm minus 2mm 이라는건 기본 10mm 에 상황에 따라 최대 15mm 까지 최소 8mm 까지 조절하라는 뜻.
Letter Size + Embedded All Fonts
US 는 대부분 A4 대신 Letter 크기를 많이 쓰고, IEEE 는 PDF 제출시 모든 폰트가 Embedded 되어 있어야 한다.
이를 위한 DviPs 와 Ghostscript (ps2pdf) 옵션들
dvips -Ppdf -G0 -tletter
gswin32c -sPAPERSIZE=letter -dPDFSETTINGS=/prepress -dEmbedAllFonts=true
Bookmark 막기
IEEE 는 Bookmark 가 들어가 있으면 안된다. (아니 대체 왜 !!)
hyperref 패키지를 쓰면 안된다.
Tight Equation: 편법으로 간격줄이기. Space 지정이 있을거 같은데 못 찾겠다. (아시는 분?)
// before
\begin{center}
$S_i=\sum_{j=1}^{m}(p_{ij}S_{ij})$,
\end{center}
// after
\vspace{-4pt}\begin{center}
$S_i=\sum_{j=1}^{m}(p_{ij}S_{ij})$,\vspace{-4pt}
\end{center}
모양새는 이렇게ACM Template
Shared Affiliation
// begin document 앞에
\def\sharedaffiliation{%
\end{tabular}
\begin{tabular}{c}}
\begin{document}
\numberofauthors{4}
\author{
\alignauthor Yohan Chon\\
\email{user1@abc.xyz.ac.kr}
\alignauthor Elmurod Talipov\\
\email{user2@abc.xyz.ac.kr}
\alignauthor Hyojeong Shin\\
\email{user3@abc.xyz.ac.kr}
\and
\alignauthor Hojung Cha\\
\email{user4@abc.xyz.ac.kr}
\sharedaffiliation
\affaddr{Department of Computer Science } \\
\affaddr{Yonsei University} \\
\affaddr{Seoul, Korea}
}
모양새는 이렇다.Tight Bibliography
// begin document 앞에
\let\oldthebibliography=\thebibliography
\let\endoldthebibliography=\endthebibliography
\renewenvironment{thebibliography}[1]{%
\begin{oldthebibliography}{#1}%
\setlength{\parskip}{0ex}%
\setlength{\itemsep}{0ex}%
}%
{%
\end{oldthebibliography}%
}
\setlength{\parindent}{5mm}
\begin{document}
각종 적어두면 좋은 것들
일반 Figure
\begin{figure}
\centering
\epsfig{file=figure2.eps, width=7cm}
\caption{Ratio of residence-time in frequently visited place for all users.}
\label{fig:stay_in_place}
\end{figure}Sub-Figure
\usepackage[tight,footnotesize]{subfigure} // subfigure package 사용
\begin{figure}
\centering
\subfigure[ ]{
\includegraphics[width=7cm]{figure3a}
}
\subfigure[ ]{
\includegraphics[width=7cm]{figure3b}
}
\caption{Temporal regularity according to different types: (a) day, weekday, weekend, and (b) week bucket.}
\label{fig:temporal_regularity}
\end{figure}Table: LaTeX Table 은 별로 안 이뻐서 테이블은 Word 에서 만들어서 그림으로 넣는다.
\begin{table}
\centering
\caption{Description of data set}
\label{tab:data_set}
\epsfig{file=table1.eps, width=8cm}
\end{table}



