lollms-webui/presets/build_latex_book.yaml
2023-08-25 02:12:33 +02:00

16 lines
463 B
YAML

name: Build a Latex Book
content: |
@<Add some context information to give the AI some context about the book or leave blank if you have no specific idea>@
```latex
\documentclass[12pt]{book}
\usepackage{url}
\begin{document}
\title{@<Title of the book>@}
\author{@<Author name>@} % Author
\date{\today} % Date
\maketitle
\tableofcontents
\chapter{Introduction}
@<generation_placeholder>@
\end{document}
```