http://quicklatex.blogspot.kr/search?updated-max=2011-12-30T21:18:00-08:00&max-results=7에서
latex 공부 하다가
—————————————————
\documentclass[conference]{IEEEtran}
\usepackage{cite}
\begin{document}
\title{Sample IEEE paper style using Latex by QuickLatex.blogspot.com}
\author{\IEEEauthorblockN{Author first, Author Second, and Suthor Third}
\IEEEauthorblockA{Department of Latex Typeset\\
Latex University\\
City – State – Zip \\
Email: latex@latex.lates}
}
\maketitle
\begin{abstract}
This is an abstract for a paper to show how to use latex for IEEE paper typeset.
\end{abstract}
\section{Introduction}
\label{sec:intro}
Here is a modified text sample for intro section using latex. This is how you refer a section in another section Section~\ref{sec:meth} …..
\section{Methodologies}
\label{sec:meth}
This is the other section that you can use.
\end{document}
—————————–
이 예제를 컴파일 하려 했더니,
! LaTeX Error: File `IEEEtran.cls’ not found.!!!!!!!!!
정말 나에게 어쩌라는 건지,
본론에 들어가기 앞서 약간의 수다를 해보자면
내가 이해한 바로는
IEEEtran : ieee라는 단체에서 제공하는 latex document class이다….
맨 첫 줄에서 그것을 사용하겠다고 명시하게 되면,
\documentclass[conference]{IEEEtran}
글자 크기, 글자체 등 ieee단체에서 생각하는 latex로 학술적인 글을 쓸 때 아주 기본적으로
갖추어 져야 할 것 들을 한번에 적용할 수 있게 해 주는 어떤 것.. 이라고 생각한다.
그리고 나에게 latex을 공부하라고 하신 교수님 왈
ieee홈페이지에 있는 latex 관련 것? 들을 공부하면
latex을 쓰는데 기본적인 것들은 다 알 수 있을 것이다..
라고 했었었다.
그러나
1. 전부다 영어이고.
2. 어떤 걸 어떻게 봐야 하는지 모르겠고,
3. http://www.ieee.org/conferences_events/conferences/publishing/templates.htm무엇이든 시작을 해 보려고 위의 링크로 들어가서 unix를 위한 것들은 다 다운 받았는데,
그 다음에 또 어찌 해야 하는지 전혀 알 수 없었다.
결국, ieee에 관한 것을 잊고 latex를
필요한 것들 위주로 하나 하나 찾아가며
공부해 보자.. 라고 생각해서 찾은 것이 맨 위에 있는 링크의 블로그였다!!
그런데!! 그런데!!
또다시 ieee가 나를 괴롭히다니 ㅠㅠ….
이제 다시 본론으로 돌아와서.
찾고 찾아서!!
위의 있는 코드의 컴파일에 성공했다!! ㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠ
그 방법은 이러하당!!
http://blog.bigyanbhar.com/2010/05/ieee-formatting-in-latex.html
- Download the template from the IEEE Manuscript Template page. Presently the file-name for Unix is “IEEEtran2.tar.gz”.
- Extract this file in a folder IEEEtran.
- Within that create a subdirectory “bibtex”
- Download the bibtex file “IEEEtranBST1.tar.gz” from the same IEEE Manuscript Template site to this directory and extract.
- For Ubuntu users:
- For Fedora users:
- Run “texhash”, (this would require root privileges) or use sudo if its available.
- Move IEEEtran directory to /usr/share/texmf-texlive/tex/latex/
- Move IEEEtran directory to /usr/share/texmf/tex/latex
단, opensuse의 경우
terminal 에서
$ su
root로 들어간 다음
IEEEtran directory를 /usr/share/texmf/tex/latex/에 위치 시켰다!!
그리고 7번을 실행 !!
그러면 완료!!
위의 코드가 컴파일 된다!! ^^ 끝!