Re: [O] Help understanding what's imported from a #+SETUPFILE file

2016-02-12 Thread Nicolas Goaziou
Hello, Kaushal Modi writes: >> SETUPFILE exports keywords defined in `org-export-options-alist' and in >> back-end > specific options (i.e. :options-alist). > > I tried "C-h v org-export-options-alist" but the result seemed cryptic to > me: Quoting its docstring: Alist between export proper

Re: [O] Help understanding what's imported from a #+SETUPFILE file

2016-02-12 Thread Kaushal Modi
> SETUPFILE exports keywords defined in `org-export-options-alist' and in > back-end specific options (i.e. :options-alist). I tried "C-h v org-export-options-alist" but the result seemed cryptic to me: ((:title "TITLE" nil nil parse) (:date "DATE" nil nil parse) (:author "AUTHOR" nil user-full

Re: [O] Help understanding what's imported from a #+SETUPFILE file

2016-02-12 Thread Nicolas Goaziou
Hello, Kaushal Modi writes: > Actually, I just realized that changing those 2 lines to: > > #+LaTeX_HEADER: \BeforeBeginEnvironment{minted}{\begin{mdframed}} > #+LaTeX_HEADER: \AfterEndEnvironment{minted}{\end{mdframed}} > > in the SETUPFILE works too. I don't recall the reason why I did not hav

Re: [O] Help understanding what's imported from a #+SETUPFILE file

2016-02-12 Thread Eric S Fraga
On Friday, 12 Feb 2016 at 15:11, Kaushal Modi wrote: > Actually, I just realized that changing those 2 lines to: > > #+LaTeX_HEADER: \BeforeBeginEnvironment{minted}{\begin{mdframed}} > #+LaTeX_HEADER: \AfterEndEnvironment{minted}{\end{mdframed}} This is indeed the solution. > in the SETUPFILE wor

Re: [O] Help understanding what's imported from a #+SETUPFILE file

2016-02-12 Thread Kaushal Modi
Actually, I just realized that changing those 2 lines to: #+LaTeX_HEADER: \BeforeBeginEnvironment{minted}{\begin{mdframed}} #+LaTeX_HEADER: \AfterEndEnvironment{minted}{\end{mdframed}} in the SETUPFILE works too. I don't recall the reason why I did not have them as LaTeX_HEADER earlier. But the