Variable: org-latex-known-warnings

org-latex-known-warnings is a customizable variable defined in ox-latex.el.gz.

Value

(("Reference.*?undefined" . "[undefined reference]")
 ("Runaway argument" . "[runaway argument]")
 ("Underfull \\hbox" . "[underfull hbox]")
 ("Overfull \\hbox" . "[overfull hbox]")
 ("Citation.*?undefined" . "[undefined citation]")
 ("^!.+Unicode character"
  . "[unicode character(s) not set up for use with pdflatex. You can run lualatex or xelatex instead]")
 ("Missing character: There is no"
  . "[Missing character(s): please load an appropriate font with the fontspec package]")
 ("Undefined control sequence" . "[undefined control sequence]"))

Documentation

Alist of regular expressions and associated messages for the user.

The regular expressions are used to find possible warnings in the log of a LaTeX-run. These warnings will be reported after calling org-latex-compile.

This variable was added, or its default value changed, in Org version
9.7.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
(defcustom org-latex-known-warnings
  '(("Reference.*?undefined" . "[undefined reference]")
    ("Runaway argument" . "[runaway argument]")
    ("Underfull \\hbox" . "[underfull hbox]")
    ("Overfull \\hbox" . "[overfull hbox]")
    ("Citation.*?undefined" . "[undefined citation]")
    ("^!.+Unicode character" . "[unicode character(s) not set up for use with pdflatex. You can run lualatex or xelatex instead]")
    ("Missing character: There is no" . "[Missing character(s): please load an appropriate font with the fontspec package]")
    ("Undefined control sequence" . "[undefined control sequence]"))
  "Alist of regular expressions and associated messages for the user.
The regular expressions are used to find possible warnings in the
log of a LaTeX-run.  These warnings will be reported after
calling `org-latex-compile'."
  :group 'org-export-latex
  :package-version '(Org . "9.7")
  :type '(repeat
	  (cons
	   (regexp :tag "Regexp")
	   (string :tag "Message"))))