Created
November 14, 2012 17:08
-
-
Save psychok7/4073371 to your computer and use it in GitHub Desktop.
LaTeX Tutorial
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass[a4paper]{report} %tipo de documento | |
\usepackage[utf8]{inputenc} | |
\usepackage[portuges]{babel} | |
\usepackage{graphicx} | |
\title{Título do documento} | |
\author{autor Nuno Khan \and autor Tales For The Unspoken} | |
\begin{document} | |
\maketitle | |
\begin{abstract} | |
resumo do documento | |
\end{abstract} | |
\tableofcontents | |
\chapter{Nome do capitulo 1} | |
\section{Nome da Secção} | |
Texto pertencente a esta subsecção | |
\subsection{Nome da subsecção} | |
Texto pertencente a esta subsecção | |
\paragraph{Nome do paragrafo} texto do paragrafo | |
\section{Nome da Secção 2} | |
Texto pertencente a esta subsecção 2 | |
\subsection{Nome da subsecção 2} | |
\emph{Texto pertencente a esta subsecção 2} | |
\paragraph{Nome do paragrafo 2} texto do paragrafo 2 | |
\section{Nome da Secção 3} | |
Texto pertencente a esta subsecção 3 | |
\subsection{Nome da subsecção 3} | |
Texto pertencente a esta subsecção 3 | |
\paragraph{Nome do paragrafo 3} texto do paragrafo 3 | |
\chapter{Nome do capitulo 2} | |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
\section{Lista} | |
\begin{itemize} | |
\item primeiro item | |
\item[-] segundo item | |
\item[$\rightarrow$] terceiro item | |
\end{itemize} | |
\section{Enumeração} | |
\begin{enumerate} | |
\item pr imeiro item | |
\item segundo item | |
\end{enumerate} | |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
\section{Tabular} | |
\begin{table}[h!] | |
\begin{tabular}{|c|c|c|} | |
\hline | |
cell1&cell2&cell4\\ | |
\hline | |
cell4&cell5&cell6\\ | |
\hline | |
cell7&cell8&cell9\\ | |
\hline | |
\end{tabular} | |
\end{table} | |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
\newpage | |
\section{Images} | |
\label{section:Images} | |
\begin{figure}[h!] | |
\begin{tabular}{c} | |
\includegraphics[scale=0.2]{latex} | |
\end{tabular} | |
\caption{Legenda da figura} | |
\label{fig:latex} %id da imagem para futuras referencias | |
\end{figure} | |
\begin{figure}[h!] | |
\begin{tabular}{cp{1cm}c} | |
\includegraphics[scale=0.2]{latex}&&\includegraphics[scale=0.4]{tux_superman} | |
\end{tabular} | |
\caption{Legenda da figura} | |
\label{fig:latex2} %id da imagem para futuras referencias | |
\end{figure} | |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
\section{Texto} | |
\begin{flushright} | |
Esta banda tem recebido boas críticas por parte do público. Os Tales For The Unspoken já fizeram diversos concertos pelo país, com grandes nomes do cenário metal e também em grandes palcos, como a Queima das Fitas, Latadas e concentração de Motards no dia dos motociclistas. | |
Os membros desta banda são: | |
Marco Fresco (vocalista), Nuno Khan (guitarrista), Miguel Gonçalves a.k.a Mike (guitarrista), Guilherme Busato (baixista) e Sérgio Vaz (baterista). | |
Algumas das suas músicas de maior sucesso são 'Takuba wena' e 'Say my name', entre outras. | |
Esta banda lançou um vídeo clip do seu single 'Say my name', disponível no seu site oficial | |
A figura \ref{fig:latex2} | |
A seccao \ref{fig:Images} | |
\end{flushright} | |
\section{Matematica} | |
\begin{equation} | |
V_{Morse}= \sum_{j>i}^N \{exp[\beta (r_{ij})] - 2 exp [ -\beta (r_{ij} - r_{0})]\} | |
\end{equation} | |
%alternativa para nao ter o id associado | |
$ | |
V_{Morse}= \sum_{j>i}^N \{exp[\beta (r_{ij})] - 4 exp [ -\beta (r_{ij} - r_{0})]\} | |
$ | |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment