blob: 1821b7385388a328a3f6ebe43fcccad9dbebc54c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
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}
'''
|