├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── black.yml │ ├── build_docs.yml │ ├── pylint.yml │ ├── tests.yml │ └── tests_docs.yml ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── Makefile ├── cmdlineguide.rst ├── code │ ├── articulated_leg_calf.tex │ ├── articulated_leg_coordinate.tex │ ├── articulated_leg_foot.tex │ ├── articulated_leg_recombine.tex │ ├── articulated_leg_simple.tex │ ├── articulated_leg_thigh.tex │ └── articulated_leg_torso.tex ├── conf.py ├── contribute.rst ├── example.rst ├── img │ ├── articulated_leg.pdf │ ├── articulated_leg.svg │ ├── articulated_leg_angled.png │ ├── example.png │ └── inkscape_example_articulated_leg.png ├── index.rst ├── inkscapeguide.rst ├── install.rst ├── limitation.rst ├── make.bat └── moduleguide.rst ├── logo └── svg2tikz.svg ├── poetry.lock ├── pylintrc ├── pyproject.toml ├── scripts └── svg2tikz ├── sub_superscript_latex.tex ├── svg2tikz ├── .jukit │ └── .jukit_info.json ├── __init__.py ├── tikz_export.py ├── tikz_export_effect.inx └── tikz_export_output.inx └── tests ├── __init__.py ├── common.py ├── other └── inkscape_logo.png ├── test_complete_files.py ├── test_geometrical_functions.py ├── test_parsing.py ├── test_svg2tikz.py ├── test_tikz_path_exporter.py ├── test_utility_functions.py ├── testdest ├── README.md ├── convert_svg_output_file └── transform_noreversey.tex └── testfiles ├── R_letter_with_arc.svg ├── R_letter_with_arc.tex ├── arrows_marking.svg ├── attribute_texmode.svg ├── attribute_texmode.tex ├── blocs_and_groups.svg ├── blocs_and_groups.tex ├── circle.svg ├── circle.tex ├── circle_verbose.svg ├── circle_verbose.tex ├── crop.svg ├── crop.tex ├── curves.svg ├── curves.tex ├── display_none_in_group.svg ├── display_none_in_group.tex ├── ellipse.svg ├── ellipse.tex ├── ellipse_noreversey.tex ├── image.svg ├── image.tex ├── line.svg ├── line.tex ├── lines_style.svg ├── lines_style.tex ├── nodes_and_transform.svg ├── nodes_and_transform.tex ├── pentagone_round_corner.svg ├── pentagone_round_corner.tex ├── polylines_polygones.svg ├── polylines_polygones.tex ├── rectangle.svg ├── rectangle.tex ├── rectangle_wrap.svg ├── rectangle_wrap.tex ├── s_command_letter.svg ├── s_command_letter.tex ├── s_command_no_previous_bezier.svg ├── s_command_no_previous_bezier.tex ├── sub_superscript.svg ├── sub_superscript_ascii.tex ├── sub_superscript_latex.tex ├── switch_simple.svg ├── switch_simple_noverbose.tex ├── switch_simple_verbose.tex ├── symbol_and_use.svg ├── symbol_and_use.tex ├── text.svg ├── text.tex ├── text_fill_color.svg ├── text_fill_color.tex ├── text_noreversey.tex ├── transform.svg ├── transform.tex ├── transform_noreversey.tex └── unicode.svg /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | *.png binary -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/black.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/.github/workflows/black.yml -------------------------------------------------------------------------------- /.github/workflows/build_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/.github/workflows/build_docs.yml -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/tests_docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/.github/workflows/tests_docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/cmdlineguide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/cmdlineguide.rst -------------------------------------------------------------------------------- /docs/code/articulated_leg_calf.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/code/articulated_leg_calf.tex -------------------------------------------------------------------------------- /docs/code/articulated_leg_coordinate.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/code/articulated_leg_coordinate.tex -------------------------------------------------------------------------------- /docs/code/articulated_leg_foot.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/code/articulated_leg_foot.tex -------------------------------------------------------------------------------- /docs/code/articulated_leg_recombine.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/code/articulated_leg_recombine.tex -------------------------------------------------------------------------------- /docs/code/articulated_leg_simple.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/code/articulated_leg_simple.tex -------------------------------------------------------------------------------- /docs/code/articulated_leg_thigh.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/code/articulated_leg_thigh.tex -------------------------------------------------------------------------------- /docs/code/articulated_leg_torso.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/code/articulated_leg_torso.tex -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contribute.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/contribute.rst -------------------------------------------------------------------------------- /docs/example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/example.rst -------------------------------------------------------------------------------- /docs/img/articulated_leg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/img/articulated_leg.pdf -------------------------------------------------------------------------------- /docs/img/articulated_leg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/img/articulated_leg.svg -------------------------------------------------------------------------------- /docs/img/articulated_leg_angled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/img/articulated_leg_angled.png -------------------------------------------------------------------------------- /docs/img/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/img/example.png -------------------------------------------------------------------------------- /docs/img/inkscape_example_articulated_leg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/img/inkscape_example_articulated_leg.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/inkscapeguide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/inkscapeguide.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/limitation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/limitation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/moduleguide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/docs/moduleguide.rst -------------------------------------------------------------------------------- /logo/svg2tikz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/logo/svg2tikz.svg -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/poetry.lock -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/pylintrc -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/svg2tikz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/scripts/svg2tikz -------------------------------------------------------------------------------- /sub_superscript_latex.tex: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /svg2tikz/.jukit/.jukit_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/svg2tikz/.jukit/.jukit_info.json -------------------------------------------------------------------------------- /svg2tikz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/svg2tikz/__init__.py -------------------------------------------------------------------------------- /svg2tikz/tikz_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/svg2tikz/tikz_export.py -------------------------------------------------------------------------------- /svg2tikz/tikz_export_effect.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/svg2tikz/tikz_export_effect.inx -------------------------------------------------------------------------------- /svg2tikz/tikz_export_output.inx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/svg2tikz/tikz_export_output.inx -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/common.py -------------------------------------------------------------------------------- /tests/other/inkscape_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/other/inkscape_logo.png -------------------------------------------------------------------------------- /tests/test_complete_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/test_complete_files.py -------------------------------------------------------------------------------- /tests/test_geometrical_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/test_geometrical_functions.py -------------------------------------------------------------------------------- /tests/test_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/test_parsing.py -------------------------------------------------------------------------------- /tests/test_svg2tikz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/test_svg2tikz.py -------------------------------------------------------------------------------- /tests/test_tikz_path_exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/test_tikz_path_exporter.py -------------------------------------------------------------------------------- /tests/test_utility_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/test_utility_functions.py -------------------------------------------------------------------------------- /tests/testdest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testdest/README.md -------------------------------------------------------------------------------- /tests/testdest/convert_svg_output_file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testdest/convert_svg_output_file -------------------------------------------------------------------------------- /tests/testdest/transform_noreversey.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testdest/transform_noreversey.tex -------------------------------------------------------------------------------- /tests/testfiles/R_letter_with_arc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/R_letter_with_arc.svg -------------------------------------------------------------------------------- /tests/testfiles/R_letter_with_arc.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/R_letter_with_arc.tex -------------------------------------------------------------------------------- /tests/testfiles/arrows_marking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/arrows_marking.svg -------------------------------------------------------------------------------- /tests/testfiles/attribute_texmode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/attribute_texmode.svg -------------------------------------------------------------------------------- /tests/testfiles/attribute_texmode.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/attribute_texmode.tex -------------------------------------------------------------------------------- /tests/testfiles/blocs_and_groups.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/blocs_and_groups.svg -------------------------------------------------------------------------------- /tests/testfiles/blocs_and_groups.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/blocs_and_groups.tex -------------------------------------------------------------------------------- /tests/testfiles/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/circle.svg -------------------------------------------------------------------------------- /tests/testfiles/circle.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/circle.tex -------------------------------------------------------------------------------- /tests/testfiles/circle_verbose.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/circle_verbose.svg -------------------------------------------------------------------------------- /tests/testfiles/circle_verbose.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/circle_verbose.tex -------------------------------------------------------------------------------- /tests/testfiles/crop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/crop.svg -------------------------------------------------------------------------------- /tests/testfiles/crop.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/crop.tex -------------------------------------------------------------------------------- /tests/testfiles/curves.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/curves.svg -------------------------------------------------------------------------------- /tests/testfiles/curves.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/curves.tex -------------------------------------------------------------------------------- /tests/testfiles/display_none_in_group.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/display_none_in_group.svg -------------------------------------------------------------------------------- /tests/testfiles/display_none_in_group.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/display_none_in_group.tex -------------------------------------------------------------------------------- /tests/testfiles/ellipse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/ellipse.svg -------------------------------------------------------------------------------- /tests/testfiles/ellipse.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/ellipse.tex -------------------------------------------------------------------------------- /tests/testfiles/ellipse_noreversey.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/ellipse_noreversey.tex -------------------------------------------------------------------------------- /tests/testfiles/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/image.svg -------------------------------------------------------------------------------- /tests/testfiles/image.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/image.tex -------------------------------------------------------------------------------- /tests/testfiles/line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/line.svg -------------------------------------------------------------------------------- /tests/testfiles/line.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/line.tex -------------------------------------------------------------------------------- /tests/testfiles/lines_style.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/lines_style.svg -------------------------------------------------------------------------------- /tests/testfiles/lines_style.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/lines_style.tex -------------------------------------------------------------------------------- /tests/testfiles/nodes_and_transform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/nodes_and_transform.svg -------------------------------------------------------------------------------- /tests/testfiles/nodes_and_transform.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/nodes_and_transform.tex -------------------------------------------------------------------------------- /tests/testfiles/pentagone_round_corner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/pentagone_round_corner.svg -------------------------------------------------------------------------------- /tests/testfiles/pentagone_round_corner.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/pentagone_round_corner.tex -------------------------------------------------------------------------------- /tests/testfiles/polylines_polygones.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/polylines_polygones.svg -------------------------------------------------------------------------------- /tests/testfiles/polylines_polygones.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/polylines_polygones.tex -------------------------------------------------------------------------------- /tests/testfiles/rectangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/rectangle.svg -------------------------------------------------------------------------------- /tests/testfiles/rectangle.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/rectangle.tex -------------------------------------------------------------------------------- /tests/testfiles/rectangle_wrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/rectangle_wrap.svg -------------------------------------------------------------------------------- /tests/testfiles/rectangle_wrap.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/rectangle_wrap.tex -------------------------------------------------------------------------------- /tests/testfiles/s_command_letter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/s_command_letter.svg -------------------------------------------------------------------------------- /tests/testfiles/s_command_letter.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/s_command_letter.tex -------------------------------------------------------------------------------- /tests/testfiles/s_command_no_previous_bezier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/s_command_no_previous_bezier.svg -------------------------------------------------------------------------------- /tests/testfiles/s_command_no_previous_bezier.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/s_command_no_previous_bezier.tex -------------------------------------------------------------------------------- /tests/testfiles/sub_superscript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/sub_superscript.svg -------------------------------------------------------------------------------- /tests/testfiles/sub_superscript_ascii.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/sub_superscript_ascii.tex -------------------------------------------------------------------------------- /tests/testfiles/sub_superscript_latex.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/sub_superscript_latex.tex -------------------------------------------------------------------------------- /tests/testfiles/switch_simple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/switch_simple.svg -------------------------------------------------------------------------------- /tests/testfiles/switch_simple_noverbose.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/switch_simple_noverbose.tex -------------------------------------------------------------------------------- /tests/testfiles/switch_simple_verbose.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/switch_simple_verbose.tex -------------------------------------------------------------------------------- /tests/testfiles/symbol_and_use.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/symbol_and_use.svg -------------------------------------------------------------------------------- /tests/testfiles/symbol_and_use.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/symbol_and_use.tex -------------------------------------------------------------------------------- /tests/testfiles/text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/text.svg -------------------------------------------------------------------------------- /tests/testfiles/text.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/text.tex -------------------------------------------------------------------------------- /tests/testfiles/text_fill_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/text_fill_color.svg -------------------------------------------------------------------------------- /tests/testfiles/text_fill_color.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/text_fill_color.tex -------------------------------------------------------------------------------- /tests/testfiles/text_noreversey.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/text_noreversey.tex -------------------------------------------------------------------------------- /tests/testfiles/transform.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/transform.svg -------------------------------------------------------------------------------- /tests/testfiles/transform.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/transform.tex -------------------------------------------------------------------------------- /tests/testfiles/transform_noreversey.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/transform_noreversey.tex -------------------------------------------------------------------------------- /tests/testfiles/unicode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xyz2tex/svg2tikz/HEAD/tests/testfiles/unicode.svg --------------------------------------------------------------------------------