├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ └── general-issue.md ├── .gitignore ├── README.md ├── doc-include ├── migrate-mac.dtx └── migrate-par.dtx ├── doc-more ├── latexmkrc ├── makefile └── page-typesetting-columns.tex ├── latexmkrc ├── makefile ├── migration.dtx ├── reledmac.dtx ├── reledmac.ins ├── reledpar.dtx └── reledpar.ins /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maieul/ledmac/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maieul/ledmac/HEAD/.github/ISSUE_TEMPLATE/general-issue.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maieul/ledmac/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maieul/ledmac/HEAD/README.md -------------------------------------------------------------------------------- /doc-include/migrate-mac.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maieul/ledmac/HEAD/doc-include/migrate-mac.dtx -------------------------------------------------------------------------------- /doc-include/migrate-par.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maieul/ledmac/HEAD/doc-include/migrate-par.dtx -------------------------------------------------------------------------------- /doc-more/latexmkrc: -------------------------------------------------------------------------------- 1 | $pdf_mode = "5"; -------------------------------------------------------------------------------- /doc-more/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maieul/ledmac/HEAD/doc-more/makefile -------------------------------------------------------------------------------- /doc-more/page-typesetting-columns.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maieul/ledmac/HEAD/doc-more/page-typesetting-columns.tex -------------------------------------------------------------------------------- /latexmkrc: -------------------------------------------------------------------------------- 1 | $pdf_mode = "5"; -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maieul/ledmac/HEAD/makefile -------------------------------------------------------------------------------- /migration.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maieul/ledmac/HEAD/migration.dtx -------------------------------------------------------------------------------- /reledmac.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maieul/ledmac/HEAD/reledmac.dtx -------------------------------------------------------------------------------- /reledmac.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maieul/ledmac/HEAD/reledmac.ins -------------------------------------------------------------------------------- /reledpar.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maieul/ledmac/HEAD/reledpar.dtx -------------------------------------------------------------------------------- /reledpar.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maieul/ledmac/HEAD/reledpar.ins --------------------------------------------------------------------------------