Hi Nicolas, sorry for the previous mail, somehow I lost the formatting. Am Montag, den 25.07.2016, 15:07 +0200 schrieb Nicolas Goaziou: > "Ulrich J. Herter" writes: > > > > > When using pgfplots and tikz LaTeX packages for graphics in a > > document, the colouring of LaTeX overlays in org-mode is broken. > > The > > font colour of snippets is always black, super hard to read in on a > > dark colour scheme. See attached images. > > > > Steps to reproduce: > > - Do C-c C-x C-l on one of the formulas. > > - When pgfplots or tikz is loaded, the :foreground setting in > > org-format-latex-options is ignored... > > > > Any help with that would be much appreciated! > > I cannot reproduce it in development version, where formula display > mechanism was rewritten recently. > > Could you update Org and try again? >  I'm sorry, but I'm still getting this error in release_8.3.5-1000- g9d3a4a.dirty (installed from Arch linux AUR), I attached a screenshot. Could it be something with my config? The striped .emacs along with the examples below. Thanks and regards Uli --------------------.emacs---8<---------------------------------------- (require 'org-install) (custom-set-variables  '(custom-enabled-themes (quote (tsdh-dark)))) (require 'org) (require 'ox-latex) (add-hook 'org-mode-hook 'turn-on-org-cdlatex) (setq org-latex-create-formula-image-program 'dvipng) (setq org-highlight-latex-and-related '(latex script entities)) (plist-put org-format-latex-options :scale 3) (add-to-list 'org-latex-default-packages-alist '("" "caption" nil)) (add-to-list 'org-latex-packages-alist '("" "parskip" nil)) (add-to-list 'org-latex-packages-alist '("" "xcolor" nil)) (add-to-list 'org-latex-packages-alist '("" "siunitx" t)) (add-to-list 'org-latex-packages-alist '("" "minted" nil)) ; Code listings (setq org-latex-listings 'minted) (setq org-latex-minted-options               '(("frame" "lines") ("linenos=true") ("stepnumber" "5") ("framesep" "6pt")     ("mathescape" "true") ("fontsize" "\\footnotesize"))) (add-to-list 'org-latex-classes           '("koma-article"              "\\documentclass{scrartcl}"              ("\\section{%s}" . "\\section*{%s}")              ("\\subsection{%s}" . "\\subsection*{%s}")              ("\\subsubsection{%s}" . "\\subsubsection*{%s}")              ("\\paragraph{%s}" . "\\paragraph*{%s}")              ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))) --------------------.emacs--->8---------------------------------------- --------------------example1.org---8<---------------------------------- # #+LATEX_HEADER: \usepackage{pgfplots,tikz} $$(a+b)^2=a^2+2ab+b^2$$ --------------------example1.org--->8---------------------------------- --------------------example2.org---8<---------------------------------- #+LATEX_HEADER: \usepackage{pgfplots,tikz} $$a^2+b^2=c^2$$ --------------------example2.org--->8----------------------------------