Last active
March 23, 2017 10:44
-
-
Save dfbarrero/228b4363ff06f8d2e7f21392d4830cbf to your computer and use it in GitHub Desktop.
Hash table figure with LaTeX/Tikz
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \begin{tikzpicture} [nodes={minimum width=0.8cm, minimum height=0.8cm}, | |
| row sep=-\pgflinewidth, column sep=-\pgflinewidth] | |
| \matrix (hash)[matrix of nodes, nodes={draw, anchor=center}] | |
| { | |
| Key1 & Value1 \\ | |
| Key2 & Value2 \\ | |
| Key3 & Value3 \\ | |
| }; | |
| \end{tikzpicture} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment