Size: 1094
Comment:
|
Size: 2909
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 28: | Line 28: |
== Sample beamer presentation == File beamerTest.tex {{{#!highlight latex \documentclass{beamer} \usepackage{multimedia} \usetheme{Warsaw} \usepackage[english]{babel} \usepackage[latin1]{inputenc} \usepackage{colortbl} \usepackage{times} \usepackage[T1]{fontenc} \usepackage{epstopdf} \usenavigationsymbolstemplate{} \title{Test title} \author{John Doe} \institute{ACME Corp.} \date{2013-12-29} \begin{document} \begin{frame} \titlepage \end{frame} \begin{frame} \frametitle{Topics} \tableofcontents \end{frame} \section{Education} \begin{frame} \frametitle{Education} \end{frame} \subsection{BsC in Electrical and Computer Engineering} \begin{frame} \frametitle{BsC in Electrical and Computer Engineering} \begin{itemize} \item Degree: BsC in Electrical and Computer Engineering (Electronics and Computers branch) \end{itemize} \end{frame} \subsection{MsC in Computer Science and Computer Engineering } \begin{frame} \frametitle{MsC in Computer Science and Computer Engineering} \begin{itemize} \item Degree: MsC in Computer Science and Computer Engineering \end{itemize} \end{frame} \section{Professional experience} \begin{frame} \frametitle{Professional experience} \end{frame} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \section{Projects on ACME} \begin{frame} \frametitle{Projects on ACME} \end{frame} \subsection{Reporting} \begin{frame} \frametitle{Reporting} \begin{itemize} \item Goal: \item Technologies: \end{itemize} \end{frame} \section{Questions} \begin{frame} \frametitle{Questions} \begin{center} \Huge{?} \end{center} \end{frame} \end{document} }}} To create PDF file run '''pdflatex beamerTest.tex''' |
LaTex
LaTeX is a document preparation system for high-quality typesetting. It is most often used for medium-to-large technical or scientific documents but it can be used for almost any form of publishing.
LaTex, Tex Live on Apple Macintosh
Download the file mactex_basic.pkg file from http://mirrors.fe.up.pt/pub/CTAN/systems/mac/mactex/mactex-basic.pkg.
Install the file mactex_basic.pkg using the installer (in portuguese).
Click on Continue (Continuar in portuguese) throughout the wizard until the installation is complete.
After the installation open a terminal window
With super user rights run:
- sudo tlmgr update --all
- sudo tlmgr install beamer
- sudo tlmgr install subfig
- sudo tlmgr install europecv
The mentioned installs are for presentations (beamer), show figures (subfig) and create an european Curriculum Vitae.
Sample beamer presentation
File beamerTest.tex
1 \documentclass{beamer}
2 \usepackage{multimedia}
3
4 \usetheme{Warsaw}
5 \usepackage[english]{babel}
6 \usepackage[latin1]{inputenc}
7 \usepackage{colortbl}
8 \usepackage{times}
9 \usepackage[T1]{fontenc}
10 \usepackage{epstopdf}
11
12 \usenavigationsymbolstemplate{}
13 \title{Test title}
14 \author{John Doe}
15 \institute{ACME Corp.}
16 \date{2013-12-29}
17
18 \begin{document}
19
20 \begin{frame}
21 \titlepage
22 \end{frame}
23
24 \begin{frame}
25 \frametitle{Topics}
26 \tableofcontents
27 \end{frame}
28
29 \section{Education}
30 \begin{frame}
31 \frametitle{Education}
32 \end{frame}
33
34 \subsection{BsC in Electrical and Computer Engineering}
35 \begin{frame}
36 \frametitle{BsC in Electrical and Computer Engineering}
37 \begin{itemize}
38 \item Degree: BsC in Electrical and Computer Engineering (Electronics and Computers branch)
39 \end{itemize}
40 \end{frame}
41
42 \subsection{MsC in Computer Science and Computer Engineering }
43 \begin{frame}
44 \frametitle{MsC in Computer Science and Computer Engineering}
45 \begin{itemize}
46 \item Degree: MsC in Computer Science and Computer Engineering
47 \end{itemize}
48 \end{frame}
49
50 \section{Professional experience}
51 \begin{frame}
52 \frametitle{Professional experience}
53 \end{frame}
54
55 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
56 \section{Projects on ACME}
57 \begin{frame}
58 \frametitle{Projects on ACME}
59 \end{frame}
60
61 \subsection{Reporting}
62 \begin{frame}
63 \frametitle{Reporting}
64 \begin{itemize}
65 \item Goal:
66 \item Technologies:
67 \end{itemize}
68 \end{frame}
69
70 \section{Questions}
71 \begin{frame}
72 \frametitle{Questions}
73 \begin{center}
74 \Huge{?}
75 \end{center}
76 \end{frame}
77
78 \end{document}
To create PDF file run pdflatex beamerTest.tex