LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

grodvi

Groff DVI output driver

TLDR

Convert groff to DVI
$ groff -Tdvi [file.roff] > output.dvi
copy
Direct grodvi usage
$ grodvi [file] > output.dvi
copy
Specify font path
$ grodvi -F [fontdir] [file]
copy

SYNOPSIS

grodvi [options] [file]

DESCRIPTION

grodvi is a groff output driver that produces DVI (DeVice Independent) format, compatible with TeX ecosystem tools like dvips and xdvi.The driver converts groff intermediate output to DVI format, allowing integration with TeX-based workflows and standard groff font features.

PARAMETERS

FILE

Groff intermediate output file.
-d
Enable debug mode.
-F DIR
Font directory.
-l
Landscape mode.
-p SIZE
Paper size.
--help
Display help information.

INSTALL

sudo apt install groff
copy
sudo dnf install groff
copy
sudo pacman -S groff
copy
sudo apk add groff
copy
sudo zypper install groff
copy
brew install groff
copy
nix profile install nixpkgs#groff
copy

CAVEATS

Part of groff package. DVI format has limitations compared to PDF. Requires TeX fonts for best results.

HISTORY

grodvi was developed as part of GNU groff to provide DVI output capability, bridging groff and TeX ecosystems.

SEE ALSO

groff(1), grops(1), dvips(1)

RESOURCES

Copied to clipboard
Kai