Initial commit
This commit is contained in:
24
README.md
Normal file
24
README.md
Normal file
@@ -0,0 +1,24 @@
|
||||
# Cours Format
|
||||
|
||||
## Installing
|
||||
|
||||
*TODO*: Replace the `<github-organization>` with your GitHub organization.
|
||||
|
||||
```bash
|
||||
quarto use template <github-organization>/cours
|
||||
```
|
||||
|
||||
This will install the extension and create an example qmd file that you can use as a starting place for your article.
|
||||
|
||||
## Using
|
||||
|
||||
*TODO*: Describe how to use your format.
|
||||
|
||||
## Format Options
|
||||
|
||||
*TODO*: If your format has options that can be set via document metadata, describe them.
|
||||
|
||||
## Example
|
||||
|
||||
Here is the source code for a minimal sample document: [example.qmd](example.qmd).
|
||||
|
||||
10
_extensions/cours/_extension.yml
Normal file
10
_extensions/cours/_extension.yml
Normal file
@@ -0,0 +1,10 @@
|
||||
title: Cours
|
||||
author: Jeff LANCE
|
||||
version: 1.0.0
|
||||
quarto-required: ">=1.7.0"
|
||||
contributes:
|
||||
formats:
|
||||
pdf:
|
||||
toc: true
|
||||
include-in-header: header.tex
|
||||
|
||||
1
_extensions/cours/header.tex
Normal file
1
_extensions/cours/header.tex
Normal file
@@ -0,0 +1 @@
|
||||
% TODO: Add custom LaTeX header directives here
|
||||
16
template.qmd
Normal file
16
template.qmd
Normal file
@@ -0,0 +1,16 @@
|
||||
---
|
||||
title: Untitled
|
||||
format:
|
||||
cours-pdf: default
|
||||
author: Jeff LANCE
|
||||
date: last-modified
|
||||
---
|
||||
|
||||
## Introduction
|
||||
|
||||
*TODO* Create an example file that demonstrates the formatting and features of your format.
|
||||
|
||||
## More Information
|
||||
|
||||
You can learn more about controlling the appearance of PDF output here: <https://quarto.org/docs/output-formats/pdf-basics.html>
|
||||
|
||||
Reference in New Issue
Block a user