Skip to content

Instantly share code, notes, and snippets.

@TheZoq2
Created November 7, 2019 22:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TheZoq2/4eff0d30290a5b858100eee524e57b55 to your computer and use it in GitHub Desktop.
Save TheZoq2/4eff0d30290a5b858100eee524e57b55 to your computer and use it in GitHub Desktop.
\documentclass{article}
\usepackage[11pt]{moresize}
\usepackage[a4paper,margin=0cm]{geometry}
\usepackage{tikz}
\usepackage{amsthm,amsmath,amssymb}
\usepackage[protrusion=true,expansion=true]{microtype}
\usetikzlibrary{positioning,shapes,shadows,arrows,backgrounds,fit}
\usepackage[utf8]{inputenc}
\newcommand{\content}{\Large Best audio/visuals}
\newcommand{\cardheight}{36.0mm}
\newcommand{\row}{
\begin{tikzpicture}[node distance=0.0cm]
\node (tm) [
draw=black, fill=white,
show background rectangle,
textstyle,
text centered,
minimum height = \cardheight,
minimum width = 70mm,
text width = 70mm
] {%
\content
};
\node (tr) [
draw=black, fill=white,
show background rectangle,
textstyle,
text width=4cm,
text centered,
minimum width = 70mm,
minimum height = \cardheight,
right = of tm,
text width = 70mm
] {%
\content
};
\node (tl) [
draw=black, fill=white,
show background rectangle,
textstyle,
text width=4cm,
text centered,
minimum width = 70mm,
minimum height = \cardheight,
left = of tm,
text width = 70mm
] {%
\content
};
\end{tikzpicture}
}
\begin{document}
\tikzstyle{textstyle}=[rectangle, text width=3.5cm, text badly ragged]
\begin{center}
\row
\row
\row
\row
\row
\row
\row
\row
\end{center}
\end{document}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment