/
LaTeX LaTeX

LaTeX - PowerPoint Presentation

ellena-manuel
ellena-manuel . @ellena-manuel
Follow
457 views
Uploaded On 2017-05-12

LaTeX - PPT Presentation

R01942068 賴威 昇 20121026 Introduction Why using LaTeX LaTeX usage Backbone Equation Figure Table BibTex Compile Conclusion Outline 2 Donald E Knuth Introduction 3 ID: 547414

amp latex bibtex table latex amp table bibtex ieee figure xelatex hline interaction nonstopmode citation writing label equation introduction

Share:

Link:

Embed:

Download Presentation from below link

Download Presentation The PPT/PDF document "LaTeX" is the property of its rightful owner. Permission is granted to download and print the materials on this web site for personal, non-commercial use only, and to display it on your personal computer provided you do not modify the materials and that you retain all copyright notices contained in the materials. By downloading content from our website, you accept the terms of this agreement.


Presentation Transcript

Slide1

LaTeX

R01942068

賴威

2012.10.26Slide2

Introduction

Why using

LaTeX ?LaTeX usage:BackboneEquationFigureTableBibTexCompileConclusion

Outline

2Slide3

Donald E. Knuth

Introduction

3Slide4

Typesetting System

Produce high-quality papers, books

*.tex → *.pdfMake typesetting like codingMore:LaTeXXeLaTeXMikTeXIntroduction

4Slide5

Elegant mathematical formulaEasier to write paper !!

Most conferences have

LaTeX template.Don’t worry about:Text format, font type, sizeLine spacing problem when writing equationPicture and table locationEquation, figure, citation numberCitation format - BibtexWhy using LaTeX ?5Slide6

LaTeX Backbone

\

documentclass[conference]{IEEEtran}\usepackage{…}…\set…\title

{…}\author

{

author1 information

\\

author2 information

\\

}

6Slide7

\begin

{document}

\maketitle\begin{abstract}…\end{abstract}\section{Introduction} …\section{…}\subsection

{…}\

subsubsection

{…}

\end

{document}

LaTeX

Backbone

7Slide8

Equation

\begin

{equation} \label{eq_P} P = b_1 \cdot P_1 + b_2 \cdot

P_2

\end

{equation}

The function

\

eqref

{

eq_P

} …

8Slide9

Figure

\begin

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

\end{figure}

9Slide10

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}

10Slide11

Citation - BibTeX

\

bibliographystyle{IEEEtran}\bibliography{IEEEreference}IEEEreference.bibDownload Citation:

11Slide12

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

}

12Slide13

In cmd or terminal:

$

xelatex –interaction=nonstopmode ieee.texIf including BibTex:$ xelatex -interaction=nonstopmode ieee

$

bibtex

ieee

$

xelatex

-interaction=

nonstopmode

ieee

$

xelatex

-interaction=

nonstopmode

ieee

Texmaker

Compile

13Slide14

Good for writing papers !More beautiful than MS Word !

Poor Chinese

supportDifficult to getting startToo many setting if writing general reportConclusion14Slide15

Thank for listening !

15