lollms-webui/presets/build_latex_book.yaml
Saifeddine ALOUI 3a27dada37 upgraded
2024-07-16 00:59:56 +02:00

24 lines
721 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