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.toml22
1 files changed, 20 insertions, 2 deletions
diff --git a/build/latex/academia/lpm.toml b/build/latex/academia/lpm.toml
index d72f80f..1821b73 100644
--- a/build/latex/academia/lpm.toml
+++ b/build/latex/academia/lpm.toml
@@ -5,12 +5,30 @@ section = '''
 %! TEX root = ../../../%INIT_APPLICATION_NAME.tex
 % LTeX: language=%INIT_LANGUAGE
 
-\section{REPLACMENT_SECTION_TITLE} % DATE
+\section{lpm::new_section_name} % lpm::current_date (lpm::current_chapter_name::title_case)
 '''
 
 chapter = '''
 %! TEX root = ../../%INIT_APPLICATION_NAME.tex
 % LTeX: language=%INIT_LANGUAGE
 
-\chapter{REPLACEMENT_CHAPTER}
+\chapter{lpm::new_chapter_name} % lpm::current_date
+'''
+
+figure = '''
+% LTeX: language=%INIT_LANGUAGE
+\documentclass[varwidth]{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!};
+\end{tikzpicture}
+
+\end{document}
 '''