about summary refs log tree commit diff stats
path: root/build/latex/academia/lpm.toml
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-04 12:31:16 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-10-04 12:31:16 +0200
commit1cb8504a4dfcf5977411267c80d4ee62a180c2d6 (patch)
tree69c696740bdc1a8c6b9c205ec0d3c2c47cd2e32b /build/latex/academia/lpm.toml
parentfix(templates/latex/academia/main.tex): Default to `draft` mode (diff)
downloadflake-templates-1cb8504a4dfcf5977411267c80d4ee62a180c2d6.tar.gz
flake-templates-1cb8504a4dfcf5977411267c80d4ee62a180c2d6.zip
chore(build): Regenerate
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}
 '''