dot2tex
dot2tex copied to clipboard
Convert graphs generated by Graphviz to LaTeX friendly formats
Make subgraphs TikZ-nodes so that they can be referenced. See http://groups.google.com/group/dot2tex-users/t/790380eb5603a0ae?hl=en Original GC issue: https://code.google.com/p/dot2tex/issues/detail?id=23
Having ``` digraph example { a -> b a -> c {rank=same; b;c} } ``` will generate (dot2tex --preproc -tmath) ``` digraph example{ a -> b ; subgraph c{ b;...
dot2tex does not support the image attributes of dot file. Using the default format, it is possible to include a \includegraphics in each node. Additionnal scaling informations should be available...
With the input dot file: ```dot digraph test { 100 -> 102 [label="Test raw \\latex output \\textit{italic text}"]; } ``` compiled with `dot2tex --texmode raw --format tikz test.dot` the tikz...
Hi, the --autosize option doesnt work on windows when the path is complicated enough: Debug file: `2023-08-03 16:20:17,692 dot2tex DEBUG Running command: latex -interaction=nonstopmode C:\Users\USERN~1\AppData\Local\Temp\dot2texyvzdrxix\dot2tex.tex 2023-08-03 16:20:18,165 dot2tex DEBUG stdout...
Hi, is there a way to have a two-line label on a node? I have the following DOT graph: ``` # graph.dot digraph G { node_0 -> node_1; node_0 [label="aaa...
Dot code: ``` digraph { "x" [shape=box, style=rounded] } ``` run with cmd: ``` dot2tex -ftikz example.dot ``` Got next tex: Details ``` \documentclass{article} \usepackage[x11names, svgnames, rgb]{xcolor} \usepackage[utf8]{inputenc} \usepackage{tikz} \usetikzlibrary{snakes,arrows,shapes}...
This will make the codebase no longer compatible with python2.
Hi right now on [rdfref](https://github.com/michal-h21/rdfref) a package is developed that extracts the information about references of equation and theorems and generate a dependency graph using dot2tex. I will attach an...