about summary refs log tree commit diff stats
path: root/build/latex/academia/lpm.toml
diff options
context:
space:
mode:
Diffstat (limited to 'build/latex/academia/lpm.toml')
-rw-r--r--build/latex/academia/lpm.toml10
1 files changed, 3 insertions, 7 deletions
diff --git a/build/latex/academia/lpm.toml b/build/latex/academia/lpm.toml
index 1821b73..28702c9 100644
--- a/build/latex/academia/lpm.toml
+++ b/build/latex/academia/lpm.toml
@@ -17,18 +17,14 @@ chapter = '''
 
 figure = '''
 % LTeX: language=%INIT_LANGUAGE
-\documentclass[varwidth]{standalone}
+\documentclass{standalone}
 
 \input{../headers/preamble.tex}
 \input{../headers/preamble_local.tex}
 
-\usepackage{tikz}
-
 \begin{document} % lpm::current_date (lpm::new_figure_name)
-
-\begin{tizkpicture}
-    \node at (0,0) {Hello world!};
+\begin{tikzpicture}
+	\draw node[left] {ping?} (0,0) -- (3,0) node[right] {Pong!} ;
 \end{tikzpicture}
-
 \end{document}
 '''