Hi Avdi, I can't reproduce your issue, specifically, when I run the first code block in the following example to customize the value of `org-export-latex-verbatim-wrap'
--8<---------------cut here---------------start------------->8--- ** simple latex verbatim wrap example #+begin_src emacs-lisp :results silent (setq org-export-latex-verbatim-wrap '("{\\scriptsize\n\\begin{verbatim}\n" . "\\end{verbatim}\n}\n")) #+end_src #+begin_src sh echo eric schulte echo another #+end_src --8<---------------cut here---------------end--------------->8--- and then export the example to LaTeX, I get the following in which the value of `org-export-latex-verbatim-wrap' is applied --8<---------------cut here---------------start------------->8--- \section*{simple latex verbatim wrap example} \label{sec-1} {\scriptsize \begin{verbatim} (setq org-export-latex-verbatim-wrap '("{\\scriptsize\n\\begin{verbatim}\n" . "\\end{verbatim}\n}\n")) \end{verbatim} } {\scriptsize \begin{verbatim} echo eric schulte echo another \end{verbatim} } --8<---------------cut here---------------end--------------->8--- Best -- Eric Avdi Grimm <a...@avdi.org> writes: > I have customized my org-export-latex-verbatim-wrap to create a shaded > box for verbatim text. However, when I have Babel source code blocks > which export results, the results are always rendered with plain > \begin{verbatim}...\end{verbatim}. > > I've been grepping through the code, but I can't figure out where > #+results: blocks are formatted into LaTeX. > > Help? -- Eric Schulte http://cs.unm.edu/~eschulte/