diff --git a/.gitignore b/.gitignore
index 485dee64bcfb48793379b200a1afd14e85a8aaf4..bcaae936ae4e4e73effe812c0f8a14999d760d1e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,3 @@
 .idea
+plots
+__pycache__
diff --git a/README.md b/README.md
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..bb9408afc5338fd3f20e4cebe6e7cbcb73a98f54 100644
--- a/README.md
+++ b/README.md
@@ -0,0 +1,12 @@
+# Routing for Electric Vehicles
+
+## Extras
+
+### Draw Graphs used for Testing
+
+To draw all graphs, respectively create ```.tex``` snippets (that make use of the 
+[tikz-network](https://www.ctan.org/pkg/tikz-network)).
+
+```bash
+python draw_graphs.py [export_dir_path]
+```
diff --git a/tests/draw.py b/draw_graphs.py
similarity index 67%
rename from tests/draw.py
rename to draw_graphs.py
index ee38d095c28d7e479d62c7b939a2cf8314f182f1..22cd239ef332935936608c7c6a3b64c2f8f2cbf6 100644
--- a/tests/draw.py
+++ b/draw_graphs.py
@@ -50,3 +50,26 @@ def _get_node_styles(G):
     styles['nodes_style'] = nodes_style
 
     return styles
+
+
+if __name__ == '__main__':
+    # Write Latex files of all test case graph configs
+    import os
+    import sys
+    from tests import config
+
+    try:
+        plot_dir = sys.argv[1]
+    except IndexError:
+        plot_dir = 'plots'
+
+    if config.config_list:
+        try:
+            os.mkdir(plot_dir)
+        except FileExistsError:
+            pass
+
+    for conf_name in config.config_list:
+        conf = getattr(config, conf_name)
+        G = config.get_graph(conf)
+        draw_graph(G, os.path.join(plot_dir, conf_name + '.tex'))
diff --git a/tests/config.py b/tests/config.py
index d8f3408b55a3f7f2e344eff1ccc44c9f020fb973..92a27bbee150ad71d4c148667d5c35ba3029ca6d 100644
--- a/tests/config.py
+++ b/tests/config.py
@@ -5,6 +5,9 @@ import networkx as nx
 Street = namedtuple('Street', ['u', 'v', 'distance', 'consumption'])
 Node = namedtuple('Node', ['label', 'charging_coeff'], defaults=(None, None))
 
+# List of configs
+config_list = ['edge_case']
+
 edge_case = {
     'b_0': 0,
     'b_t': 0,
diff --git a/tests/test_graph.py b/tests/test_graph.py
index 278f7fbe2097dff0bcf971bff3ba432271ed2817..42fa225f2595f42de2e25e68d8bb69b03b05c9b9 100644
--- a/tests/test_graph.py
+++ b/tests/test_graph.py
@@ -1,12 +1,6 @@
 import networkx as nx
 
-from .draw import draw_graph
-
 
 def test_graph_creation(G_Edge_Case: nx.Graph):
     assert G_Edge_Case.number_of_nodes() == 3
     assert G_Edge_Case.number_of_edges() == 3
-
-
-def test_print_graph(G_Edge_Case: nx.Graph):
-    draw_graph(G_Edge_Case, 'graph.tex')