Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create Design Sprint and Material Design poster #8

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions posters/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
POSTER = design_sprint_poster.tex
BASENAME = $(basename $(POSTER))
FILES = chamada.tex contato.tex design_sprint_poster.tex \
evento.tex material_design.tex
LATEX = xelatex

design_sprint_poster.pdf: ${POSTER} ${FILES}
${LATEX} ${POSTER}

clean:
@rm -f ${BASENAME}.log ${BASENAME}.aux ${BASENAME}.pdf
26 changes: 26 additions & 0 deletions posters/chamada.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
%!TEX root = cv.tex

%%Command used in order to make each entry cleaner
\newcommand{\QuestionEntry}[1]{
$\begin{array}{l}
{\includegraphics[height=15pt]{images/green/arrow75red}}
\end{array}
$ #1
}

\LARGE
\noindent\colorbox{materialRed}
{\parbox[c][25pt][c]{\textwidth}{\hspace{15pt}\textcolor{white}{Por que participar?}}} %%Contacts separator

\large
\vspace*{10pt}
\QuestionEntry{Gosta de Software Livre?}

\QuestionEntry{Quer interagir com designers, programadores, artistas e com muitos outros especialistas?}

\QuestionEntry{Tem interesse em conhecer uma nova forma de estruturar, prototipar e validar ideias?}

\QuestionEntry{O que acha de aprender junto conosco a aplicar especificações de design?}


\vspace*{5pt}
43 changes: 43 additions & 0 deletions posters/contato.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
%!TEX root = cv.tex

\newcommand{\ContactEntry}[2]{
$\begin{array}{l}
{\includegraphics[height=18pt]{#1}}
\end{array}
$ #2
}

\LARGE
\noindent\colorbox{materialGreen}
{\parbox[c][25pt][c]{\textwidth}{\hspace{15pt}\textcolor{white}{Contato}}} %%Contacts separator

\begin{multicols}{3}

%%Contact Information
\large

\ContactEntry{images/green/mail9}{[email protected]}

\ContactEntry{images/green/black70}{17 de novembro - 8h às 14h

\hspace*{28pt} 18 de novembro - 13h às 18h
}

\columnbreak

\ContactEntry{images/green/house3}{Auditório do CCSL

\hspace*{28pt} IME - USP

\hspace*{28pt} Rua do Matão, 1010}

\columnbreak

\hspace*{25pt} Inscreva-se
\vspace{.2cm}

\hspace*{20pt} \includegraphics[height=80pt]{images/design_sprint_form_qr.png}

\hspace*{2pt} \textcolor{materialGreen}{\small www.goo.gl/forms/xnOQVMfKoV}

\end{multicols}
25 changes: 25 additions & 0 deletions posters/design_sprint.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
%!TEX root = cv.tex
\newcommand{\textBox}[1]{
\hspace*{7pt}
\begin{tabular}{ p{\dimexpr 0.97\linewidth-2\tabcolsep} }
{\normalsize #1}
\end{tabular}
\vspace*{10pt}
}

\LARGE
\noindent\colorbox{materialYellow}
{\parbox[c][25pt][c]{\textwidth}{\hspace{15pt}\textcolor{white}{Design Sprint}}} %%Contacts separator

%%Contact Information
\large
\vspace*{10pt}

\textcolor{materialYellow}{Design Sprint} é um conjunto de técnicas para times
de quaquer tamanho resolverem e testarem problemas

\vspace*{10pt}

design em um curto período de tempo.

\vspace*{10pt}
69 changes: 69 additions & 0 deletions posters/design_sprint_poster.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
%!TEX program = xelatex
%========================================================================================================
% Workshop de Design Sprint e Material Design
%
% - Based on 'MaterialCv' (https://github.com/amng/MaterialCv)
% - To generate the poster, use xelatex.
% - It depends on the 'Roboto' fonts being installed, and on the
% latex package 'euenc'
%
%========================================================================================================

\documentclass{article}
\usepackage[top=0cm, bottom=2cm, outer=0cm, inner=0cm]{geometry}
\usepackage[pages=some]{background}
\usepackage{xcolor}
\usepackage{fontspec}
\usepackage{multicol}


%Color definition based on Material Design
\definecolor{materialGreen} {RGB}{068,225,130}
\definecolor{materialGreenDark} {RGB}{029,184,090}
\definecolor{materialRed} {RGB}{218,068,049}
\definecolor{materialRedDark} {RGB}{173,045,031}
\definecolor{materialPurple} {RGB}{153,039,176}
\definecolor{materialPurpleDark}{RGB}{088,022,099}
\definecolor{materialBlue} {RGB}{044,116,246}
\definecolor{materialBlueDark} {RGB}{010,082,216}
\definecolor{materialYellow} {RGB}{254,193,005}
\definecolor{materialYellowDark}{RGB}{194,147,001}
\definecolor{textGray} {RGB}{070,070,070}
\definecolor{textLightGray} {RGB}{140,140,140}

%Using font Roboto as main font for the document
\setmainfont{Roboto}

\backgroundsetup{
scale=1,
color=black,
opacity=0.6,
placement=top,
angle=0,
contents={%
\includegraphics[width=\paperwidth,height=165pt]{"images/pic.jpg"}
}%
}
\begin{document}
\color{textGray}
\pagenumbering{gobble}
\vspace*{70pt} %spacing used to move the first and last name down
\Huge
\BgThispage
\textcolor{black}{\textbf{Workshop de Design Sprint}}

\textcolor{black}{\textbf{e Material Design}}
\BgThispage
\vspace*{20pt}

% Inclui separadamente as seções do poster
\input{chamada}

\input{design_sprint}

\input{material_design}

\input{evento}

\input{contato}
\end{document}
25 changes: 25 additions & 0 deletions posters/evento.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
%!TEX root = cv.tex

\LARGE
\noindent\colorbox{materialPurple}
{\parbox[c][25pt][c]{\textwidth}{\hspace{15pt}\textcolor{white}{Evento}}} %%Contacts separator

\large
\vspace*{10pt}

Vamos juntos aplicar os princípios de
Design Sprint a desafios de usabilidade no
software livre

\vspace*{10pt}
Mezuro (\textcolor{materialPurple}{www.mezuro.org})
desenvolvido no CCSL. Com os resultados
obtidos vamos então aprender como

\vspace*{10pt}
traduzir
os protótipos finais em software funcional
utilizando os princípios de Material
Design.

\vspace*{10pt}
Binary file added posters/images/design_sprint_form_qr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added posters/images/green/arrow75.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added posters/images/green/arrow75red.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added posters/images/green/black70.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added posters/images/green/house3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added posters/images/green/links1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added posters/images/green/mail9.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added posters/images/green/map5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added posters/images/pic.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions posters/material_design.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
%!TEX root = cv.tex

\LARGE
\noindent\colorbox{materialBlue}
{\parbox[c][25pt][c]{\textwidth}{\hspace{15pt}\textcolor{white}{Material Design}}} %%Contacts separator

%%Contact Information
\large
\vspace*{10pt}

\textcolor{materialBlue}{Material Design} é uma especificação de design que visa
desenvolver um sistema básico que permita uma

\vspace*{10pt}

experiência unificada entre plataformas e tamanhos de
dispositivos.

\vspace*{10pt}