blob: 1f1edc1f56bd12fdcb9042768c8c0dbad425e384 (
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
|
main_file = "example.tex"
[templates]
section = '''
%! TEX root = ../../../example.tex
% LTeX: language=en-GB
\section{lpm::new_section_name} % lpm::current_date (lpm::current_chapter_name::title_case)
This is some text
'''
chapter = '''
%! TEX root = ../../example.tex
% LTeX: language=en-GB
\chapter{lpm::new_chapter_name} % lpm::current_date
'''
figure = '''
% LTeX: language=en-GB
\documentclass[varwidth]{standalone}
\usepackage{tikz}
\usetikzlibrary{calc}
\begin{document} % lpm::current_date (lpm::new_figure_name)
\begin{tikzpicture}
\end{tikzpicture}
\end{document}
'''
|