├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── csq-compat.def ├── csquotes.cfg ├── csquotes.def ├── csquotes.sty ├── csquotes.tex ├── support ├── install-texlive.sh └── texlive.profile └── testfiles ├── babel-autostyle-true.luatex.tlg ├── babel-autostyle-true.lvt ├── babel-autostyle-true.tlg ├── babel-autostyle-true.xetex.tlg ├── babel-autostyle-tryonce.luatex.tlg ├── babel-autostyle-tryonce.lvt ├── babel-autostyle-tryonce.tlg ├── babel-autostyle-tryonce.xetex.tlg ├── babel-foreignquote.luatex.tlg ├── babel-foreignquote.lvt ├── babel-foreignquote.tlg ├── babel-foreignquote.xetex.tlg ├── blockquote.luatex.tlg ├── blockquote.lvt ├── blockquote.tlg ├── blockquote.xetex.tlg ├── loading.lvt ├── loading.tlg ├── polyglossia-autostyle-true.luatex.tlg ├── polyglossia-autostyle-true.lvt ├── polyglossia-autostyle-true.tlg └── polyglossia-autostyle-true.xetex.tlg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/README.md -------------------------------------------------------------------------------- /csq-compat.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/csq-compat.def -------------------------------------------------------------------------------- /csquotes.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/csquotes.cfg -------------------------------------------------------------------------------- /csquotes.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/csquotes.def -------------------------------------------------------------------------------- /csquotes.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/csquotes.sty -------------------------------------------------------------------------------- /csquotes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/csquotes.tex -------------------------------------------------------------------------------- /support/install-texlive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/support/install-texlive.sh -------------------------------------------------------------------------------- /support/texlive.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/support/texlive.profile -------------------------------------------------------------------------------- /testfiles/babel-autostyle-true.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/testfiles/babel-autostyle-true.luatex.tlg -------------------------------------------------------------------------------- /testfiles/babel-autostyle-true.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/testfiles/babel-autostyle-true.lvt -------------------------------------------------------------------------------- /testfiles/babel-autostyle-true.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/testfiles/babel-autostyle-true.tlg -------------------------------------------------------------------------------- /testfiles/babel-autostyle-true.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/testfiles/babel-autostyle-true.xetex.tlg -------------------------------------------------------------------------------- /testfiles/babel-autostyle-tryonce.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/testfiles/babel-autostyle-tryonce.luatex.tlg -------------------------------------------------------------------------------- /testfiles/babel-autostyle-tryonce.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/testfiles/babel-autostyle-tryonce.lvt -------------------------------------------------------------------------------- /testfiles/babel-autostyle-tryonce.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/testfiles/babel-autostyle-tryonce.tlg -------------------------------------------------------------------------------- /testfiles/babel-autostyle-tryonce.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/testfiles/babel-autostyle-tryonce.xetex.tlg -------------------------------------------------------------------------------- /testfiles/babel-foreignquote.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/testfiles/babel-foreignquote.luatex.tlg -------------------------------------------------------------------------------- /testfiles/babel-foreignquote.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/testfiles/babel-foreignquote.lvt -------------------------------------------------------------------------------- /testfiles/babel-foreignquote.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/testfiles/babel-foreignquote.tlg -------------------------------------------------------------------------------- /testfiles/babel-foreignquote.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/testfiles/babel-foreignquote.xetex.tlg -------------------------------------------------------------------------------- /testfiles/blockquote.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/testfiles/blockquote.luatex.tlg -------------------------------------------------------------------------------- /testfiles/blockquote.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/testfiles/blockquote.lvt -------------------------------------------------------------------------------- /testfiles/blockquote.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/testfiles/blockquote.tlg -------------------------------------------------------------------------------- /testfiles/blockquote.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/testfiles/blockquote.xetex.tlg -------------------------------------------------------------------------------- /testfiles/loading.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/testfiles/loading.lvt -------------------------------------------------------------------------------- /testfiles/loading.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/testfiles/loading.tlg -------------------------------------------------------------------------------- /testfiles/polyglossia-autostyle-true.luatex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/testfiles/polyglossia-autostyle-true.luatex.tlg -------------------------------------------------------------------------------- /testfiles/polyglossia-autostyle-true.lvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/testfiles/polyglossia-autostyle-true.lvt -------------------------------------------------------------------------------- /testfiles/polyglossia-autostyle-true.tlg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testfiles/polyglossia-autostyle-true.xetex.tlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/josephwright/csquotes/HEAD/testfiles/polyglossia-autostyle-true.xetex.tlg --------------------------------------------------------------------------------