-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Option -q (quiet) gets not passed to latexmk #12717
Comments
The We have to choose whether
My preference is rather for 1. as 2. can always be achieved as you indicated with |
Jean-François B. schrieb am Sa 03. Aug, 05:49 (GMT):
The `-q` description is `'no output on stdout, just warnings on stderr'`. This is not quite what Latexmk's `-quiet` (same as `-silent`) does. There is also `-Q` which says `'no output at all, not even warnings'`.
We have to choose whether
1. apply shell redirects also to the Latexmk runs after latex file is done,
Do I get you right that you plan to do something like `latexmk -quiet >&2`,
if `-q` is set? That would be fine, because it makes the output more
quiet/less noisy.
|
@jo-so I originally planned to do as So it is a bit disturbing to expect only error messages to pop up and to see some innocuous Latexmk messages. So in actual PR #12729, I decided that I am undecided, please have a look. The |
Describe the bug
Running sphinx-build with
-q
reduces the output for html, but not for latexpdf. I would be useful if the option-q
results in the option-quiet
for latexmk.How to Reproduce
Run
make O=-q latexpdf
Environment Information
Sphinx extensions
No response
Additional context
A workaround is the environment variable
LATEXMKOPTS
, e.g. runningmake O=-q LATEXMKOPTS=-quiet latexpdf
reduces the output.The text was updated successfully, but these errors were encountered: