├── .appveyor.yml ├── .circleci ├── config.yml ├── inner-build.sh └── outer-build.sh ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .rustfmt.toml ├── .travis.yml.disabled ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── RELEASE_PROCESS.md ├── bibtex ├── Cargo.toml └── src │ └── lib.rs ├── bridge ├── Cargo.toml ├── build.rs ├── src │ ├── lib.rs │ ├── macro_stub.rs │ └── stub_errno.rs └── stub │ └── stub_errno.c ├── cfg_support ├── Cargo.toml ├── LICENSE ├── README.md └── src │ └── lib.rs ├── dist ├── appimage │ ├── .gitignore │ ├── build.sh │ ├── tectonic.desktop │ └── tectonic.svg ├── arch │ ├── PKGBUILD │ └── deploy.sh ├── build-mdbook.sh ├── deploy_key.enc ├── deploy_key.pub ├── docker │ └── x86_64-alpine-linux-musl │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── cargo-config.toml │ │ ├── linkwrapper.sh │ │ ├── setup_priv.sh │ │ ├── setup_unpriv.sh │ │ ├── sudoers │ │ └── toolwrapper.sh ├── force-push-tree.sh ├── prepare-win-ci-deps.bat └── travis.sh ├── docs ├── book.toml └── src │ ├── SUMMARY.md │ ├── cli │ └── index.md │ ├── cookbook │ ├── index.md │ └── vcpkg.md │ ├── getting-started │ └── index.md │ ├── index.md │ ├── introduction │ └── index.md │ └── lang-impl │ └── index.md ├── dpx ├── Cargo.toml ├── LICENSE ├── build.rs ├── shims │ └── dpx_shims.c └── src │ ├── dpx_agl.rs │ ├── dpx_bmpimage.rs │ ├── dpx_cff.rs │ ├── dpx_cff_dict.rs │ ├── dpx_cid.rs │ ├── dpx_cidtype0.rs │ ├── dpx_cidtype2.rs │ ├── dpx_cmap.rs │ ├── dpx_cmap_read.rs │ ├── dpx_cmap_write.rs │ ├── dpx_cs_type2.rs │ ├── dpx_dpxconf.rs │ ├── dpx_dpxcrypt.rs │ ├── dpx_dpxfile.rs │ ├── dpx_dpxutil.rs │ ├── dpx_dvi.rs │ ├── dpx_dvicodes.rs │ ├── dpx_dvipdfmx.rs │ ├── dpx_epdf.rs │ ├── dpx_error.rs │ ├── dpx_fontmap.rs │ ├── dpx_jp2image.rs │ ├── dpx_jpegimage.rs │ ├── dpx_mfileio.rs │ ├── dpx_mpost.rs │ ├── dpx_numbers.rs │ ├── dpx_otl_opt.rs │ ├── dpx_pdfcolor.rs │ ├── dpx_pdfdev.rs │ ├── dpx_pdfdoc.rs │ ├── dpx_pdfdraw.rs │ ├── dpx_pdfencoding.rs │ ├── dpx_pdfencrypt.rs │ ├── dpx_pdffont.rs │ ├── dpx_pdfnames.rs │ ├── dpx_pdfobj.rs │ ├── dpx_pdfparse.rs │ ├── dpx_pdfresource.rs │ ├── dpx_pdfximage.rs │ ├── dpx_pkfont.rs │ ├── dpx_pngimage.rs │ ├── dpx_pst.rs │ ├── dpx_sfnt.rs │ ├── dpx_subfont.rs │ ├── dpx_t1_char.rs │ ├── dpx_t1_load.rs │ ├── dpx_tfm.rs │ ├── dpx_truetype.rs │ ├── dpx_tt_aux.rs │ ├── dpx_tt_cmap.rs │ ├── dpx_tt_glyf.rs │ ├── dpx_tt_gsub.rs │ ├── dpx_tt_post.rs │ ├── dpx_tt_table.rs │ ├── dpx_type0.rs │ ├── dpx_type1.rs │ ├── dpx_type1c.rs │ ├── dpx_unicode.rs │ ├── dpx_vf.rs │ ├── lib.rs │ ├── shims.rs │ ├── specials.rs │ └── specials │ ├── color.rs │ ├── dvipdfmx.rs │ ├── dvips.rs │ ├── html.rs │ ├── misc.rs │ ├── pdfm.rs │ ├── tpic.rs │ ├── util.rs │ └── xtx.rs ├── engine ├── Cargo.toml ├── build.rs ├── src │ ├── cmd.rs │ ├── fmt_file.rs │ ├── lib.rs │ ├── node.rs │ ├── stub_icu.rs │ ├── stub_teckit.rs │ ├── text_layout_engine.rs │ ├── tfm.rs │ ├── trie.rs │ ├── xetex_aatfont.rs │ ├── xetex_consts.rs │ ├── xetex_engine_interface.rs │ ├── xetex_errors.rs │ ├── xetex_ext.rs │ ├── xetex_font_info.rs │ ├── xetex_font_info_coretext.rs │ ├── xetex_font_manager.rs │ ├── xetex_font_manager_coretext.rs │ ├── xetex_font_manager_fontconfig.rs │ ├── xetex_ini.rs │ ├── xetex_io.rs │ ├── xetex_layout_interface.rs │ ├── xetex_linebreak.rs │ ├── xetex_math.rs │ ├── xetex_opentype_math.rs │ ├── xetex_output.rs │ ├── xetex_pagebuilder.rs │ ├── xetex_pic.rs │ ├── xetex_scaledmath.rs │ ├── xetex_shipout.rs │ ├── xetex_stringpool.rs │ ├── xetex_synctex.rs │ ├── xetex_texmfmp.rs │ ├── xetex_xetex0.rs │ └── xetex_xetexd.rs └── tectonic │ ├── core-foundation.h │ ├── stub_icu.c │ ├── stub_stdio.c │ ├── teckit-Common.h │ ├── teckit-Engine.cpp │ ├── teckit-Format.h │ ├── teckit-NormalizationData.c │ ├── teckit-c-Engine.h │ └── teckit-cxx-Engine.h ├── fuzz ├── .gitignore ├── Cargo.toml ├── README.md ├── fuzz_targets │ └── compile.rs ├── run-fuzzer.sh └── seeds │ └── hello.tex ├── src ├── app_dirs.rs ├── bin │ └── tectonic.rs ├── config.rs ├── digest.rs ├── driver.rs ├── engines │ ├── bibtex.rs │ ├── mod.rs │ ├── spx2html.rs │ ├── tex.rs │ └── xdvipdfmx.rs ├── errors.rs ├── io │ ├── cached_itarbundle.rs │ ├── dirbundle.rs │ ├── filesystem.rs │ ├── format_cache.rs │ ├── memory.rs │ ├── mod.rs │ ├── setup.rs │ ├── stack.rs │ ├── stdstreams.rs │ └── zipbundle.rs ├── lib.rs ├── status │ ├── mod.rs │ ├── plain.rs │ └── termcolor.rs ├── test_util.rs └── unstable_opts.rs ├── tests ├── assets │ ├── ckx.map │ ├── cmbsy10.tfm │ ├── cmbx10.tfm │ ├── cmbx5.tfm │ ├── cmbx6.tfm │ ├── cmbx7.tfm │ ├── cmbx8.tfm │ ├── cmbx9.tfm │ ├── cmcsc10.tfm │ ├── cmdunh10.tfm │ ├── cmex10.tfm │ ├── cmmi10.tfm │ ├── cmmi5.tfm │ ├── cmmi6.tfm │ ├── cmmi7.tfm │ ├── cmmi8.tfm │ ├── cmmi9.tfm │ ├── cmmib10.tfm │ ├── cmr10.pfb │ ├── cmr10.tfm │ ├── cmr5.tfm │ ├── cmr6.tfm │ ├── cmr7.tfm │ ├── cmr8.tfm │ ├── cmr9.tfm │ ├── cmsl10.tfm │ ├── cmsl8.tfm │ ├── cmsl9.tfm │ ├── cmsltt10.tfm │ ├── cmss10.tfm │ ├── cmssbx10.tfm │ ├── cmssi10.tfm │ ├── cmssq8.tfm │ ├── cmssqi8.tfm │ ├── cmsy10.tfm │ ├── cmsy5.tfm │ ├── cmsy6.tfm │ ├── cmsy7.tfm │ ├── cmsy8.tfm │ ├── cmsy9.tfm │ ├── cmti10.tfm │ ├── cmti7.tfm │ ├── cmti8.tfm │ ├── cmti9.tfm │ ├── cmtt10.tfm │ ├── cmtt8.tfm │ ├── cmtt9.tfm │ ├── cmu10.tfm │ ├── glyphlist.txt │ ├── hyphen.tex │ ├── issue393_ungetc_trigger.pdf │ ├── kanjix.map │ ├── knuth-plain.tex │ ├── lmroman12-regular.otf │ ├── manfnt.tfm │ ├── pdfglyphlist.txt │ ├── pdftex.map │ ├── plain.tex │ ├── png_gray_4bit.png │ ├── png_graya.png │ ├── png_palette_4bit.png │ ├── png_palette_alpha.png │ ├── png_rgba.png │ ├── png_rgba_16_bit.png │ ├── redbox.png │ ├── tectonic-format-latex.tex │ └── tectonic-format-plain.tex ├── bibtex.rs ├── bibtex │ ├── plain.bst │ ├── single_entry.aux │ ├── single_entry.bbl │ ├── single_entry.bib │ └── single_entry.blg ├── cached_itarbundle.rs ├── driver.rs ├── executable.rs ├── executable │ ├── subdirectory │ │ ├── content │ │ │ └── 1.tex │ │ └── relative_include.tex │ └── test space.tex ├── formats.rs ├── tex-outputs.rs ├── tex-outputs │ ├── a4paper.log │ ├── a4paper.pdf │ ├── a4paper.tex │ ├── a4paper.xdv │ ├── file_encoding.log │ ├── file_encoding.tex │ ├── file_encoding.xdv │ ├── file_encoding_utf16be.txt │ ├── file_encoding_utf16le.txt │ ├── file_encoding_utf8.txt │ ├── hallöchen 🐨 welt 🌍.log │ ├── hallöchen 🐨 welt 🌍.tex │ ├── hallöchen 🐨 welt 🌍.xdv │ ├── issue393_ungetc.log │ ├── issue393_ungetc.tex │ ├── issue393_ungetc.xdv │ ├── md5_of_hello.log │ ├── md5_of_hello.pdf │ ├── md5_of_hello.tex │ ├── md5_of_hello.xdv │ ├── negative_roman_numeral.log │ ├── negative_roman_numeral.tex │ ├── negative_roman_numeral.xdv │ ├── otf_basic.log │ ├── otf_basic.tex │ ├── otf_basic.xdv │ ├── pdfoutput.log │ ├── pdfoutput.tex │ ├── pdfoutput.xdv │ ├── png_formats.log │ ├── png_formats.pdf │ ├── png_formats.tex │ ├── png_formats.xdv │ ├── redbox_png.log │ ├── redbox_png.pdf │ ├── redbox_png.tex │ ├── redbox_png.xdv │ ├── synctex.log │ ├── synctex.synctex.gz │ ├── synctex.tex │ ├── synctex.xdv │ ├── tectoniccodatokens_errinside.log │ ├── tectoniccodatokens_errinside.tex │ ├── tectoniccodatokens_noend.log │ ├── tectoniccodatokens_noend.tex │ ├── tectoniccodatokens_ok.log │ ├── tectoniccodatokens_ok.tex │ ├── tectoniccodatokens_ok.xdv │ ├── tex_logo.log │ ├── tex_logo.pdf │ ├── tex_logo.tex │ ├── tex_logo.xdv │ ├── the_letter_a.log │ ├── the_letter_a.pdf │ ├── the_letter_a.tex │ └── the_letter_a.xdv ├── trip.rs ├── trip │ ├── etrip.fot │ ├── etrip.log │ ├── etrip.out │ ├── etrip.tex │ ├── etrip.tfm │ ├── etrip.xdv │ ├── trip.fot │ ├── trip.log │ ├── trip.tex │ ├── trip.tfm │ ├── trip.xdv │ └── tripos.tex ├── util │ └── mod.rs └── xenia │ ├── .version │ ├── aastex6.cls │ ├── gemini.pdf │ ├── mode.tex │ ├── paper.bib │ ├── paper.tex │ ├── pdm.pdf │ ├── phased.pdf │ ├── schematic.pdf │ ├── setup.tex │ ├── vla.pdf │ └── yahapj.bst └── xdv ├── Cargo.toml ├── README.md ├── examples └── xdvdump.rs └── src └── lib.rs /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.circleci/inner-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/.circleci/inner-build.sh -------------------------------------------------------------------------------- /.circleci/outer-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/.circleci/outer-build.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/.gitmodules -------------------------------------------------------------------------------- /.rustfmt.toml: -------------------------------------------------------------------------------- 1 | edition = "2018" 2 | -------------------------------------------------------------------------------- /.travis.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/.travis.yml.disabled -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_PROCESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/RELEASE_PROCESS.md -------------------------------------------------------------------------------- /bibtex/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/bibtex/Cargo.toml -------------------------------------------------------------------------------- /bibtex/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/bibtex/src/lib.rs -------------------------------------------------------------------------------- /bridge/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/bridge/Cargo.toml -------------------------------------------------------------------------------- /bridge/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/bridge/build.rs -------------------------------------------------------------------------------- /bridge/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/bridge/src/lib.rs -------------------------------------------------------------------------------- /bridge/src/macro_stub.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/bridge/src/macro_stub.rs -------------------------------------------------------------------------------- /bridge/src/stub_errno.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/bridge/src/stub_errno.rs -------------------------------------------------------------------------------- /bridge/stub/stub_errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/bridge/stub/stub_errno.c -------------------------------------------------------------------------------- /cfg_support/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/cfg_support/Cargo.toml -------------------------------------------------------------------------------- /cfg_support/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/cfg_support/LICENSE -------------------------------------------------------------------------------- /cfg_support/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/cfg_support/README.md -------------------------------------------------------------------------------- /cfg_support/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/cfg_support/src/lib.rs -------------------------------------------------------------------------------- /dist/appimage/.gitignore: -------------------------------------------------------------------------------- 1 | /*.AppImage 2 | /*.zsync 3 | 4 | -------------------------------------------------------------------------------- /dist/appimage/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dist/appimage/build.sh -------------------------------------------------------------------------------- /dist/appimage/tectonic.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dist/appimage/tectonic.desktop -------------------------------------------------------------------------------- /dist/appimage/tectonic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dist/appimage/tectonic.svg -------------------------------------------------------------------------------- /dist/arch/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dist/arch/PKGBUILD -------------------------------------------------------------------------------- /dist/arch/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dist/arch/deploy.sh -------------------------------------------------------------------------------- /dist/build-mdbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dist/build-mdbook.sh -------------------------------------------------------------------------------- /dist/deploy_key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dist/deploy_key.enc -------------------------------------------------------------------------------- /dist/deploy_key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dist/deploy_key.pub -------------------------------------------------------------------------------- /dist/docker/x86_64-alpine-linux-musl/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dist/docker/x86_64-alpine-linux-musl/Dockerfile -------------------------------------------------------------------------------- /dist/docker/x86_64-alpine-linux-musl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dist/docker/x86_64-alpine-linux-musl/README.md -------------------------------------------------------------------------------- /dist/docker/x86_64-alpine-linux-musl/cargo-config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dist/docker/x86_64-alpine-linux-musl/cargo-config.toml -------------------------------------------------------------------------------- /dist/docker/x86_64-alpine-linux-musl/linkwrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dist/docker/x86_64-alpine-linux-musl/linkwrapper.sh -------------------------------------------------------------------------------- /dist/docker/x86_64-alpine-linux-musl/setup_priv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dist/docker/x86_64-alpine-linux-musl/setup_priv.sh -------------------------------------------------------------------------------- /dist/docker/x86_64-alpine-linux-musl/setup_unpriv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dist/docker/x86_64-alpine-linux-musl/setup_unpriv.sh -------------------------------------------------------------------------------- /dist/docker/x86_64-alpine-linux-musl/sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dist/docker/x86_64-alpine-linux-musl/sudoers -------------------------------------------------------------------------------- /dist/docker/x86_64-alpine-linux-musl/toolwrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dist/docker/x86_64-alpine-linux-musl/toolwrapper.sh -------------------------------------------------------------------------------- /dist/force-push-tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dist/force-push-tree.sh -------------------------------------------------------------------------------- /dist/prepare-win-ci-deps.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dist/prepare-win-ci-deps.bat -------------------------------------------------------------------------------- /dist/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dist/travis.sh -------------------------------------------------------------------------------- /docs/book.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/docs/book.toml -------------------------------------------------------------------------------- /docs/src/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/docs/src/SUMMARY.md -------------------------------------------------------------------------------- /docs/src/cli/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/docs/src/cli/index.md -------------------------------------------------------------------------------- /docs/src/cookbook/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/docs/src/cookbook/index.md -------------------------------------------------------------------------------- /docs/src/cookbook/vcpkg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/docs/src/cookbook/vcpkg.md -------------------------------------------------------------------------------- /docs/src/getting-started/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/docs/src/getting-started/index.md -------------------------------------------------------------------------------- /docs/src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/docs/src/index.md -------------------------------------------------------------------------------- /docs/src/introduction/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/docs/src/introduction/index.md -------------------------------------------------------------------------------- /docs/src/lang-impl/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/docs/src/lang-impl/index.md -------------------------------------------------------------------------------- /dpx/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/Cargo.toml -------------------------------------------------------------------------------- /dpx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/LICENSE -------------------------------------------------------------------------------- /dpx/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/build.rs -------------------------------------------------------------------------------- /dpx/shims/dpx_shims.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/shims/dpx_shims.c -------------------------------------------------------------------------------- /dpx/src/dpx_agl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_agl.rs -------------------------------------------------------------------------------- /dpx/src/dpx_bmpimage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_bmpimage.rs -------------------------------------------------------------------------------- /dpx/src/dpx_cff.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_cff.rs -------------------------------------------------------------------------------- /dpx/src/dpx_cff_dict.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_cff_dict.rs -------------------------------------------------------------------------------- /dpx/src/dpx_cid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_cid.rs -------------------------------------------------------------------------------- /dpx/src/dpx_cidtype0.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_cidtype0.rs -------------------------------------------------------------------------------- /dpx/src/dpx_cidtype2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_cidtype2.rs -------------------------------------------------------------------------------- /dpx/src/dpx_cmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_cmap.rs -------------------------------------------------------------------------------- /dpx/src/dpx_cmap_read.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_cmap_read.rs -------------------------------------------------------------------------------- /dpx/src/dpx_cmap_write.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_cmap_write.rs -------------------------------------------------------------------------------- /dpx/src/dpx_cs_type2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_cs_type2.rs -------------------------------------------------------------------------------- /dpx/src/dpx_dpxconf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_dpxconf.rs -------------------------------------------------------------------------------- /dpx/src/dpx_dpxcrypt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_dpxcrypt.rs -------------------------------------------------------------------------------- /dpx/src/dpx_dpxfile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_dpxfile.rs -------------------------------------------------------------------------------- /dpx/src/dpx_dpxutil.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_dpxutil.rs -------------------------------------------------------------------------------- /dpx/src/dpx_dvi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_dvi.rs -------------------------------------------------------------------------------- /dpx/src/dpx_dvicodes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_dvicodes.rs -------------------------------------------------------------------------------- /dpx/src/dpx_dvipdfmx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_dvipdfmx.rs -------------------------------------------------------------------------------- /dpx/src/dpx_epdf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_epdf.rs -------------------------------------------------------------------------------- /dpx/src/dpx_error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_error.rs -------------------------------------------------------------------------------- /dpx/src/dpx_fontmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_fontmap.rs -------------------------------------------------------------------------------- /dpx/src/dpx_jp2image.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_jp2image.rs -------------------------------------------------------------------------------- /dpx/src/dpx_jpegimage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_jpegimage.rs -------------------------------------------------------------------------------- /dpx/src/dpx_mfileio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_mfileio.rs -------------------------------------------------------------------------------- /dpx/src/dpx_mpost.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_mpost.rs -------------------------------------------------------------------------------- /dpx/src/dpx_numbers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_numbers.rs -------------------------------------------------------------------------------- /dpx/src/dpx_otl_opt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_otl_opt.rs -------------------------------------------------------------------------------- /dpx/src/dpx_pdfcolor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_pdfcolor.rs -------------------------------------------------------------------------------- /dpx/src/dpx_pdfdev.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_pdfdev.rs -------------------------------------------------------------------------------- /dpx/src/dpx_pdfdoc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_pdfdoc.rs -------------------------------------------------------------------------------- /dpx/src/dpx_pdfdraw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_pdfdraw.rs -------------------------------------------------------------------------------- /dpx/src/dpx_pdfencoding.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_pdfencoding.rs -------------------------------------------------------------------------------- /dpx/src/dpx_pdfencrypt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_pdfencrypt.rs -------------------------------------------------------------------------------- /dpx/src/dpx_pdffont.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_pdffont.rs -------------------------------------------------------------------------------- /dpx/src/dpx_pdfnames.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_pdfnames.rs -------------------------------------------------------------------------------- /dpx/src/dpx_pdfobj.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_pdfobj.rs -------------------------------------------------------------------------------- /dpx/src/dpx_pdfparse.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_pdfparse.rs -------------------------------------------------------------------------------- /dpx/src/dpx_pdfresource.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_pdfresource.rs -------------------------------------------------------------------------------- /dpx/src/dpx_pdfximage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_pdfximage.rs -------------------------------------------------------------------------------- /dpx/src/dpx_pkfont.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_pkfont.rs -------------------------------------------------------------------------------- /dpx/src/dpx_pngimage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_pngimage.rs -------------------------------------------------------------------------------- /dpx/src/dpx_pst.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_pst.rs -------------------------------------------------------------------------------- /dpx/src/dpx_sfnt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_sfnt.rs -------------------------------------------------------------------------------- /dpx/src/dpx_subfont.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_subfont.rs -------------------------------------------------------------------------------- /dpx/src/dpx_t1_char.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_t1_char.rs -------------------------------------------------------------------------------- /dpx/src/dpx_t1_load.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_t1_load.rs -------------------------------------------------------------------------------- /dpx/src/dpx_tfm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_tfm.rs -------------------------------------------------------------------------------- /dpx/src/dpx_truetype.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_truetype.rs -------------------------------------------------------------------------------- /dpx/src/dpx_tt_aux.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_tt_aux.rs -------------------------------------------------------------------------------- /dpx/src/dpx_tt_cmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_tt_cmap.rs -------------------------------------------------------------------------------- /dpx/src/dpx_tt_glyf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_tt_glyf.rs -------------------------------------------------------------------------------- /dpx/src/dpx_tt_gsub.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_tt_gsub.rs -------------------------------------------------------------------------------- /dpx/src/dpx_tt_post.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_tt_post.rs -------------------------------------------------------------------------------- /dpx/src/dpx_tt_table.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_tt_table.rs -------------------------------------------------------------------------------- /dpx/src/dpx_type0.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_type0.rs -------------------------------------------------------------------------------- /dpx/src/dpx_type1.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_type1.rs -------------------------------------------------------------------------------- /dpx/src/dpx_type1c.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_type1c.rs -------------------------------------------------------------------------------- /dpx/src/dpx_unicode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_unicode.rs -------------------------------------------------------------------------------- /dpx/src/dpx_vf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/dpx_vf.rs -------------------------------------------------------------------------------- /dpx/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/lib.rs -------------------------------------------------------------------------------- /dpx/src/shims.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/shims.rs -------------------------------------------------------------------------------- /dpx/src/specials.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/specials.rs -------------------------------------------------------------------------------- /dpx/src/specials/color.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/specials/color.rs -------------------------------------------------------------------------------- /dpx/src/specials/dvipdfmx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/specials/dvipdfmx.rs -------------------------------------------------------------------------------- /dpx/src/specials/dvips.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/specials/dvips.rs -------------------------------------------------------------------------------- /dpx/src/specials/html.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/specials/html.rs -------------------------------------------------------------------------------- /dpx/src/specials/misc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/specials/misc.rs -------------------------------------------------------------------------------- /dpx/src/specials/pdfm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/specials/pdfm.rs -------------------------------------------------------------------------------- /dpx/src/specials/tpic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/specials/tpic.rs -------------------------------------------------------------------------------- /dpx/src/specials/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/specials/util.rs -------------------------------------------------------------------------------- /dpx/src/specials/xtx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/dpx/src/specials/xtx.rs -------------------------------------------------------------------------------- /engine/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/Cargo.toml -------------------------------------------------------------------------------- /engine/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/build.rs -------------------------------------------------------------------------------- /engine/src/cmd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/cmd.rs -------------------------------------------------------------------------------- /engine/src/fmt_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/fmt_file.rs -------------------------------------------------------------------------------- /engine/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/lib.rs -------------------------------------------------------------------------------- /engine/src/node.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/node.rs -------------------------------------------------------------------------------- /engine/src/stub_icu.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/stub_icu.rs -------------------------------------------------------------------------------- /engine/src/stub_teckit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/stub_teckit.rs -------------------------------------------------------------------------------- /engine/src/text_layout_engine.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/text_layout_engine.rs -------------------------------------------------------------------------------- /engine/src/tfm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/tfm.rs -------------------------------------------------------------------------------- /engine/src/trie.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/trie.rs -------------------------------------------------------------------------------- /engine/src/xetex_aatfont.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_aatfont.rs -------------------------------------------------------------------------------- /engine/src/xetex_consts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_consts.rs -------------------------------------------------------------------------------- /engine/src/xetex_engine_interface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_engine_interface.rs -------------------------------------------------------------------------------- /engine/src/xetex_errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_errors.rs -------------------------------------------------------------------------------- /engine/src/xetex_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_ext.rs -------------------------------------------------------------------------------- /engine/src/xetex_font_info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_font_info.rs -------------------------------------------------------------------------------- /engine/src/xetex_font_info_coretext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_font_info_coretext.rs -------------------------------------------------------------------------------- /engine/src/xetex_font_manager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_font_manager.rs -------------------------------------------------------------------------------- /engine/src/xetex_font_manager_coretext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_font_manager_coretext.rs -------------------------------------------------------------------------------- /engine/src/xetex_font_manager_fontconfig.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_font_manager_fontconfig.rs -------------------------------------------------------------------------------- /engine/src/xetex_ini.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_ini.rs -------------------------------------------------------------------------------- /engine/src/xetex_io.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_io.rs -------------------------------------------------------------------------------- /engine/src/xetex_layout_interface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_layout_interface.rs -------------------------------------------------------------------------------- /engine/src/xetex_linebreak.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_linebreak.rs -------------------------------------------------------------------------------- /engine/src/xetex_math.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_math.rs -------------------------------------------------------------------------------- /engine/src/xetex_opentype_math.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_opentype_math.rs -------------------------------------------------------------------------------- /engine/src/xetex_output.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_output.rs -------------------------------------------------------------------------------- /engine/src/xetex_pagebuilder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_pagebuilder.rs -------------------------------------------------------------------------------- /engine/src/xetex_pic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_pic.rs -------------------------------------------------------------------------------- /engine/src/xetex_scaledmath.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_scaledmath.rs -------------------------------------------------------------------------------- /engine/src/xetex_shipout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_shipout.rs -------------------------------------------------------------------------------- /engine/src/xetex_stringpool.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_stringpool.rs -------------------------------------------------------------------------------- /engine/src/xetex_synctex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_synctex.rs -------------------------------------------------------------------------------- /engine/src/xetex_texmfmp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_texmfmp.rs -------------------------------------------------------------------------------- /engine/src/xetex_xetex0.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_xetex0.rs -------------------------------------------------------------------------------- /engine/src/xetex_xetexd.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/src/xetex_xetexd.rs -------------------------------------------------------------------------------- /engine/tectonic/core-foundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/tectonic/core-foundation.h -------------------------------------------------------------------------------- /engine/tectonic/stub_icu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/tectonic/stub_icu.c -------------------------------------------------------------------------------- /engine/tectonic/stub_stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/tectonic/stub_stdio.c -------------------------------------------------------------------------------- /engine/tectonic/teckit-Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/tectonic/teckit-Common.h -------------------------------------------------------------------------------- /engine/tectonic/teckit-Engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/tectonic/teckit-Engine.cpp -------------------------------------------------------------------------------- /engine/tectonic/teckit-Format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/tectonic/teckit-Format.h -------------------------------------------------------------------------------- /engine/tectonic/teckit-NormalizationData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/tectonic/teckit-NormalizationData.c -------------------------------------------------------------------------------- /engine/tectonic/teckit-c-Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/tectonic/teckit-c-Engine.h -------------------------------------------------------------------------------- /engine/tectonic/teckit-cxx-Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/engine/tectonic/teckit-cxx-Engine.h -------------------------------------------------------------------------------- /fuzz/.gitignore: -------------------------------------------------------------------------------- 1 | Cargo.lock 2 | target 3 | corpus 4 | artifacts 5 | -------------------------------------------------------------------------------- /fuzz/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/fuzz/Cargo.toml -------------------------------------------------------------------------------- /fuzz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/fuzz/README.md -------------------------------------------------------------------------------- /fuzz/fuzz_targets/compile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/fuzz/fuzz_targets/compile.rs -------------------------------------------------------------------------------- /fuzz/run-fuzzer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/fuzz/run-fuzzer.sh -------------------------------------------------------------------------------- /fuzz/seeds/hello.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/fuzz/seeds/hello.tex -------------------------------------------------------------------------------- /src/app_dirs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/app_dirs.rs -------------------------------------------------------------------------------- /src/bin/tectonic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/bin/tectonic.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/digest.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/digest.rs -------------------------------------------------------------------------------- /src/driver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/driver.rs -------------------------------------------------------------------------------- /src/engines/bibtex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/engines/bibtex.rs -------------------------------------------------------------------------------- /src/engines/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/engines/mod.rs -------------------------------------------------------------------------------- /src/engines/spx2html.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/engines/spx2html.rs -------------------------------------------------------------------------------- /src/engines/tex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/engines/tex.rs -------------------------------------------------------------------------------- /src/engines/xdvipdfmx.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/engines/xdvipdfmx.rs -------------------------------------------------------------------------------- /src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/errors.rs -------------------------------------------------------------------------------- /src/io/cached_itarbundle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/io/cached_itarbundle.rs -------------------------------------------------------------------------------- /src/io/dirbundle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/io/dirbundle.rs -------------------------------------------------------------------------------- /src/io/filesystem.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/io/filesystem.rs -------------------------------------------------------------------------------- /src/io/format_cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/io/format_cache.rs -------------------------------------------------------------------------------- /src/io/memory.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/io/memory.rs -------------------------------------------------------------------------------- /src/io/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/io/mod.rs -------------------------------------------------------------------------------- /src/io/setup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/io/setup.rs -------------------------------------------------------------------------------- /src/io/stack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/io/stack.rs -------------------------------------------------------------------------------- /src/io/stdstreams.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/io/stdstreams.rs -------------------------------------------------------------------------------- /src/io/zipbundle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/io/zipbundle.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/status/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/status/mod.rs -------------------------------------------------------------------------------- /src/status/plain.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/status/plain.rs -------------------------------------------------------------------------------- /src/status/termcolor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/status/termcolor.rs -------------------------------------------------------------------------------- /src/test_util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/test_util.rs -------------------------------------------------------------------------------- /src/unstable_opts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/src/unstable_opts.rs -------------------------------------------------------------------------------- /tests/assets/ckx.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/ckx.map -------------------------------------------------------------------------------- /tests/assets/cmbsy10.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmbsy10.tfm -------------------------------------------------------------------------------- /tests/assets/cmbx10.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmbx10.tfm -------------------------------------------------------------------------------- /tests/assets/cmbx5.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmbx5.tfm -------------------------------------------------------------------------------- /tests/assets/cmbx6.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmbx6.tfm -------------------------------------------------------------------------------- /tests/assets/cmbx7.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmbx7.tfm -------------------------------------------------------------------------------- /tests/assets/cmbx8.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmbx8.tfm -------------------------------------------------------------------------------- /tests/assets/cmbx9.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmbx9.tfm -------------------------------------------------------------------------------- /tests/assets/cmcsc10.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmcsc10.tfm -------------------------------------------------------------------------------- /tests/assets/cmdunh10.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmdunh10.tfm -------------------------------------------------------------------------------- /tests/assets/cmex10.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmex10.tfm -------------------------------------------------------------------------------- /tests/assets/cmmi10.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmmi10.tfm -------------------------------------------------------------------------------- /tests/assets/cmmi5.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmmi5.tfm -------------------------------------------------------------------------------- /tests/assets/cmmi6.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmmi6.tfm -------------------------------------------------------------------------------- /tests/assets/cmmi7.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmmi7.tfm -------------------------------------------------------------------------------- /tests/assets/cmmi8.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmmi8.tfm -------------------------------------------------------------------------------- /tests/assets/cmmi9.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmmi9.tfm -------------------------------------------------------------------------------- /tests/assets/cmmib10.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmmib10.tfm -------------------------------------------------------------------------------- /tests/assets/cmr10.pfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmr10.pfb -------------------------------------------------------------------------------- /tests/assets/cmr10.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmr10.tfm -------------------------------------------------------------------------------- /tests/assets/cmr5.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmr5.tfm -------------------------------------------------------------------------------- /tests/assets/cmr6.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmr6.tfm -------------------------------------------------------------------------------- /tests/assets/cmr7.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmr7.tfm -------------------------------------------------------------------------------- /tests/assets/cmr8.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmr8.tfm -------------------------------------------------------------------------------- /tests/assets/cmr9.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmr9.tfm -------------------------------------------------------------------------------- /tests/assets/cmsl10.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmsl10.tfm -------------------------------------------------------------------------------- /tests/assets/cmsl8.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmsl8.tfm -------------------------------------------------------------------------------- /tests/assets/cmsl9.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmsl9.tfm -------------------------------------------------------------------------------- /tests/assets/cmsltt10.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmsltt10.tfm -------------------------------------------------------------------------------- /tests/assets/cmss10.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmss10.tfm -------------------------------------------------------------------------------- /tests/assets/cmssbx10.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmssbx10.tfm -------------------------------------------------------------------------------- /tests/assets/cmssi10.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmssi10.tfm -------------------------------------------------------------------------------- /tests/assets/cmssq8.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmssq8.tfm -------------------------------------------------------------------------------- /tests/assets/cmssqi8.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmssqi8.tfm -------------------------------------------------------------------------------- /tests/assets/cmsy10.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmsy10.tfm -------------------------------------------------------------------------------- /tests/assets/cmsy5.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmsy5.tfm -------------------------------------------------------------------------------- /tests/assets/cmsy6.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmsy6.tfm -------------------------------------------------------------------------------- /tests/assets/cmsy7.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmsy7.tfm -------------------------------------------------------------------------------- /tests/assets/cmsy8.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmsy8.tfm -------------------------------------------------------------------------------- /tests/assets/cmsy9.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmsy9.tfm -------------------------------------------------------------------------------- /tests/assets/cmti10.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmti10.tfm -------------------------------------------------------------------------------- /tests/assets/cmti7.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmti7.tfm -------------------------------------------------------------------------------- /tests/assets/cmti8.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmti8.tfm -------------------------------------------------------------------------------- /tests/assets/cmti9.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmti9.tfm -------------------------------------------------------------------------------- /tests/assets/cmtt10.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmtt10.tfm -------------------------------------------------------------------------------- /tests/assets/cmtt8.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmtt8.tfm -------------------------------------------------------------------------------- /tests/assets/cmtt9.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmtt9.tfm -------------------------------------------------------------------------------- /tests/assets/cmu10.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/cmu10.tfm -------------------------------------------------------------------------------- /tests/assets/glyphlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/glyphlist.txt -------------------------------------------------------------------------------- /tests/assets/hyphen.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/hyphen.tex -------------------------------------------------------------------------------- /tests/assets/issue393_ungetc_trigger.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/issue393_ungetc_trigger.pdf -------------------------------------------------------------------------------- /tests/assets/kanjix.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/kanjix.map -------------------------------------------------------------------------------- /tests/assets/knuth-plain.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/knuth-plain.tex -------------------------------------------------------------------------------- /tests/assets/lmroman12-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/lmroman12-regular.otf -------------------------------------------------------------------------------- /tests/assets/manfnt.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/manfnt.tfm -------------------------------------------------------------------------------- /tests/assets/pdfglyphlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/pdfglyphlist.txt -------------------------------------------------------------------------------- /tests/assets/pdftex.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/pdftex.map -------------------------------------------------------------------------------- /tests/assets/plain.tex: -------------------------------------------------------------------------------- 1 | \input knuth-plain \dump 2 | -------------------------------------------------------------------------------- /tests/assets/png_gray_4bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/png_gray_4bit.png -------------------------------------------------------------------------------- /tests/assets/png_graya.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/png_graya.png -------------------------------------------------------------------------------- /tests/assets/png_palette_4bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/png_palette_4bit.png -------------------------------------------------------------------------------- /tests/assets/png_palette_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/png_palette_alpha.png -------------------------------------------------------------------------------- /tests/assets/png_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/png_rgba.png -------------------------------------------------------------------------------- /tests/assets/png_rgba_16_bit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/png_rgba_16_bit.png -------------------------------------------------------------------------------- /tests/assets/redbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/redbox.png -------------------------------------------------------------------------------- /tests/assets/tectonic-format-latex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/assets/tectonic-format-latex.tex -------------------------------------------------------------------------------- /tests/assets/tectonic-format-plain.tex: -------------------------------------------------------------------------------- 1 | \input plain \dump 2 | -------------------------------------------------------------------------------- /tests/bibtex.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/bibtex.rs -------------------------------------------------------------------------------- /tests/bibtex/plain.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/bibtex/plain.bst -------------------------------------------------------------------------------- /tests/bibtex/single_entry.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/bibtex/single_entry.aux -------------------------------------------------------------------------------- /tests/bibtex/single_entry.bbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/bibtex/single_entry.bbl -------------------------------------------------------------------------------- /tests/bibtex/single_entry.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/bibtex/single_entry.bib -------------------------------------------------------------------------------- /tests/bibtex/single_entry.blg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/bibtex/single_entry.blg -------------------------------------------------------------------------------- /tests/cached_itarbundle.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/cached_itarbundle.rs -------------------------------------------------------------------------------- /tests/driver.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/driver.rs -------------------------------------------------------------------------------- /tests/executable.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/executable.rs -------------------------------------------------------------------------------- /tests/executable/subdirectory/content/1.tex: -------------------------------------------------------------------------------- 1 | This is content/1.tex 2 | 3 | \bye 4 | -------------------------------------------------------------------------------- /tests/executable/subdirectory/relative_include.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/executable/subdirectory/relative_include.tex -------------------------------------------------------------------------------- /tests/executable/test space.tex: -------------------------------------------------------------------------------- 1 | This file has a name which contains spaces. 2 | 3 | \bye 4 | -------------------------------------------------------------------------------- /tests/formats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/formats.rs -------------------------------------------------------------------------------- /tests/tex-outputs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs.rs -------------------------------------------------------------------------------- /tests/tex-outputs/a4paper.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/a4paper.log -------------------------------------------------------------------------------- /tests/tex-outputs/a4paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/a4paper.pdf -------------------------------------------------------------------------------- /tests/tex-outputs/a4paper.tex: -------------------------------------------------------------------------------- 1 | a\bye 2 | -------------------------------------------------------------------------------- /tests/tex-outputs/a4paper.xdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/a4paper.xdv -------------------------------------------------------------------------------- /tests/tex-outputs/file_encoding.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/file_encoding.log -------------------------------------------------------------------------------- /tests/tex-outputs/file_encoding.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/file_encoding.tex -------------------------------------------------------------------------------- /tests/tex-outputs/file_encoding.xdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/file_encoding.xdv -------------------------------------------------------------------------------- /tests/tex-outputs/file_encoding_utf16be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/file_encoding_utf16be.txt -------------------------------------------------------------------------------- /tests/tex-outputs/file_encoding_utf16le.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/file_encoding_utf16le.txt -------------------------------------------------------------------------------- /tests/tex-outputs/file_encoding_utf8.txt: -------------------------------------------------------------------------------- 1 | this is utf8 2 | 🌍 3 | -------------------------------------------------------------------------------- /tests/tex-outputs/hallöchen 🐨 welt 🌍.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/hallöchen 🐨 welt 🌍.log -------------------------------------------------------------------------------- /tests/tex-outputs/hallöchen 🐨 welt 🌍.tex: -------------------------------------------------------------------------------- 1 | hello world 2 | \jobname 3 | \bye 4 | -------------------------------------------------------------------------------- /tests/tex-outputs/hallöchen 🐨 welt 🌍.xdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/hallöchen 🐨 welt 🌍.xdv -------------------------------------------------------------------------------- /tests/tex-outputs/issue393_ungetc.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/issue393_ungetc.log -------------------------------------------------------------------------------- /tests/tex-outputs/issue393_ungetc.tex: -------------------------------------------------------------------------------- 1 | \XeTeXpdffile issue393_ungetc_trigger.pdf 2 | \bye 3 | -------------------------------------------------------------------------------- /tests/tex-outputs/issue393_ungetc.xdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/issue393_ungetc.xdv -------------------------------------------------------------------------------- /tests/tex-outputs/md5_of_hello.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/md5_of_hello.log -------------------------------------------------------------------------------- /tests/tex-outputs/md5_of_hello.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/md5_of_hello.pdf -------------------------------------------------------------------------------- /tests/tex-outputs/md5_of_hello.tex: -------------------------------------------------------------------------------- 1 | \mdfivesum{hello}\bye 2 | -------------------------------------------------------------------------------- /tests/tex-outputs/md5_of_hello.xdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/md5_of_hello.xdv -------------------------------------------------------------------------------- /tests/tex-outputs/negative_roman_numeral.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/negative_roman_numeral.log -------------------------------------------------------------------------------- /tests/tex-outputs/negative_roman_numeral.tex: -------------------------------------------------------------------------------- 1 | \romannumeral -1 a\bye 2 | -------------------------------------------------------------------------------- /tests/tex-outputs/negative_roman_numeral.xdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/negative_roman_numeral.xdv -------------------------------------------------------------------------------- /tests/tex-outputs/otf_basic.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/otf_basic.log -------------------------------------------------------------------------------- /tests/tex-outputs/otf_basic.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/otf_basic.tex -------------------------------------------------------------------------------- /tests/tex-outputs/otf_basic.xdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/otf_basic.xdv -------------------------------------------------------------------------------- /tests/tex-outputs/pdfoutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/pdfoutput.log -------------------------------------------------------------------------------- /tests/tex-outputs/pdfoutput.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/pdfoutput.tex -------------------------------------------------------------------------------- /tests/tex-outputs/pdfoutput.xdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/pdfoutput.xdv -------------------------------------------------------------------------------- /tests/tex-outputs/png_formats.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/png_formats.log -------------------------------------------------------------------------------- /tests/tex-outputs/png_formats.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/png_formats.pdf -------------------------------------------------------------------------------- /tests/tex-outputs/png_formats.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/png_formats.tex -------------------------------------------------------------------------------- /tests/tex-outputs/png_formats.xdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/png_formats.xdv -------------------------------------------------------------------------------- /tests/tex-outputs/redbox_png.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/redbox_png.log -------------------------------------------------------------------------------- /tests/tex-outputs/redbox_png.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/redbox_png.pdf -------------------------------------------------------------------------------- /tests/tex-outputs/redbox_png.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/redbox_png.tex -------------------------------------------------------------------------------- /tests/tex-outputs/redbox_png.xdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/redbox_png.xdv -------------------------------------------------------------------------------- /tests/tex-outputs/synctex.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/synctex.log -------------------------------------------------------------------------------- /tests/tex-outputs/synctex.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/synctex.synctex.gz -------------------------------------------------------------------------------- /tests/tex-outputs/synctex.tex: -------------------------------------------------------------------------------- 1 | \synctex=1 2 | a\bye 3 | -------------------------------------------------------------------------------- /tests/tex-outputs/synctex.xdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/synctex.xdv -------------------------------------------------------------------------------- /tests/tex-outputs/tectoniccodatokens_errinside.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/tectoniccodatokens_errinside.log -------------------------------------------------------------------------------- /tests/tex-outputs/tectoniccodatokens_errinside.tex: -------------------------------------------------------------------------------- 1 | \TectonicCodaTokens{\anundefinedcontrolsequence} 2 | No explicit end. 3 | -------------------------------------------------------------------------------- /tests/tex-outputs/tectoniccodatokens_noend.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/tectoniccodatokens_noend.log -------------------------------------------------------------------------------- /tests/tex-outputs/tectoniccodatokens_noend.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/tectoniccodatokens_noend.tex -------------------------------------------------------------------------------- /tests/tex-outputs/tectoniccodatokens_ok.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/tectoniccodatokens_ok.log -------------------------------------------------------------------------------- /tests/tex-outputs/tectoniccodatokens_ok.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/tectoniccodatokens_ok.tex -------------------------------------------------------------------------------- /tests/tex-outputs/tectoniccodatokens_ok.xdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/tectoniccodatokens_ok.xdv -------------------------------------------------------------------------------- /tests/tex-outputs/tex_logo.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/tex_logo.log -------------------------------------------------------------------------------- /tests/tex-outputs/tex_logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/tex_logo.pdf -------------------------------------------------------------------------------- /tests/tex-outputs/tex_logo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/tex_logo.tex -------------------------------------------------------------------------------- /tests/tex-outputs/tex_logo.xdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/tex_logo.xdv -------------------------------------------------------------------------------- /tests/tex-outputs/the_letter_a.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/the_letter_a.log -------------------------------------------------------------------------------- /tests/tex-outputs/the_letter_a.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/the_letter_a.pdf -------------------------------------------------------------------------------- /tests/tex-outputs/the_letter_a.tex: -------------------------------------------------------------------------------- 1 | a\bye 2 | -------------------------------------------------------------------------------- /tests/tex-outputs/the_letter_a.xdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/tex-outputs/the_letter_a.xdv -------------------------------------------------------------------------------- /tests/trip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/trip.rs -------------------------------------------------------------------------------- /tests/trip/etrip.fot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/trip/etrip.fot -------------------------------------------------------------------------------- /tests/trip/etrip.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/trip/etrip.log -------------------------------------------------------------------------------- /tests/trip/etrip.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/trip/etrip.out -------------------------------------------------------------------------------- /tests/trip/etrip.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/trip/etrip.tex -------------------------------------------------------------------------------- /tests/trip/etrip.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/trip/etrip.tfm -------------------------------------------------------------------------------- /tests/trip/etrip.xdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/trip/etrip.xdv -------------------------------------------------------------------------------- /tests/trip/trip.fot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/trip/trip.fot -------------------------------------------------------------------------------- /tests/trip/trip.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/trip/trip.log -------------------------------------------------------------------------------- /tests/trip/trip.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/trip/trip.tex -------------------------------------------------------------------------------- /tests/trip/trip.tfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/trip/trip.tfm -------------------------------------------------------------------------------- /tests/trip/trip.xdv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/trip/trip.xdv -------------------------------------------------------------------------------- /tests/trip/tripos.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/trip/tripos.tex -------------------------------------------------------------------------------- /tests/util/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/util/mod.rs -------------------------------------------------------------------------------- /tests/xenia/.version: -------------------------------------------------------------------------------- 1 | b20b848-dirty 2 | -------------------------------------------------------------------------------- /tests/xenia/aastex6.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/xenia/aastex6.cls -------------------------------------------------------------------------------- /tests/xenia/gemini.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/xenia/gemini.pdf -------------------------------------------------------------------------------- /tests/xenia/mode.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/xenia/mode.tex -------------------------------------------------------------------------------- /tests/xenia/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/xenia/paper.bib -------------------------------------------------------------------------------- /tests/xenia/paper.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/xenia/paper.tex -------------------------------------------------------------------------------- /tests/xenia/pdm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/xenia/pdm.pdf -------------------------------------------------------------------------------- /tests/xenia/phased.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/xenia/phased.pdf -------------------------------------------------------------------------------- /tests/xenia/schematic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/xenia/schematic.pdf -------------------------------------------------------------------------------- /tests/xenia/setup.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/xenia/setup.tex -------------------------------------------------------------------------------- /tests/xenia/vla.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/xenia/vla.pdf -------------------------------------------------------------------------------- /tests/xenia/yahapj.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/tests/xenia/yahapj.bst -------------------------------------------------------------------------------- /xdv/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/xdv/Cargo.toml -------------------------------------------------------------------------------- /xdv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/xdv/README.md -------------------------------------------------------------------------------- /xdv/examples/xdvdump.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/xdv/examples/xdvdump.rs -------------------------------------------------------------------------------- /xdv/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crlf0710/tectonic/HEAD/xdv/src/lib.rs --------------------------------------------------------------------------------