pages*: fix small typos (#11850)

* pages*: fix small typos

* pages/*: make help and version commands consistent

* pages/*: follow "path/to/file" pattern

* nop: generic display help wording
This commit is contained in:
Vitor Henrique
2023-12-27 03:41:30 -03:00
committed by GitHub
parent 4e280a9efe
commit 61405c6e0e
67 changed files with 93 additions and 93 deletions

View File

@@ -6,28 +6,28 @@
- Open an SVG file in the Inkscape GUI:
`inkscape {{filename.svg}}`
`inkscape {{path/to/filename.svg}}`
- Export an SVG file into a bitmap with the default format (PNG) and the default resolution (96 DPI):
`inkscape {{filename.svg}} -o {{filename.png}}`
`inkscape {{path/to/filename.svg}} -o {{path/to/filename.png}}`
- Export an SVG file into a bitmap of 600x400 pixels (aspect ratio distortion may occur):
`inkscape {{filename.svg}} -o {{filename.png}} -w {{600}} -h {{400}}`
`inkscape {{path/to/filename.svg}} -o {{path/to/filename.png}} -w {{600}} -h {{400}}`
- Export the drawing (bounding box of all objects) of an SVG file into a bitmap:
`inkscape {{filename.svg}} -o {{filename.png}} -D`
`inkscape {{path/to/filename.svg}} -o {{path/to/filename.png}} -D`
- Export a single object, given its ID, into a bitmap:
`inkscape {{filename.svg}} -i {{id}} -o {{object.png}}`
`inkscape {{path/to/filename.svg}} -i {{id}} -o {{object.png}}`
- Export an SVG document to PDF, converting all texts to paths:
`inkscape {{filename.svg}} -o {{filename.pdf}} --export-text-to-path`
`inkscape {{path/to/filename.svg}} -o {{path/to/filename.pdf}} --export-text-to-path`
- Duplicate the object with id="path123", rotate the duplicate 90 degrees, save the file, and quit Inkscape:
`inkscape {{filename.svg}} --select=path123 --verb="{{EditDuplicate;ObjectRotate90;FileSave;FileQuit}}"`
`inkscape {{path/to/filename.svg}} --select=path123 --verb="{{EditDuplicate;ObjectRotate90;FileSave;FileQuit}}"`