Hi Austin,
try starting the second regular expression (the one denoting the end
line) with \n. In this way, the \n remains outside the narrowed
region. See for example how the +#begin_html line does it, just above
you own code.
Maybe you only looked at the #+begin_example, where I made
On Thu, Sep 18 2008, Carsten Dominik wrote:
> These regular expressions are incorrect. \\s- is the way to denote
> whitespace. However, since that also includes newlines, I prefer to
> write "[ \t]" in such cases.
Carsten--
Thanks for the tip. I now to get dumped into r-mode correctly when I
h
On Sep 17, 2008, at 8:44 PM, Austin Frank wrote:
Carsten--
Thanks for the response!
On Tue, Sep 16 2008, Carsten Dominik wrote:
since you want to include tis code literally into LaTeX, the best is
probably to encapsulate it into
#+BEGIN_LATEX #+END_LATEX
and to try to solve only the
Carsten--
Thanks for the response!
On Tue, Sep 16 2008, Carsten Dominik wrote:
> since you want to include tis code literally into LaTeX, the best is
> probably to encapsulate it into
>
> #+BEGIN_LATEX #+END_LATEX
>
> and to try to solve only the local editing issue.
Yes, this makes sense