├── .gitignore ├── LICENSE.txt ├── README.md ├── TODO.md ├── changelog.md ├── docs ├── css │ ├── extra-material-dark.css │ ├── extra-material-dark.scss │ ├── extra-material.css │ └── extra-rtd.css ├── getting-started.md ├── helpers.js ├── index.md ├── old-help.txt ├── programs │ ├── saveTable.R │ ├── saveTable.ado │ ├── saveTable.jl │ ├── saveTable.m │ ├── saveTable.py │ ├── stata.toc │ ├── tablefill_example.pkg │ └── test.txt ├── sample-programs.md └── usage │ ├── 01basic │ ├── filled.md │ ├── filled.tex │ ├── input.txt │ ├── template.md │ └── template.tex │ ├── 02matrix-input.md │ ├── 03placeholders.md │ ├── 04common-issues.md │ ├── 05advanced-options.md │ └── 06xml-engine.md ├── issues ├── 2 │ ├── fill_tables.py │ ├── filled │ │ └── template.tex │ ├── tablefill.py │ ├── tables1.txt │ ├── tables2.txt │ ├── tables3.txt │ └── template │ │ └── template.tex └── 3 │ ├── filled.md │ ├── filled.tex │ ├── matrix.txt │ ├── pnystrup-matrix.txt │ ├── pnystrup-output.tex │ ├── pnystrup-template.tex │ ├── template.md │ └── template.tex ├── mkdocs.yml ├── setup.py ├── tablefill ├── __init__.py └── tablefill.py └── test ├── input ├── tablefill_template ├── tablefill_template.lyx ├── tablefill_template.py ├── tablefill_template.tex ├── tablefill_template_breaks.lyx ├── tablefill_template_breaks.tex ├── tablefill_template_filled.lyx ├── tablefill_template_filled.pdf ├── tablefill_template_filled.tex ├── tablefill_template_nolab.lyx ├── tablefill_template_nolab.tex ├── tablefill_template_wrong.lyx ├── tablefill_template_wrong.tex ├── tables_appendix.txt ├── tables_appendix_two.txt └── tables_nolabel.txt ├── nostderrout.py ├── tablefill_template_filled.lyx ├── tablefill_template_filled.tex ├── tablefill_template_nolab_filled.tex ├── tablefill_template_wrong_filled.tex ├── test_tablefill_all.py └── test_tablefill_extra.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/TODO.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/changelog.md -------------------------------------------------------------------------------- /docs/css/extra-material-dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/css/extra-material-dark.css -------------------------------------------------------------------------------- /docs/css/extra-material-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/css/extra-material-dark.scss -------------------------------------------------------------------------------- /docs/css/extra-material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/css/extra-material.css -------------------------------------------------------------------------------- /docs/css/extra-rtd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/css/extra-rtd.css -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/helpers.js -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /docs/old-help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/old-help.txt -------------------------------------------------------------------------------- /docs/programs/saveTable.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/programs/saveTable.R -------------------------------------------------------------------------------- /docs/programs/saveTable.ado: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/programs/saveTable.ado -------------------------------------------------------------------------------- /docs/programs/saveTable.jl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/programs/saveTable.jl -------------------------------------------------------------------------------- /docs/programs/saveTable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/programs/saveTable.m -------------------------------------------------------------------------------- /docs/programs/saveTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/programs/saveTable.py -------------------------------------------------------------------------------- /docs/programs/stata.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/programs/stata.toc -------------------------------------------------------------------------------- /docs/programs/tablefill_example.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/programs/tablefill_example.pkg -------------------------------------------------------------------------------- /docs/programs/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/programs/test.txt -------------------------------------------------------------------------------- /docs/sample-programs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/sample-programs.md -------------------------------------------------------------------------------- /docs/usage/01basic/filled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/usage/01basic/filled.md -------------------------------------------------------------------------------- /docs/usage/01basic/filled.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/usage/01basic/filled.tex -------------------------------------------------------------------------------- /docs/usage/01basic/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/usage/01basic/input.txt -------------------------------------------------------------------------------- /docs/usage/01basic/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/usage/01basic/template.md -------------------------------------------------------------------------------- /docs/usage/01basic/template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/usage/01basic/template.tex -------------------------------------------------------------------------------- /docs/usage/02matrix-input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/usage/02matrix-input.md -------------------------------------------------------------------------------- /docs/usage/03placeholders.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/usage/03placeholders.md -------------------------------------------------------------------------------- /docs/usage/04common-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/usage/04common-issues.md -------------------------------------------------------------------------------- /docs/usage/05advanced-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/usage/05advanced-options.md -------------------------------------------------------------------------------- /docs/usage/06xml-engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/docs/usage/06xml-engine.md -------------------------------------------------------------------------------- /issues/2/fill_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/issues/2/fill_tables.py -------------------------------------------------------------------------------- /issues/2/filled/template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/issues/2/filled/template.tex -------------------------------------------------------------------------------- /issues/2/tablefill.py: -------------------------------------------------------------------------------- 1 | ../../tablefill/tablefill.py -------------------------------------------------------------------------------- /issues/2/tables1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/issues/2/tables1.txt -------------------------------------------------------------------------------- /issues/2/tables2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/issues/2/tables2.txt -------------------------------------------------------------------------------- /issues/2/tables3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/issues/2/tables3.txt -------------------------------------------------------------------------------- /issues/2/template/template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/issues/2/template/template.tex -------------------------------------------------------------------------------- /issues/3/filled.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/issues/3/filled.md -------------------------------------------------------------------------------- /issues/3/filled.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/issues/3/filled.tex -------------------------------------------------------------------------------- /issues/3/matrix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/issues/3/matrix.txt -------------------------------------------------------------------------------- /issues/3/pnystrup-matrix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/issues/3/pnystrup-matrix.txt -------------------------------------------------------------------------------- /issues/3/pnystrup-output.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/issues/3/pnystrup-output.tex -------------------------------------------------------------------------------- /issues/3/pnystrup-template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/issues/3/pnystrup-template.tex -------------------------------------------------------------------------------- /issues/3/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/issues/3/template.md -------------------------------------------------------------------------------- /issues/3/template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/issues/3/template.tex -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/setup.py -------------------------------------------------------------------------------- /tablefill/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/tablefill/__init__.py -------------------------------------------------------------------------------- /tablefill/tablefill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/tablefill/tablefill.py -------------------------------------------------------------------------------- /test/input/tablefill_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/input/tablefill_template -------------------------------------------------------------------------------- /test/input/tablefill_template.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/input/tablefill_template.lyx -------------------------------------------------------------------------------- /test/input/tablefill_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/input/tablefill_template.py -------------------------------------------------------------------------------- /test/input/tablefill_template.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/input/tablefill_template.tex -------------------------------------------------------------------------------- /test/input/tablefill_template_breaks.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/input/tablefill_template_breaks.lyx -------------------------------------------------------------------------------- /test/input/tablefill_template_breaks.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/input/tablefill_template_breaks.tex -------------------------------------------------------------------------------- /test/input/tablefill_template_filled.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/input/tablefill_template_filled.lyx -------------------------------------------------------------------------------- /test/input/tablefill_template_filled.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/input/tablefill_template_filled.pdf -------------------------------------------------------------------------------- /test/input/tablefill_template_filled.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/input/tablefill_template_filled.tex -------------------------------------------------------------------------------- /test/input/tablefill_template_nolab.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/input/tablefill_template_nolab.lyx -------------------------------------------------------------------------------- /test/input/tablefill_template_nolab.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/input/tablefill_template_nolab.tex -------------------------------------------------------------------------------- /test/input/tablefill_template_wrong.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/input/tablefill_template_wrong.lyx -------------------------------------------------------------------------------- /test/input/tablefill_template_wrong.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/input/tablefill_template_wrong.tex -------------------------------------------------------------------------------- /test/input/tables_appendix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/input/tables_appendix.txt -------------------------------------------------------------------------------- /test/input/tables_appendix_two.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/input/tables_appendix_two.txt -------------------------------------------------------------------------------- /test/input/tables_nolabel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/input/tables_nolabel.txt -------------------------------------------------------------------------------- /test/nostderrout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/nostderrout.py -------------------------------------------------------------------------------- /test/tablefill_template_filled.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/tablefill_template_filled.lyx -------------------------------------------------------------------------------- /test/tablefill_template_filled.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/tablefill_template_filled.tex -------------------------------------------------------------------------------- /test/tablefill_template_nolab_filled.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/tablefill_template_nolab_filled.tex -------------------------------------------------------------------------------- /test/tablefill_template_wrong_filled.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/tablefill_template_wrong_filled.tex -------------------------------------------------------------------------------- /test/test_tablefill_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/test_tablefill_all.py -------------------------------------------------------------------------------- /test/test_tablefill_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcaceresb/tablefill/HEAD/test/test_tablefill_extra.py --------------------------------------------------------------------------------