mirror of https://github.com/patacrep/patacrep.git
Oliverpool
9 years ago
6 changed files with 191 additions and 42 deletions
@ -1,17 +1,23 @@ |
|||
bookoptions: |
|||
- "diagram" |
|||
- "repeatchords" |
|||
- "lilypond" |
|||
- "pictures" |
|||
booktype: "chorded" |
|||
datadir: "." |
|||
template: "patacrep.tex" |
|||
lang: "fr" |
|||
encoding: "utf8" |
|||
authwords: |
|||
sep: |
|||
# bookoptions: |
|||
# - "diagram" |
|||
# - "repeatchords" |
|||
# - "pictures" |
|||
# booktype: "chorded" |
|||
# datadir: "." |
|||
# template: "patacrep.tex" |
|||
# lang: "fr" |
|||
# encoding: "utf8" |
|||
book: |
|||
lang: fr |
|||
datadir: "." |
|||
pictures: yes |
|||
#type: chorded |
|||
chords: |
|||
show: true |
|||
diagramreminder: none |
|||
|
|||
authors: |
|||
separators: |
|||
- "and" |
|||
- "et" |
|||
content: |
|||
- |
|||
- "sorted" |
|||
content: '[["sorted"]]' |
@ -0,0 +1,46 @@ |
|||
content: |
|||
|
|||
book: |
|||
lang: en |
|||
datadir: |
|||
encoding: utf-8 |
|||
pictures: yes |
|||
|
|||
chords: # Options relatives aux accords |
|||
diagramreminder: ENUM[important, none, all] (anciennement importantdiagramonly) |
|||
diagrampage: BOOLEAN Montrer la page d'accords |
|||
repeatchords: BOOLEAN |
|||
lilypond: BOOLEAN |
|||
instruments: ENUM[guitar, ukulele] |
|||
show: BOOLEAN (anciennement booktype=chorded ou booktype=lyrics) |
|||
notation: ENUM[alphascale, solfedge] |
|||
|
|||
authors: # Comment sont analysés les auteurs |
|||
separators: LISTE |
|||
ignore: LISTE |
|||
by: LISTE |
|||
|
|||
titles: # Comment sont analysés les titres |
|||
prefix: LISTE |
|||
|
|||
template: # Des choses spécifiques au template |
|||
file: STRING |
|||
latex: # Des choses spécifiques au LaTeX |
|||
classoptions: STRING |
|||
|
|||
# Peut dépendre fortement du template |
|||
color: # Des couleurs |
|||
songnumber: STRING |
|||
notebg: STRING |
|||
indexbg: STRING |
|||
|
|||
titlepage: #Configuration de la page de garde |
|||
title: STRING |
|||
author: STRING |
|||
subtitle: STRING |
|||
version: STRING |
|||
url: STRING |
|||
email: STRING |
|||
picture: STRING |
|||
picturecopyright: STRING |
|||
footer: STRING |
@ -1,2 +1,89 @@ |
|||
type: //any |
|||
_default: "test" |
|||
type: //rec |
|||
optional: |
|||
content: //str |
|||
book: |
|||
type: //rec |
|||
optional: |
|||
encoding: //str |
|||
lang: //str |
|||
pictures: //bool |
|||
datadir: |
|||
type: //arr |
|||
contents: //str |
|||
chords: |
|||
type: //rec |
|||
optional: |
|||
show: //bool |
|||
diagrampage: //bool |
|||
repeatchords: //bool |
|||
lilypond: //bool |
|||
diagramreminder: |
|||
type: //any |
|||
of: |
|||
- type: //str |
|||
value: "none" |
|||
- type: //str |
|||
value: "important" |
|||
- type: //str |
|||
value: "all" |
|||
instruments: |
|||
type: //any |
|||
of: |
|||
- type: //str |
|||
value: "guitar" |
|||
- type: //str |
|||
value: "ukulele" |
|||
notation: |
|||
type: //any |
|||
of: |
|||
- type: //str |
|||
value: "alphascale" |
|||
- type: //str |
|||
value: "solfedge" |
|||
authors: |
|||
_description: "Comment sont analysés les auteurs" |
|||
type: //rec |
|||
optional: |
|||
separators: |
|||
type: //arr |
|||
contents: //str |
|||
ignore: |
|||
type: //arr |
|||
contents: //str |
|||
by: |
|||
type: //arr |
|||
contents: //str |
|||
titles: |
|||
_description: "Comment sont analysés les titres" |
|||
type: //rec |
|||
optional: |
|||
prefix: |
|||
type: //arr |
|||
contents: //str |
|||
template: |
|||
_description: "Des choses spécifiques au template" |
|||
type: //rec |
|||
optional: |
|||
file: //str |
|||
latex: |
|||
type: //rec |
|||
optional: |
|||
classoptions: //str |
|||
color: |
|||
type: //rec |
|||
optional: |
|||
songnumber: //str |
|||
notebg: //str |
|||
indexbg: //str |
|||
titlepage: |
|||
type: //rec |
|||
optional: |
|||
title: //str |
|||
author: //str |
|||
subtitle: //str |
|||
version: //str |
|||
url: //str |
|||
email: //str |
|||
picture: //str |
|||
picturecopyright: //str |
|||
footer: //str |
|||
|
@ -1,6 +1,6 @@ |
|||
bookoptions: |
|||
- pictures |
|||
datadir: |
|||
- datadir_datadir |
|||
- datadir_datadir2 |
|||
lang: en |
|||
book: |
|||
pictures: yes |
|||
datadir: |
|||
- datadir_datadir |
|||
- datadir_datadir2 |
|||
lang: en |
|||
|
Loading…
Reference in new issue