Fix misleading note about image size conversions in MANUAL.
Closes #6353.
This commit is contained in:
parent
8fc57664f8
commit
82eb4df284
1 changed files with 6 additions and 4 deletions
10
MANUAL.txt
10
MANUAL.txt
|
@ -4594,10 +4594,12 @@ For example:
|
||||||
![](file.jpg){ width=50% }
|
![](file.jpg){ width=50% }
|
||||||
```
|
```
|
||||||
|
|
||||||
- Dimensions are converted to inches for output in page-based formats like
|
- Dimensions may be converted to a form that is compatible with
|
||||||
LaTeX. Dimensions are converted to pixels for output in HTML-like
|
the output format (for example, dimensions given in pixels will
|
||||||
formats. Use the `--dpi` option to specify the number of pixels per
|
be converted to inches when converting HTML to LaTeX). Conversion
|
||||||
inch. The default is 96dpi.
|
between pixels and physical measurements is affected by the
|
||||||
|
`--dpi` option (by default, 96 dpi is assumed, unless the image
|
||||||
|
itself contains dpi information).
|
||||||
- The `%` unit is generally relative to some available space.
|
- The `%` unit is generally relative to some available space.
|
||||||
For example the above example will render to the following.
|
For example the above example will render to the following.
|
||||||
- HTML: `<img href="file.jpg" style="width: 50%;" />`
|
- HTML: `<img href="file.jpg" style="width: 50%;" />`
|
||||||
|
|
Loading…
Reference in a new issue