LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

evince

GNOME document viewer for PDF and PostScript

TLDR

Open a PDF file
$ evince [path/to/file.pdf]
copy
Open multiple documents
$ evince [file1.pdf] [file2.pdf]
copy
Open in fullscreen mode
$ evince [-f|--fullscreen] [path/to/file.pdf]
copy
Open in presentation mode
$ evince [-s|--presentation] [path/to/file.pdf]
copy
Open a specific page number
$ evince [-i|--page-index] [5] [path/to/file.pdf]
copy

SYNOPSIS

evince [options] [files]

DESCRIPTION

evince is the GNOME document viewer supporting PDF, PostScript, DjVu, TIFF, and other formats. It provides annotation support, form filling, and presentation mode.Integrates with GNOME desktop services for printing and file management.

PARAMETERS

-f, --fullscreen

Open in fullscreen mode
-s, --presentation
Open in presentation mode
-i, --page-index page
Open at specific page
-l, --page-label label
Open at page with label
-w, --preview
Run in preview mode

INSTALL

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

CAVEATS

GNOME desktop application. Some features require poppler library. Large documents may consume significant memory.

SEE ALSO

okular(1), zathura(1), xdg-open(1)

RESOURCES

Copied to clipboard
Kai