-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.tex
74 lines (61 loc) · 1.88 KB
/
template.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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Cheatsheet template - ACM UPM
%
% Original by Michelle Cristina de Sousa Baltazar
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass{article}
\usepackage[landscape]{geometry}
\usepackage{url}
\usepackage{multicol}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{tikz}
\usepackage{amsmath,amssymb}
\usepackage{colortbl}
\usepackage{xcolor}
\usepackage{mathtools}
\usepackage{amsmath,amssymb}
\usepackage{enumitem}
\usepackage[spanish]{babel}
\usepackage[utf8]{inputenc}
\usepackage{titling}
% Parámetros sin tocar de la plantilla original
\advance\topmargin-.8in
\advance\textheight3in
\advance\textwidth3in
\advance\oddsidemargin-1.5in
\advance\evensidemargin-1.5in
\parindent0pt
\parskip2pt
\tikzstyle{mybox} = [draw=black, fill=white, very thick,
rectangle, rounded corners, inner sep=10pt, inner ysep=10pt]
\tikzstyle{fancytitle} =[fill=black, text=white, font=\bfseries]
\title{Cheatsheet - Template}
\author{ACM UPM}
\begin{document}
\begin{center}
{\huge{\textbf{\thetitle}}}\\ % del paquete titling
{\large \theauthor} % del paquete titling
\end{center}
\begin{multicols*}{3} % Divide la hoja en 3 columnas
\begin{tikzpicture} % Crea una caja
\node [mybox] (box){%
% Al dividirse en 3, tomamos algo menos de un tercio de la página
\begin{minipage}{0.3\textwidth}
Contenido de la caja.
Al ir rellenando las cajas se distribuirán en las 3 columnas creadas.
\end{minipage}
};
% Título de la caja
\node[fancytitle, right=10pt] at (box.north west) {Título de la caja};
\end{tikzpicture}
\begin{tikzpicture}
\node [mybox] (box){%
\begin{minipage}{0.3\textwidth} % Contenido
\end{minipage}
};
\node[fancytitle, right=10pt] at (box.north west) {}; % Título
\end{tikzpicture}
\end{multicols*}
\end{document}