[DOCs][Dependencies] Suggest to install texlive for Pandoc
- In #264 we see that texlive is needed in some cases. - Looking at texlive-latex-base I see the fonts aren't installed.
This commit is contained in:
parent
cfa54d032b
commit
c4d9a26d20
|
|
@ -3165,7 +3165,7 @@ Notes:
|
|||
The output file will be in `convert_to` format.
|
||||
The available formats depends on the `Pandoc` installation.
|
||||
In CI/CD environments: the `kicad_auto_test` docker image contains it.
|
||||
In Debian/Ubuntu environments: install `pandoc`, `texlive-latex-base` and `texlive-latex-recommended`.
|
||||
In Debian/Ubuntu environments: install `pandoc`, `texlive`, `texlive-latex-base` and `texlive-latex-recommended`.
|
||||
- **`output`**: [string='%f-%i%I%v.%x'] Output file name (%i='report', %x='txt'). Affected by global options.
|
||||
- **`template`**: [string='full'] Name for one of the internal templates (full, full_svg, simple) or a custom template file.
|
||||
Environment variables and ~ are allowed.
|
||||
|
|
|
|||
|
|
@ -1957,7 +1957,7 @@ outputs:
|
|||
# The output file will be in `convert_to` format.
|
||||
# The available formats depends on the `Pandoc` installation.
|
||||
# In CI/CD environments: the `kicad_auto_test` docker image contains it.
|
||||
# In Debian/Ubuntu environments: install `pandoc`, `texlive-latex-base` and `texlive-latex-recommended`
|
||||
# In Debian/Ubuntu environments: install `pandoc`, `texlive`, `texlive-latex-base` and `texlive-latex-recommended`
|
||||
do_convert: false
|
||||
# [string='10F'] Which Eurocircuits class are we aiming at
|
||||
eurocircuits_class_target: '10F'
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@ Dependencies:
|
|||
url_down: https://github.com/jgm/pandoc/releases
|
||||
debian: pandoc
|
||||
arch: pandoc
|
||||
extra_deb: ['texlive-latex-base', 'texlive-latex-recommended']
|
||||
extra_deb: ['texlive', 'texlive-latex-base', 'texlive-latex-recommended']
|
||||
extra_arch: ['texlive-core']
|
||||
comments: 'In CI/CD environments: the `kicad_auto_test` docker image contains it.'
|
||||
"""
|
||||
|
|
|
|||
|
|
@ -602,6 +602,7 @@ deps = '{\
|
|||
"texlive-core"\
|
||||
],\
|
||||
"extra_deb": [\
|
||||
"texlive",\
|
||||
"texlive-latex-base",\
|
||||
"texlive-latex-recommended"\
|
||||
],\
|
||||
|
|
|
|||
Loading…
Reference in New Issue