1 / 15

LaTeX

LaTeX. R01942068 賴威 昇 2012.10.26. Outline. Introduction Why using LaTeX ? LaTeX usage: Backbone Equation Figure Table BibTex Compile Conclusion. Introduction. Donald E. Knuth. Introduction. Typesetting System Produce high-quality papers, books *. tex → *. pdf

britain
Télécharger la présentation

LaTeX

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. LaTeX R01942068 賴威昇 2012.10.26

  2. Outline • Introduction • Why using LaTeX? • LaTeX usage: • Backbone • Equation • Figure • Table • BibTex • Compile • Conclusion

  3. Introduction • Donald E. Knuth

  4. Introduction • Typesetting System • Produce high-quality papers, books • *.tex→ *.pdf • Make typesetting like coding • More: • LaTeX • XeLaTeX • MikTeX

  5. Why using LaTeX ? • Elegant mathematical formula • Easier to write paper !! • Most conferences have LaTeX template. • Don’t worry about: • Text format, font type, size • Line spacing problem when writing equation • Picture and table location • Equation, figure, citation number • Citation format - Bibtex

  6. LaTeX Backbone \documentclass[conference]{IEEEtran} \usepackage{…} … \set… \title{…} \author{ author1 information \\ author2 information \\ }

  7. LaTeX Backbone \begin{document} \maketitle \begin{abstract} … \end{abstract} \section{Introduction} … \section{…} \subsection{…} \subsubsection{…} \end{document}

  8. Equation \begin{equation} \label{eq_P} P = b_1 \cdotP_1 + b_2 \cdotP_2 \end{equation} The function \eqref{eq_P} …

  9. Figure \begin{figure}[t] \centering \includegraphics[width=…]{….jpg} \caption{…} \label{fig:…} \end{figure}

  10. Table \begin{table}[t] \centering \begin{tabular}{|c||c||c|} \hline A1 & A2 & A3 \\ \hline\hline B1 & B2 & B3\\ C1 & C2 & C3\\ \hline \end{tabular} \caption{An Example of a Table} \label{table_example} \end{figure}

  11. Citation - BibTeX \bibliographystyle{IEEEtran} \bibliography{IEEEreference} • IEEEreference.bib • Download Citation:

  12. Reference - BibTeX @inproceedings{paper_A, author = {Bruce D. Lucas and Takeo Kanade}, title = {Optical … booktitle = {IJCAI}, year = {1985}, pages = {981-984} } • Lucas et al. proposed … \cite{paper_A}

  13. Compile • In cmd or terminal: $ xelatex –interaction=nonstopmodeieee.tex • If including BibTex: $ xelatex-interaction=nonstopmodeieee $ bibtexieee $ xelatex-interaction=nonstopmodeieee $ xelatex-interaction=nonstopmodeieee • Texmaker

  14. Conclusion • Good for writing papers ! • More beautiful than MS Word ! • Poor Chinese support • Difficult to getting start • Too many setting if writing general report

  15. Thank for listening !

More Related