lollms-webui/presets/build_latex_book.yaml
Saifeddine ALOUI 07c1183289 fixed errors
2023-08-27 21:50:54 +02:00

24 lines
720 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}
```
snippets:
- Import graphics(required to add graphics to the page) :
\usepackage[demo]{graphic}
- Add graph: |
\includegraphics[width=4in]{@<Image name>@}% Replace with your own image path
help: |
Builds a latex code for a book