\documentclass{standalone} % \standaloneconfig{border=left bottom right top} \standaloneconfig{border=0.5cm 1cm 0.5cm 0.75cm} \input{common.tex} \usepackage{standalone} \begin{document} \includestandalone{cards/en/base/knight} \hspace{-0.19cm} \begin{tikzpicture}[ overlay, box/.style={red, draw}, ] \coordinate (typeSymbol) at (-\cardwidth + \stripwidth - \strippadding, \cardheight - \strippadding*3.8); \coordinate (typeLine) at (-\cardwidth + \stripwidth - \strippadding, \cardheight - \strippadding*8.5); \coordinate (buycost) at (-\stripwidth + \strippadding / 2, \cardheight - \strippadding*4); \coordinate (title) at (-\cardwidth / 2, \cardheight - \strippadding*4); \coordinate (stats) at (-\cardwidth + \contentLeft*2, \contentBottom * 2.5); \coordinate (effect) at (-\cardwidth + \contentLeft*2, \contentBottom * 1.2); \coordinate (playcost) at (-\stripwidth + \strippadding / 2, \strippadding*2); \coordinate (set) at (-\cardwidth + \stripwidth - \strippadding , \textpadding); \node[box, minimum size=0.5cm] (playcostBox) at (playcost) {}; \node[align=center] (playcostLabel) at ($(playcost) - (0, 1cm)$) {play cost /\\ upkeep cost}; \draw[latex-] (playcostBox) to (playcostLabel); \node[box, minimum size=0.5cm] (buycostBox) at (buycost) {}; \node (buycostLabel) at ($(buycost) + (0, 1.25cm)$) {buy cost}; \draw[latex-] (buycostBox) to (buycostLabel); \node[box, minimum size=0.6cm] (typeSymbolBox) at (typeSymbol) {}; \node (typeSymbolLabel) at ($(typeSymbol) + (0, 1.25cm)$) {type symbol}; \draw[latex-] (typeSymbolBox) to (typeSymbolLabel); \node[box, rotate=90, anchor=east, minimum width=3cm, minimum height=0.5cm] (typeLineBox) at (typeLine) {}; \node[align=center] (typeLineLabel) at ($(typeLineBox.south) + (2.5cm, 0)$) {type line: \\ card name - type}; \draw[latex-] (typeLineBox) to (typeLineLabel); \node[box, rotate=90, anchor=west, minimum height=0.5cm, minimum width=0.9cm] (setBox) at (set) {}; \node (setBoxLabel) at ($(setBox) - (0, 1.1cm)$) {Set name}; \draw[latex-] (setBox) to (setBoxLabel); \node[box, minimum height=0.5cm, minimum width=2cm] (titleBox) at (title) {}; \node (titleLabel) at ($(title) + (0, 1.25cm)$) {card name}; \draw[latex-] (titleBox) to (titleLabel); \node[box, minimum height=1.5cm, minimum width=2.5cm] (statsBox) at (stats) {}; \node (statsLabel) at ($(stats) + (0.5cm, 1.5cm)$) {Attributes of a permanent}; \draw[latex-] (statsBox) to (statsLabel); \node[box, minimum height=0.7cm, minimum width=2.5cm] (effectBox) at (effect) {}; \node (effectLabel) at ($(effect) - (-0.3cm, 1cm)$) {Effects of a permanent}; \draw[latex-] (effectBox) to (effectLabel); \end{tikzpicture} \end{document}