From b7ddc2f42072cbbdf6be258119b08ef3cc4b726d Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Thu, 3 Oct 2024 16:10:05 +0200 Subject: fix(templates/latex/academia/lpm.toml): Use correct LaTeX in lpm figure template --- templates/latex/academia/lpm.toml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/templates/latex/academia/lpm.toml b/templates/latex/academia/lpm.toml index 1821b73..28702c9 100644 --- a/templates/latex/academia/lpm.toml +++ b/templates/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} ''' -- cgit 1.4.1