Package: lyx Version: 2.0.3-3 Severity: normal Dear Maintainer,
I'm trying to run the Linux Graphics Drivers Book [1] in lyx as pdf, but attempting to "view/update" the document results in an error: No information for converting dot format files to pdf. Define a converter in the preferences. I'm not sure what is needed to "define a converter in the preferences". The problem file looks to be crtc-encoder-connector.dot 1: http://cgit.freedesktop.org/~marcheu/lgd/ -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.2.0-4-amd64 (SMP w/6 CPU cores) Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages lyx depends on: ii libboost-regex1.49.0 1.49.0-3.1 ii libboost-signals1.49.0 1.49.0-3.1 ii libc6 2.13-37 ii libenchant1c2a 1.6.0-7 ii libgcc1 1:4.7.2-4 ii libmythes-1.2-0 2:1.2.2-1 ii libqtcore4 4:4.8.2+dfsg-2 ii libqtgui4 4:4.8.2+dfsg-2 ii libstdc++6 4.7.2-4 ii lyx-common 2.0.3-3 ii xdg-utils 1.1.0~rc1+git20111210-6 ii zlib1g 1:1.2.7.dfsg-13 Versions of packages lyx recommends: ii dvipng 1.14-1+b1 ii evince [pdf-viewer] 3.4.0-3.1 ii fonts-lyx 2.0.3-3 ii ghostscript 9.05~dfsg-6.2 ii gv [pdf-viewer] 1:3.7.3-1 ii imagemagick 8:6.7.7.10-5 ii poppler-utils 0.18.4-3 ii preview-latex-style 11.86-10.1 ii psutils 1.17.dfsg-1 ii tex4ht 20090611-1.1+b1 ii texlive-fonts-recommended 2012.20120611-5 pn texlive-generic-extra <none> ii texlive-generic-recommended 2012.20120611-5 ii texlive-latex-extra 2012.20120611-2 ii texlive-latex-recommended 2012.20120611-5 pn texlive-science <none> Versions of packages lyx suggests: pn chktex <none> pn dvipost <none> pn etoolbox <none> pn gnuhtml2latex <none> ii groff 1.21-9 pn latex2rtf <none> pn librsvg2-bin | inkscape <none> pn libtiff-tools <none> pn linuxdoc-tools <none> pn lyx-dbg <none> pn noweb <none> pn rcs <none> pn sgmltools-lite <none> pn texlive-xetex <none> pn writer2latex <none> pn wv <none>
# dot -Tsvg -ooutput.svg output.dot # This file is the functional graph of the graphics output pipe digraph output { rankdir=LR; compound=true; node [shape=rectangle,style=filled,color=lightblue]; subgraph crtc { label = "CRTC"; "crtc0" "crtc1"; } subgraph Encoders { label = "Encoders"; "VGA Encoder" "Display Port Encoder" "DVI Encoder"; } subgraph Connectors { label = "Connectors"; "VGA Conn" "DP Conn" "DVI Conn"; } "crtc0" -> "VGA Encoder" [style=dotted,color=red,concentrate=true]; "crtc0" -> "Display Port Encoder" [style=dotted,color=red,concentrate=true]; "crtc0" -> "DVI Encoder" [style=dotted,color=red,concentrate=true]; "crtc1" -> "VGA Encoder" [style=dashed,color=blue,concentrate=true]; "crtc1" -> "Display Port Encoder" [style=dashed,color=blue,concentrate=true]; "crtc1" -> "DVI Encoder" [style=dashed,color=blue,concentrate=true]; "VGA Encoder" -> "VGA Conn"; "Display Port Encoder" -> "DP Conn"; "DVI Encoder" -> "DVI Conn"; }