Guest User

Untitled

a guest
Oct 23rd, 2017
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 1.68 KB | None | 0 0
  1.     \documentclass{article}
  2.    \usepackage[utf8]{inputenc}
  3.    
  4.    \usepackage{array}
  5.    \newcolumntype{L}[1]{>{\raggedright\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
  6.    \newcolumntype{C}[1]{>{\centering\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
  7.    \newcolumntype{R}[1]{>{\raggedleft\let\newline\\\arraybackslash\hspace{0pt}}m{#1}}
  8.    
  9.    \usepackage{xcolor,colortbl} %% Set some local commands and colors
  10.    
  11.     %%Define colors. Precise color does not matter, will tweak later
  12.     \definecolor{green}{rgb}{0.08,0.35,0.12}
  13.    \definecolor{tangreen}{rgb}{0.92, 0.95, 0.8}
  14.    
  15.    \newcommand{\green}{\cellcolor{green}}
  16.    \newcommand{\whiteText}{\color{white}}
  17.    
  18.    \newcommand{\tHead}{\green \whiteText}
  19.    \newcommand{\lCell}{\cellcolor{tangreen}}
  20.    
  21.    \begin{document}
  22.    
  23.    \begin{center}
  24.    \begin{tabular}{lll}
  25.    \multicolumn{2}{L{0.60\linewidth}}{\tHead \textbf{Angel of Valor}} & \multicolumn{1}{R{0.30\linewidth}}{\tHead \textbf{Level 8 Soldier}}\\
  26.    \multicolumn{2}{L{0.60\linewidth}}{\tHead \small \textsc{Medium immortal humanoid (angel)}} & \multicolumn{1}{R{0.30\linewidth}}{\tHead \textbf{XP 350}}\\
  27.     %   INITIAL STAT BLOCK
  28.     %
  29.     \multicolumn{1}{L{0.30\linewidth}}{\lCell \textbf{Initiative} +9} & \multicolumn{2}{L{0.60\linewidth}}{\lCell \textbf{Senses} Perception +7}\\
  30.    \multicolumn{3}{L{0.90\linewidth}}{\lCell \textbf{HP} 1; a missed attack never damages a minion}\\
  31.    \multicolumn{3}{L{0.90\linewidth}}{\lCell \textbf{Immune} fear; \textbf{Resist} 10 fire, 10 radiant}\\
  32.    \multicolumn{3}{L{0.90\linewidth}}{\lCell \textbf{Speed} 6, fly 9 (hover)}\\
  33.    
  34.    \end{tabular}
  35.    \end{center}
  36.    \end{document}
Advertisement
Add Comment
Please, Sign In to add comment