main_file = "%INIT_APPLICATION_NAME.tex"

[templates]
section = '''
%! TEX root = ../../../%INIT_APPLICATION_NAME.tex
% LTeX: language=%INIT_LANGUAGE

\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{lpm::new_chapter_name} % lpm::current_date
'''

figure = '''
% LTeX: language=%INIT_LANGUAGE
\documentclass{standalone}

\input{../headers/preamble.tex}
\input{../headers/preamble_local.tex}

\begin{document} % lpm::current_date (lpm::new_figure_name)
\begin{tikzpicture}
	\draw node[left] {ping?} (0,0) -- (3,0) node[right] {Pong!} ;
\end{tikzpicture}
\end{document}
'''