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[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}
'''