initial commit
This commit is contained in:
commit
1b2c317a61
6 changed files with 528 additions and 0 deletions
232
.gitignore
vendored
Normal file
232
.gitignore
vendored
Normal file
|
@ -0,0 +1,232 @@
|
||||||
|
/03-supplementary_data/DB
|
||||||
|
/03-supplementary_data/library
|
||||||
|
/04-outputs
|
||||||
|
|
||||||
|
# Created by https://www.toptal.com/developers/gitignore/api/-f,python,linux,vim,quarto,markdown,jupyternotebooks
|
||||||
|
# Edit at https://www.toptal.com/developers/gitignore?templates=-f,python,linux,vim,quarto,markdown,jupyternotebooks
|
||||||
|
|
||||||
|
#!! ERROR: -f is undefined. Use list command to see defined gitignore types !!#
|
||||||
|
|
||||||
|
### JupyterNotebooks ###
|
||||||
|
# gitignore template for Jupyter Notebooks
|
||||||
|
# website: http://jupyter.org/
|
||||||
|
|
||||||
|
.ipynb_checkpoints
|
||||||
|
*/.ipynb_checkpoints/*
|
||||||
|
|
||||||
|
# IPython
|
||||||
|
profile_default/
|
||||||
|
ipython_config.py
|
||||||
|
|
||||||
|
# Remove previous ipynb_checkpoints
|
||||||
|
# git rm -r .ipynb_checkpoints/
|
||||||
|
|
||||||
|
### Linux ###
|
||||||
|
*~
|
||||||
|
|
||||||
|
# temporary files which can be created if a process still has a handle open of a deleted file
|
||||||
|
.fuse_hidden*
|
||||||
|
|
||||||
|
# KDE directory preferences
|
||||||
|
.directory
|
||||||
|
|
||||||
|
# Linux trash folder which might appear on any partition or disk
|
||||||
|
.Trash-*
|
||||||
|
|
||||||
|
# .nfs files are created when an open file is removed but is still being accessed
|
||||||
|
.nfs*
|
||||||
|
|
||||||
|
#!! ERROR: markdown is undefined. Use list command to see defined gitignore types !!#
|
||||||
|
|
||||||
|
### Python ###
|
||||||
|
# Byte-compiled / optimized / DLL files
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
|
||||||
|
# C extensions
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# Distribution / packaging
|
||||||
|
.Python
|
||||||
|
build/
|
||||||
|
develop-eggs/
|
||||||
|
dist/
|
||||||
|
downloads/
|
||||||
|
eggs/
|
||||||
|
.eggs/
|
||||||
|
lib/
|
||||||
|
lib64/
|
||||||
|
parts/
|
||||||
|
sdist/
|
||||||
|
var/
|
||||||
|
wheels/
|
||||||
|
share/python-wheels/
|
||||||
|
*.egg-info/
|
||||||
|
.installed.cfg
|
||||||
|
*.egg
|
||||||
|
MANIFEST
|
||||||
|
|
||||||
|
# PyInstaller
|
||||||
|
# Usually these files are written by a python script from a template
|
||||||
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||||||
|
*.manifest
|
||||||
|
*.spec
|
||||||
|
|
||||||
|
# Installer logs
|
||||||
|
pip-log.txt
|
||||||
|
pip-delete-this-directory.txt
|
||||||
|
|
||||||
|
# Unit test / coverage reports
|
||||||
|
htmlcov/
|
||||||
|
.tox/
|
||||||
|
.nox/
|
||||||
|
.coverage
|
||||||
|
.coverage.*
|
||||||
|
.cache
|
||||||
|
nosetests.xml
|
||||||
|
coverage.xml
|
||||||
|
*.cover
|
||||||
|
*.py,cover
|
||||||
|
.hypothesis/
|
||||||
|
.pytest_cache/
|
||||||
|
cover/
|
||||||
|
|
||||||
|
# Translations
|
||||||
|
*.mo
|
||||||
|
*.pot
|
||||||
|
|
||||||
|
# Django stuff:
|
||||||
|
*.log
|
||||||
|
local_settings.py
|
||||||
|
db.sqlite3
|
||||||
|
db.sqlite3-journal
|
||||||
|
|
||||||
|
# Flask stuff:
|
||||||
|
instance/
|
||||||
|
.webassets-cache
|
||||||
|
|
||||||
|
# Scrapy stuff:
|
||||||
|
.scrapy
|
||||||
|
|
||||||
|
# Sphinx documentation
|
||||||
|
docs/_build/
|
||||||
|
|
||||||
|
# PyBuilder
|
||||||
|
.pybuilder/
|
||||||
|
target/
|
||||||
|
|
||||||
|
# Jupyter Notebook
|
||||||
|
|
||||||
|
# IPython
|
||||||
|
|
||||||
|
# pyenv
|
||||||
|
# For a library or package, you might want to ignore these files since the code is
|
||||||
|
# intended to run in multiple environments; otherwise, check them in:
|
||||||
|
# .python-version
|
||||||
|
|
||||||
|
# pipenv
|
||||||
|
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
||||||
|
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
||||||
|
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
||||||
|
# install all needed dependencies.
|
||||||
|
#Pipfile.lock
|
||||||
|
|
||||||
|
# poetry
|
||||||
|
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
||||||
|
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
||||||
|
# commonly ignored for libraries.
|
||||||
|
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
||||||
|
#poetry.lock
|
||||||
|
|
||||||
|
# pdm
|
||||||
|
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
||||||
|
#pdm.lock
|
||||||
|
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
||||||
|
# in version control.
|
||||||
|
# https://pdm.fming.dev/#use-with-ide
|
||||||
|
.pdm.toml
|
||||||
|
|
||||||
|
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
||||||
|
__pypackages__/
|
||||||
|
|
||||||
|
# Celery stuff
|
||||||
|
celerybeat-schedule
|
||||||
|
celerybeat.pid
|
||||||
|
|
||||||
|
# SageMath parsed files
|
||||||
|
*.sage.py
|
||||||
|
|
||||||
|
# Environments
|
||||||
|
.env
|
||||||
|
.venv
|
||||||
|
env/
|
||||||
|
venv/
|
||||||
|
ENV/
|
||||||
|
env.bak/
|
||||||
|
venv.bak/
|
||||||
|
|
||||||
|
# Spyder project settings
|
||||||
|
.spyderproject
|
||||||
|
.spyproject
|
||||||
|
|
||||||
|
# Rope project settings
|
||||||
|
.ropeproject
|
||||||
|
|
||||||
|
# mkdocs documentation
|
||||||
|
/site
|
||||||
|
|
||||||
|
# mypy
|
||||||
|
.mypy_cache/
|
||||||
|
.dmypy.json
|
||||||
|
dmypy.json
|
||||||
|
|
||||||
|
# Pyre type checker
|
||||||
|
.pyre/
|
||||||
|
|
||||||
|
# pytype static type analyzer
|
||||||
|
.pytype/
|
||||||
|
|
||||||
|
# Cython debug symbols
|
||||||
|
cython_debug/
|
||||||
|
|
||||||
|
# PyCharm
|
||||||
|
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
||||||
|
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
||||||
|
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
||||||
|
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||||
|
#.idea/
|
||||||
|
|
||||||
|
### Python Patch ###
|
||||||
|
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
|
||||||
|
poetry.toml
|
||||||
|
|
||||||
|
# ruff
|
||||||
|
.ruff_cache/
|
||||||
|
|
||||||
|
# LSP config files
|
||||||
|
pyrightconfig.json
|
||||||
|
|
||||||
|
.quarto/
|
||||||
|
|
||||||
|
### Vim ###
|
||||||
|
# Swap
|
||||||
|
[._]*.s[a-v][a-z]
|
||||||
|
!*.svg # comment out if you don't need vector files
|
||||||
|
[._]*.sw[a-p]
|
||||||
|
[._]s[a-rt-v][a-z]
|
||||||
|
[._]ss[a-gi-z]
|
||||||
|
[._]sw[a-p]
|
||||||
|
|
||||||
|
# Session
|
||||||
|
Session.vim
|
||||||
|
Sessionx.vim
|
||||||
|
|
||||||
|
# Temporary
|
||||||
|
.netrwhist
|
||||||
|
# Auto-generated tag files
|
||||||
|
tags
|
||||||
|
# Persistent undo
|
||||||
|
[._]*.un~
|
||||||
|
|
||||||
|
# End of https://www.toptal.com/developers/gitignore/api/-f,python,linux,vim,quarto,markdown,jupyternotebooks
|
4
.papis.config
Normal file
4
.papis.config
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
[settings]
|
||||||
|
|
||||||
|
[main]
|
||||||
|
dir = 03-supplementary_data/library
|
84
03-supplementary_data/lib.bib
Normal file
84
03-supplementary_data/lib.bib
Normal file
|
@ -0,0 +1,84 @@
|
||||||
|
@techreport{ilo2015,
|
||||||
|
address = {International Labour Office, Geneva},
|
||||||
|
author = {ILO},
|
||||||
|
institution = {International Labour Organization},
|
||||||
|
title = {Recommendation No. 204 concerning the Transition from the Informal to the Formal Economy},
|
||||||
|
year = {2015},
|
||||||
|
}
|
||||||
|
|
||||||
|
@techreport{ilo2002,
|
||||||
|
author = {ILO},
|
||||||
|
institution = {International Labour Organization},
|
||||||
|
title = {Resolution on decent work and the informal economy},
|
||||||
|
year = {2002},
|
||||||
|
}
|
||||||
|
|
||||||
|
@techreport{ilo2023,
|
||||||
|
author = {ILO},
|
||||||
|
institution = {International Labour Organization},
|
||||||
|
title = {Guidelines concerning a statistical definition of informal employment},
|
||||||
|
year = {2023},
|
||||||
|
}
|
||||||
|
|
||||||
|
@techreport{ilo2021,
|
||||||
|
author = {ILO},
|
||||||
|
institution = {International Labour Organization},
|
||||||
|
title = {Inequalities and the world of work},
|
||||||
|
year = {2021},
|
||||||
|
}
|
||||||
|
|
||||||
|
@techreport{ilo2021a,
|
||||||
|
author = {ILO},
|
||||||
|
institution = {International Labour Organization},
|
||||||
|
title = {Resolution concerning inequalities and the world of work},
|
||||||
|
year = {2021},
|
||||||
|
}
|
||||||
|
|
||||||
|
@techreport{ilo2022,
|
||||||
|
author = {ILO},
|
||||||
|
institution = {International Labour Organization},
|
||||||
|
title = {Follow-up to the resolution concerning inequalities and the world of work: Comprehensive and integrated ILO strategy to reduce and prevent inequalities in the world of work},
|
||||||
|
year = {2022},
|
||||||
|
}
|
||||||
|
|
||||||
|
@techreport{ilo2013,
|
||||||
|
author = {ILO},
|
||||||
|
institution = {International Labour Organization},
|
||||||
|
title = {Resolution concerning statistics of work, employment and labour underutilization},
|
||||||
|
year = {2013},
|
||||||
|
}
|
||||||
|
|
||||||
|
@techreport{ilotrends2022,
|
||||||
|
author = {ILO},
|
||||||
|
institution = {International Labour Organization},
|
||||||
|
title = {World Employment and Social Outlook: Trends 2022},
|
||||||
|
year = {2022},
|
||||||
|
}
|
||||||
|
|
||||||
|
@techreport{ilodomestic2023,
|
||||||
|
author = {ILO},
|
||||||
|
institution = {International Labour Organization},
|
||||||
|
title = {The road to decent work for domestic workers},
|
||||||
|
year = {2023},
|
||||||
|
}
|
||||||
|
|
||||||
|
@techreport{ilotrends2023,
|
||||||
|
author = {ILO},
|
||||||
|
institution = {International Labour Organization},
|
||||||
|
title = {World Employment and Social Outlook: Trends 2023},
|
||||||
|
year = {2023},
|
||||||
|
}
|
||||||
|
|
||||||
|
@techreport{iloconditions2019,
|
||||||
|
author = {ILO},
|
||||||
|
institution = {International Labour Organization},
|
||||||
|
title = {Working conditions in a global perspective},
|
||||||
|
year = {2019},
|
||||||
|
}
|
||||||
|
|
||||||
|
@techreport{ilowomen2016,
|
||||||
|
author = {ILO},
|
||||||
|
institution = {International Labour Organization},
|
||||||
|
title = {Women at Work Trends 2016},
|
||||||
|
year = {2016},
|
||||||
|
}
|
177
03-supplementary_data/terms_of_reference-key_terms.md
Normal file
177
03-supplementary_data/terms_of_reference-key_terms.md
Normal file
|
@ -0,0 +1,177 @@
|
||||||
|
# Terms of Reference
|
||||||
|
|
||||||
|
- attention to root causes of inequalities of work
|
||||||
|
- drivers and determinants across all dimensions
|
||||||
|
- addressing both distribution and redistribution
|
||||||
|
- seen as the most innovative one (?)
|
||||||
|
- fundamental principles and rights in intl labor standards
|
||||||
|
- social dialogue and tripartism
|
||||||
|
- interconnectedness, integration and monitoring
|
||||||
|
- country-specific approaches
|
||||||
|
|
||||||
|
the assignment will:
|
||||||
|
- explain what inequalities in the world of work are
|
||||||
|
- why they should be addressed
|
||||||
|
- what is added value of ILO doing so
|
||||||
|
|
||||||
|
with target groups:
|
||||||
|
- ILO staff & constitutents
|
||||||
|
- external stakeholders & partners
|
||||||
|
|
||||||
|
objectives:
|
||||||
|
- general: support position of ILO as key actor in ongoing debates and initiatives of multilateral system on poverty and inequalities
|
||||||
|
- 1: improve understanding of what inequalities in the world of work are
|
||||||
|
- root causes
|
||||||
|
- their linkages
|
||||||
|
- how they feed into outcomes
|
||||||
|
- 2: identify evidence-based policy responses to prevent and reduce inequalities in the world of work
|
||||||
|
- minimizing of inequalities
|
||||||
|
- reducing the outcomes of inequalities
|
||||||
|
|
||||||
|
dates:
|
||||||
|
- Sep 30:
|
||||||
|
- draft detailed outline for conceptual framework
|
||||||
|
- chapter indication
|
||||||
|
- definition of inequalities in world of work, drivers and determinants
|
||||||
|
- Oct 30:
|
||||||
|
- annotated bibliography identifying effective and evidence-based policy responses to adress inequality in world of work
|
||||||
|
- annotated bibl will inform dev of conceptual framework
|
||||||
|
- presentation to task force to gather inputs and views from diff departments
|
||||||
|
|
||||||
|
## Working Strategy
|
||||||
|
|
||||||
|
### Identifying root causes of LM inequalities
|
||||||
|
|
||||||
|
- a fundamental typology of inequalities within the LM *and* beyond the labor market is necessary
|
||||||
|
- as ILO recognizes inequalities generate feedback cycles
|
||||||
|
- within a life cycle and inter-generationally (through inequalities of outcomes)
|
||||||
|
- to understand inequalities in the world of work, those beyond should not be a black box
|
||||||
|
- gender/socio-demographic/pre-existing inequalities
|
||||||
|
- put very simply:
|
||||||
|
- it might make sense for a mother to move away from a job to a space with better educational access for her child and the resulting issue should concern *both*
|
||||||
|
- access to better education in the original region
|
||||||
|
- the impact of better job availability or active labour market policies in the new region
|
||||||
|
- for each form of work to understand the primary inequalities in the LM
|
||||||
|
- we need to understand how pre-existing inequalities feed into them as independent variables
|
||||||
|
- often this will take the form of e.g. socio-demographic inequalities reflecting income inequalities
|
||||||
|
- but not always, and that is the locating of the root causes I would see as primary goal for the first part of the review
|
||||||
|
|
||||||
|
### Identifying evidence-based policy responses which address these inequalities
|
||||||
|
|
||||||
|
- if we manage to break open the black box of root causes in this way
|
||||||
|
- for vertical but especially for horizontal inequalities
|
||||||
|
- it should make it easier to analyze the impacts of policies removing inequalities for
|
||||||
|
- the causes they help reduce the effect of
|
||||||
|
- the impact on labour market inequalities itself
|
||||||
|
- and the effects on resulting equality/inequalities of opportunity
|
||||||
|
|
||||||
|
# Conceptual definitions
|
||||||
|
|
||||||
|
labour
|
||||||
|
|
||||||
|
'nature of work'
|
||||||
|
|
||||||
|
work
|
||||||
|
|
||||||
|
worlds of work
|
||||||
|
|
||||||
|
inequality in work
|
||||||
|
|
||||||
|
## forms of work
|
||||||
|
|
||||||
|
paid employment work
|
||||||
|
own-use production work
|
||||||
|
unpaid work
|
||||||
|
care work
|
||||||
|
volunteer work
|
||||||
|
unpaid trainee work
|
||||||
|
|
||||||
|
## labor market outcomes
|
||||||
|
|
||||||
|
employment
|
||||||
|
unemployment
|
||||||
|
underemployment
|
||||||
|
labour force participation
|
||||||
|
self-employment/informality
|
||||||
|
labour productivity
|
||||||
|
skills
|
||||||
|
wages/earnings
|
||||||
|
hours worked
|
||||||
|
job security
|
||||||
|
social protection coverage
|
||||||
|
labour mobility
|
||||||
|
|
||||||
|
## socio-demographic categories
|
||||||
|
|
||||||
|
gender
|
||||||
|
ethnicity
|
||||||
|
race
|
||||||
|
age
|
||||||
|
disability
|
||||||
|
|
||||||
|
## types of inequalities (in worlds of work)
|
||||||
|
|
||||||
|
general characteristics of inequality:
|
||||||
|
|
||||||
|
- 'pre-world of work' inequalities; starting well before individuals enter world of work
|
||||||
|
- unequal opportunities to healthcare, literacy, quality education
|
||||||
|
- often borne from poverty, gender, family background, lack of legal status/identity
|
||||||
|
- others often born with many advantages that give easy opportunistic access to build human capital
|
||||||
|
- inequality of opportunities !== inequality of outcome
|
||||||
|
- often, today's inequalities affect future (generations') opportunities
|
||||||
|
- high levels of current inequality = reduction in future social mobility
|
||||||
|
- conversely, (some?) focus should be put on equality of outcome today to ensure equality of opportunity tomorrow
|
||||||
|
- while focusing on these intra-country horizontal inequalities, inter-country inequalities (esp income inequality, but predisposing other as well) should not be neglected
|
||||||
|
- distinction between:
|
||||||
|
- vertical inequality
|
||||||
|
- between all households in a country
|
||||||
|
- horizontal inequality
|
||||||
|
- betweek different groups
|
||||||
|
- disparities in employment outcomes, labour rights, opportunities between groups depending on gender, age, nationality, ethnicity, health status, disability or other characteristics
|
||||||
|
|
||||||
|
forms of inequality:
|
||||||
|
|
||||||
|
- access to essential services (health, education, housing)
|
||||||
|
- income inequality
|
||||||
|
- access to means of subsistence (esp related to employment)
|
||||||
|
- gender inequality (part of horizontal, being one of the 'greatest forms of inequality today')
|
||||||
|
- results in gender-based violence, harassment, domestic violence, unpaid care work
|
||||||
|
- especially girls often facing unequal opportunities and 'persistent gender stereotypes in their access to education and health services and in other aspects of life' [13, ILC]
|
||||||
|
- in most regions wome over-represented among poorest and under-represented among richest people (esp in SoutAs;EastAs;Pacific regions)
|
||||||
|
- born primarily from unequal access to quality education, inequalities and injustices in labour market participation, gender earnings gaps
|
||||||
|
- often also results in children being exposed to severe health and food deprivation and differences in control over assets (capital/land)
|
||||||
|
- recently exacerbated by COVID-19 reversing equality progress through increased women's/men's paid/unpaid/care work inequalities
|
||||||
|
- girls/boys from ethnic minorities, indigenous, tribal populations, remote rural areas often facing barriers accessing quality education & essential services
|
||||||
|
- indigenous people account for 6% of world pop but 19% of extreme poor
|
||||||
|
- stark contrast between migrant workers' high labour force participation rates and large proportion of low-income households
|
||||||
|
- spatial inequalities (rural/urban; small/large cities; richt/poor regions)
|
||||||
|
- contributes to overall more fractures/unequal societies
|
||||||
|
- intersectional inequalities (made possible to highlight by vert/horiz inequality split)
|
||||||
|
- unequal distribution of work & labour income
|
||||||
|
- among workforce among most important determinants of inequality
|
||||||
|
- unemployment: forecloses income prospects; highest rate in young people
|
||||||
|
- underemployment:
|
||||||
|
- low wages make meeting basic needs impossible (esp. food, healthcare, education, decent housing)
|
||||||
|
- including differentiation time-related underemployment (would like to work more paid hours); potential labour force (would like to work but not actively searching or not available for work); creates (way) higher numbers than purely unemployment numbers - especially in LIC
|
||||||
|
- recently, (COVID-19) women, young people, less educated, low earners less likely to keep their jobs
|
||||||
|
|
||||||
|
## types of policies
|
||||||
|
|
||||||
|
- income:
|
||||||
|
- difference between primary distribution ('market income', through property and employment) and secondary distribution ('disposable income', through taxes and transfers), and tertiary distribution (public services)
|
||||||
|
- tax and transfers redistributing incomes towards greater equality in disposable income
|
||||||
|
- extent of redistribution limited by small fiscal resources (e.g. through informal labour predominance)
|
||||||
|
- policies to reduce income difference between urban/rural, ethnic minorities/majority one of main drivers of reduced income inequality (LAC region)
|
||||||
|
|
||||||
|
# Summary draft
|
||||||
|
|
||||||
|
- pre-world of work characteristics already taking huge influence on labour market and related equality of outcomes
|
||||||
|
- inequality in access to essential services (health, education, housing)
|
||||||
|
- inequality in access to means of subsistence (esp related to employment)
|
||||||
|
- income inequality huge driver of resulting inequalities, in turn already influenced by characteristics, additionally:
|
||||||
|
- spatial inequality
|
||||||
|
- gender inequality
|
||||||
|
- employment inequality:
|
||||||
|
- unemployment: forecloses income prospects; highest rate in young people
|
||||||
|
- underemployment: low wages make meeting basic needs impossible (esp. food, healthcare, education, decent housing)
|
||||||
|
- split into time-related underemployment and potential labour force
|
16
Makefile
Normal file
16
Makefile
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
SHELL=/bin/bash
|
||||||
|
.PHONY: default
|
||||||
|
|
||||||
|
default: all
|
||||||
|
|
||||||
|
bib: 03-supplementary_data/library
|
||||||
|
[ -f 03-supplementary_data/lib.bib ] && rm 03-supplementary_data/lib.bib
|
||||||
|
papis export -a -o 03-supplementary_data/lib.bib
|
||||||
|
|
||||||
|
render: concepts.md
|
||||||
|
quarto render
|
||||||
|
|
||||||
|
config: ~/documents/library/litrev-rahman
|
||||||
|
ln -s ~/documents/library/ilo-wow 03-supplementary_data/library
|
||||||
|
|
||||||
|
all: bib render
|
15
_quarto.yml
Normal file
15
_quarto.yml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
project:
|
||||||
|
title: "Key terms and definitions"
|
||||||
|
output-dir: 04-outputs
|
||||||
|
render:
|
||||||
|
- concepts.md
|
||||||
|
|
||||||
|
format:
|
||||||
|
docx:
|
||||||
|
echo: false
|
||||||
|
pdf:
|
||||||
|
pdf-engine: tectonic
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue