Skip to content
Snippets Groups Projects
Commit 0ee68ab2 authored by Alice Brenon's avatar Alice Brenon
Browse files

Add support for Times New Roman font, start tweaking stylesheet to remove spaces between paragraphs

parent beb296af
No related branches found
No related tags found
No related merge requests found
*.docx*
!ICHLL_STYLESHEET.docx
*.pdf
snippets/*
!snippets/*.md
File added
......@@ -2,6 +2,7 @@ FIGURES = action_t1 arbre boumerang_t7 cathète_t9 dictionaries europe_t16 geloc
SNIPPETS = $(wildcard snippets/*.md)
FILTERS = pandoc-fignos
FILE_NAME = ICHLL_Brenon
DOCX_STYLE = ICHLL_STYLESHEET.docx
DEPEDENCIES = $(FIGURES:%=ressources/%.png) $(SNIPPETS:%.md=%.png) biblio.bib
all: $(FILE_NAME).pdf
......@@ -18,6 +19,6 @@ ICHLL_Brenon.docx: $(DEPEDENCIES)
%.png: %.gv
dot -Tpng $< -o $@
%.docx: %.md
LANG=fr_FR.UTF-8 pandoc $< --to docx --number-sections $(FILTERS:%=--filter %) --bibliography=biblio.bib --csl=apa.csl --citeproc -o $@
%.docx: %.md $(DOCX_STYLE)
LANG=fr_FR.UTF-8 pandoc $< --to docx --number-sections $(FILTERS:%=--filter %) --bibliography=biblio.bib --csl=apa.csl --citeproc --reference-doc=$(DOCX_STYLE) -o $@
(use-modules (guix packages)
(gnu packages base)
(gnu packages fontutils)
(gnu packages graphviz)
(gnu packages haskell-xyz)
(gnu packages pdf)
(gnu packages tex))
(gnu packages tex)
(nongnu packages fonts))
(let
((pandoc-fignos (load "pandoc-fignos.scm")))
(packages->manifest
(list gnu-make graphviz pandoc poppler texlive pandoc-fignos)))
(list fontconfig
font-microsoft-times-new-roman
gnu-make graphviz
pandoc
poppler
texlive
pandoc-fignos)))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment