This README is an example template for building Telos documents.
Here's an example folder structure for a document:
my-document/ # Root directory.
|- build/ # Folder used to store builded (output) files.
|- src/ # Markdowns files; one for each chapter.
|- images/ # Images folder.
|- metadata.yml # Metadata content (title, author...).
Edit the metadata.yml file to set configuration data:
---
title: My document title
author: Kevin Quaintance
rights: Creative Commons Attribution 4.0 International
language: en-US
tags: [document, my-document, etc]
abstract: |
Your summary text.
---Creating a new chapter is as simple as creating a new markdown file in the src/ folder; you'll end up with something like this:
src/01-introduction.md
src/02-installation.md
src/03-usage.md
src/04-references.md
All you need to specify for each chapter at least one title:
# Introduction
This is the first paragraph of the introduction chapter.
## First
This is the first subsection.
## Second
This is the second subsection.Each title (#) will represent a chapter, while each subtitle (##) will represent a chapter's section. You can use as many levels of sections as markdown supports.
Anchor links can be used to link chapters within the document:
// src/01-introduction.md
# Introduction
For more information, check the [Usage] chapter.
// src/02-installation.md
# Usage
...If you want to rename the reference, use this syntax:
For more information, check [this](#usage) chapter.Anchor names should be downcased, and spaces, colons, semicolons... should be replaced with hyphens. Instead of Chapter title: A new era, you have: #chapter-title-a-new-era.
It's the same as anchor links:
# Introduction
## First
For more information, check the [Second] section.
## Second
...Or, with al alternative name:
For more information, check [this](#second) section.Text. That's cool. What about images and tables?
Use Markdown syntax to insert an image with a caption:
Use markdown table, and use the Table: <Your table description> syntax to add a caption:
| Index | Name |
| ----- | ---- |
| 0 | AAA |
| 1 | BBB |
| ... | ... |
Table: This is an example table.Wrap a LaTeX math equation between $ delimiters for inline (tiny) formulas:
This, $\mu = \sum_{i=0}^{N} \frac{x_i}{N}$, the mean equation, ...Here's an online equation editor.
