forked from open-source-uc/latex-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
75 lines (60 loc) · 1.49 KB
/
main.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
\documentclass[10pt]{extarticle}
%Paquetes utilizados en esta tarea
\usepackage{fullpage}
\usepackage[utf8]{inputenc}
\usepackage[spanish]{babel}
\usepackage{epsfig}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{epstopdf}
\usepackage[hidelinks]{hyperref}
\usepackage{algorithmic}
\usepackage[nothing]{algorithm}
%Definiciones de comandos, para reutilizar secuencias frecuentes o ahorrar
%código
\newcommand{\RR}{\mathbb{R}}
\newcommand{\lb}{\\~\\}
\newcommand{\la}{\leftarrow}
\newcommand{\twopartdef}[4]
{
\left\{
\begin{array}{ll}
#1 & \text{si }#2 \\
#3 & \text{si }#4
\end{array}
\right.
}
\newcommand{\threepartdef}[6]
{
\left\{
\begin{array}{ll}
#1 & \text{si }#2 \\
#3 & \text{si }#4 \\
#5 & \text{si }#6
\end{array}
\right.
}
\makeatletter
\makeatother
\begin{document}
\begin{tabular}{ccl}
\begin{tabular}{c}
\includegraphics[width=2.5cm]{logo/logo.pdf}
\end{tabular}
&\ \ \ &
\begin{tabular}{l}
PONTIFICIA UNIVERSIDAD CATÓLICA DE CHILE\\
ESCUELA DE [NOMBRE ESCUELA]\\
DEPARTAMENTO DE [NOMBRE DEPARTAMENTO]
\end{tabular}
\end{tabular}
\begin{center}
\bf SIGLA - Nombre ramo\\
\bf 1er semestre del 2017\lb
\vspace{0.5cm}
\bf {\Huge Título}
\end{center}
\section*{Sección}
\subsection*{Sub-sección}
Para compilar puedes usar ShareLatex: \url{https://www.sharelatex.com}. Copia y pega todo este código en el \textit{main.tex} y sube los archivos que contienen el logo de la universidad. De ahí en adelante puedes compilar para ver el resultado.
\end{document}