ug. Sorry for the noise, the \Path in *%appdata%\Path\Path\Path* is getting interpreted as latex fragments, which don't evaluate to anything I guess. This doesn't happen consistently though, the \Paths get stripped from **, // and __, but not from == and ~~. I am not sure if that is an inconsistency. Does anyone know if there is a way to suppress recognizing these kinds of latex without losing rendering of equations? *%appdata%\Path\Path\Path* /%appdata%\Path\Path\Path/ _%appdata%\Path\Path\Path_ =%appdata%\Path\Path\Path= ~%appdata%\Path\Path\Path~ * Code :noexport: #+BEGIN_SRC emacs-lisp (let ((org-html-with-latex 'dvipng)) (with-current-buffer (org-export-to-buffer 'html "*Formatted Copy*" nil nil t t) (buffer-string))) #+END_SRC #+RESULTS: #+begin_example

%appdata%

%appdata%

%appdata%

%appdata%\Path\Path\Path

%appdata%\Path\Path\Path

#+end_example John ----------------------------------- Professor John Kitchin Doherty Hall A207F Department of Chemical Engineering Carnegie Mellon University Pittsburgh, PA 15213 412-268-7803 @johnkitchin http://kitchingroup.cheme.cmu.edu On Mon, Dec 3, 2018 at 3:59 PM John Kitchin wrote: > I see I made a mistake in the second example: > > #+BEGIN_SRC emacs-lisp > (let ((org-html-with-latex 'dvisvgm)) > (with-current-buffer (org-export-to-buffer 'html "*Formatted Copy*" nil > nil t t) > (buffer-string))) > #+END_SRC > > #+RESULTS: > :

> : %appdata% > :

> > Is this just happening because % is a comment character in latex? > > John > > ----------------------------------- > Professor John Kitchin > Doherty Hall A207F > Department of Chemical Engineering > Carnegie Mellon University > Pittsburgh, PA 15213 > 412-268-7803 > @johnkitchin > http://kitchingroup.cheme.cmu.edu > > > > On Mon, Dec 3, 2018 at 3:54 PM John Kitchin > wrote: > >> If I have this in an org-file, I was surprised to see different behavior >> of the export depending on the value of org-html-with-latex. Unless I set >> it to dvisgm, then the backslashed path seems to get removed. Is this as >> surprising as it seems to be? >> >> >> *%appdata%\Path\Path\Path* >> >> * Code >> :noexport: >> #+BEGIN_SRC emacs-lisp >> (let ((org-html-with-latex 'dvipng)) >> (with-current-buffer (org-export-to-buffer 'html "*Formatted Copy*" nil >> nil t t) >> (buffer-string))) >> #+END_SRC >> >> #+RESULTS: >> :

>> : %appdata% >> :

>> >> >> #+BEGIN_SRC emacs-lisp >> (let ((org-html-with-latex 'dvisgm)) >> (with-current-buffer (org-export-to-buffer 'html "*Formatted Copy*" nil >> nil t t) >> (buffer-string))) >> #+END_SRC >> >> #+RESULTS: >> :

>> : %appdata%\Path\Path\Path >> :

>> >> John >> >> ----------------------------------- >> Professor John Kitchin >> Doherty Hall A207F >> Department of Chemical Engineering >> Carnegie Mellon University >> Pittsburgh, PA 15213 >> 412-268-7803 >> @johnkitchin >> http://kitchingroup.cheme.cmu.edu >> >>