Re: [O] Embedded LaTeX fontification

2016-09-09 Thread Charles C. Berry
On Fri, 9 Sep 2016, Kai von Fintel wrote: When I embed LaTeX code in a `#+BEGIN_SRC latex` block and `org-src-fontify-natively` is set to `t`, the code is fontified as LaTeX code. But when the code is embedded in a `#+BEGIN_LaTeX` block, there's no fontification. Is that as intended? Am I

Re: [O] adding "wrap=off" option to textarea for HTML export

2016-09-09 Thread Clément Pit--Claudel
On 2016-09-08 11:49, Eric S Fraga wrote: > To turn wrapping off, I would need to add 'wrap="off"' to the textarea > form as this option cannot be controlled using CSS unfortunately. I > don't see any way to do this from org. Hm. Doesn't the following work? textarea { white-space: pre; }

Re: [O] adding "wrap=off" option to textarea for HTML export

2016-09-09 Thread Eric S Fraga
On Friday, 9 Sep 2016 at 15:32, Clément Pit--Claudel wrote: > On 2016-09-08 11:49, Eric S Fraga wrote: >> To turn wrapping off, I would need to add 'wrap="off"' to the textarea >> form as this option cannot be controlled using CSS unfortunately. I >> don't see any way to do this from org. > >

Re: [O] Embedded LaTeX fontification

2016-09-09 Thread Eric S Fraga
On Friday, 9 Sep 2016 at 12:06, Kai von Fintel wrote: > When I embed LaTeX code in a #+BEGIN_SRC latex block and > org-src-fontify-natively is set to t, the code is fontified as LaTeX > code. But when the code is embedded in a #+BEGIN_LaTeX block, there's > no fontification. Is that as intended?

Re: [O] fill paragraph: break after sentence.

2016-09-09 Thread Andreas Röhler
On 06.09.2016 10:23, Uwe Brauer wrote: Hello I would like to modify the auto-fill function such that after every sentence a new line starts like this In order to prove our nonlinear instability result, we want to use the linear growing mode in Proposition to construct small initial data for

[O] Embedded LaTeX fontification

2016-09-09 Thread Kai von Fintel
When I embed LaTeX code in a `#+BEGIN_SRC latex` block and `org-src-fontify-natively` is set to `t`, the code is fontified as LaTeX code. But when the code is embedded in a `#+BEGIN_LaTeX` block, there's no fontification. Is that as intended? Am I missing some setting? Or could that

Re: [O] org-review is on melpa

2016-09-09 Thread Alan Schmitt
Hello Karl, On 2016-09-08 13:02, Karl Voit writes: > Hallo Alan, > > * Alan Schmitt wrote: >> >> After using this for a couple of years, I=E2=80=99ve finally taken the time= >> to >> put it on Melpa. Org-review

Re: [O] adding "wrap=off" option to textarea for HTML export

2016-09-09 Thread Eric S Fraga
On Thursday, 8 Sep 2016 at 17:54, Nick Dokos wrote: > Can you add a post-processing hook? A simple text replacement might be enough. This worked very well: #+begin_src emacs-lisp :exports results :results none (defun add-wrap-to-textarea (text backend info) (when

Re: [O] How to add a label in LaTeX export

2016-09-09 Thread Florian Lindner
Am 06.09.2016 um 10:59 schrieb Nicolas Goaziou: > Hello, > > Florian Lindner writes: > >> I have this org mode document: >> >> #+BEGIN_SRC python :exports results :results file >> import matplotlib.pyplot as plt, numpy as np >> x = np.linspace(-2, 2, 1000) >>

Re: [O] Embedded LaTeX fontification

2016-09-09 Thread s j
I am using the org-plus-contrib package in org ELPA. The export block #+begin_export latex ... #+end_export does not work properly. It produces \begin{export} ... \end{export} in the .tex file and causes error. Instead, I still need to use #+begin_latex ...

Re: [O] Embedded LaTeX fontification

2016-09-09 Thread Nick Dokos
s j writes: > I am using the org-plus-contrib package in org ELPA. > > The export block > > #+begin_export latex > ... > #+end_export > > does not work properly. > It produces > > \begin{export} > ... > \end{export} > > in the .tex file and causes error. > > Instead, I