Re: [BUG] ob-R.el: extra empty data.frame columns generated from plain lists after recent change [9.6 (release_9.6-3-ga4d38e @ /usr/share/emacs/30.0.50/lisp/org/)]

2022-12-05 Thread Jérémie Juste
Hello Johan,

Many thanks for reporting the issue.
I'll investigate further and submit a patch next weekend at the latest.

Best regards,
Jeremie

On Mon, Dec 5, 2022 at 11:42 AM Johan Tolö  wrote:

> Greg Minshall  writes:
>
> > i see this same behavior.  to me, (org-babel-R-assign-elisp)
> > seems to be
> > the problem, but it hasn't changed any time recently.  (nor, if
> > my =git
> > blame= is done correctly, has anything else in ob-R.el.)
> [snipped]
>
> Yeah, the problem is not a change to ob-R.el but the recent change
> to ob-core.el (see the message of the commit I referenced). But
> the change to ob-core.el is final if I understand it correctly
> which means that ob-R.el has to be updated. Sorry if I was unclear
> in my description.
>
> Named plain lists were previously turned into data.frames with
> each first level item in one row. Second level items were in the
> second column I believe. After the change to ob-core.el they are
> still data.frames but first level items form columns instead of
> rows. Second (or deeper) level items are dropped as they should be
> after the change to ob-core.el (according to the commit message).
>
> --
> Johan Tolö
>
>

-- 
Jérémie Juste


Re: [O] Send subheading at the end of documents preserving the numbering

2017-10-11 Thread Jérémie Juste
Hello,

Many thanks to you,

Best regards,

Jeremie

On Wed, Oct 11, 2017 at 11:07 AM, Eric S Fraga <esfli...@gmail.com> wrote:

> On Wednesday, 11 Oct 2017 at 10:03, Jeremie Juste wrote:
> > Hello,
> >
> > I'm making some exercices with answers and I'm writing the answers just
> > after the questions in the following way
>
> [...]
>
> > There is an interesting package that does something similar in latex
> > https://ctan.org/pkg/probsoln. you can access it here after unzipping.
>
> Probably the easiest way is to use this LaTeX class and enclose the
> solutions in an org special block:
>
> --8<---cut here---start->8---
> #+latex_header: \usepackage{probsoln}
> * first question
> Do something.
> #+begin_solution
> here goes your solution
> #+end_solution
> --8<---cut here---end------->8---
>
>
> --
> : Eric S Fraga via Emacs 27.0.50, Org release_9.1.2-98-g0b8316
>



-- 
Jérémie Juste


Re: [O] no beamer export?

2017-05-17 Thread Jérémie Juste
Hello
I apologise for the wrong info. it seams that I should reread the manual
myself.

M-x org-beamer-mode,

Then C-c C-e l P

Best regards,
Jeremie



On Wed, May 17, 2017 at 3:41 PM, Jérémie Juste <jeremieju...@gmail.com>
wrote:

> Hello,
>
> M-x beamer-mode.
>
> Then export to beamer. C-c C-e L P
>
> Read the manual. :-)
>
> Best regards
>
> Jeremie
>
>
> On Wed, May 17, 2017 at 3:31 PM, Luca Ferrari <fluca1...@infinito.it>
> wrote:
>
>> Hi all,
>> I'm running emacs 25.1.2 and I've no beamer export in the C-c C-e.
>> I've tried to include the directives:
>>
>> #+LaTeX_CLASS: beamer
>> #+LaTeX_CLASS_OPTIONS: [presentation,smaller]
>> #+BEAMER_THEME: default
>>
>> and then do a latex ordinary export (C-c C-e l p) but I got 'Unknow
>> latex beamer class'.
>> Am I missing something?
>>
>> Thanks,
>> Luca
>>
>>
>
>
> --
> Jérémie Juste
>



-- 
Jérémie Juste


Re: [O] no beamer export?

2017-05-17 Thread Jérémie Juste
Hello,

M-x beamer-mode.

Then export to beamer. C-c C-e L P

Read the manual. :-)

Best regards

Jeremie


On Wed, May 17, 2017 at 3:31 PM, Luca Ferrari <fluca1...@infinito.it> wrote:

> Hi all,
> I'm running emacs 25.1.2 and I've no beamer export in the C-c C-e.
> I've tried to include the directives:
>
> #+LaTeX_CLASS: beamer
> #+LaTeX_CLASS_OPTIONS: [presentation,smaller]
> #+BEAMER_THEME: default
>
> and then do a latex ordinary export (C-c C-e l p) but I got 'Unknow
> latex beamer class'.
> Am I missing something?
>
> Thanks,
> Luca
>
>


-- 
Jérémie Juste


Re: [O] Table in org-mode not to be exported to latex

2017-05-17 Thread Jérémie Juste
Hello,

maybe something like

#+BEGIN_SRC org :exports none
| date   | change   | version |
|+--+-|
| 2016/11/18 | initial draft| 1.0 |
| 2017/05/04 | put in models of grief   | 1.5 |
| 2017/05/16 | removed creative commons | 1.6 |
||  | |
#+END_SRC

Best wishes,

Jeremie

On Wed, May 17, 2017 at 2:06 PM, Sharon Kimble <boudic...@skimble.plus.com>
wrote:

>
> How can I have an org-mode table in an org-mode document that is
> exported to latex, but the table is *NOT* exported, please?
>
> This is the table that I'm using -
>
> --8<---cut here---start->8---
> | date   | change   | version |
> |+--+-|
> | 2016/11/18 | initial draft| 1.0 |
> | 2017/05/04 | put in models of grief   | 1.5 |
> | 2017/05/16 | removed creative commons | 1.6 |
> ||  | |
> --8<---cut here---end--->8---
>
> I've tried putting it in a drawer, but when the document is exported to
> latex and the pdf built, it still shows the table.
>
> I've tried setting it up as below, but it then refuses to build the pdf.
>
> --8<---cut here---start->8---
> #+BEGIN_SRC :exports no
> | date   | change   | version |
> |+--+-|
> | 2016/11/18 | initial draft| 1.0 |
> | 2017/05/04 | put in models of grief   | 1.5 |
> | 2017/05/16 | removed creative commons | 1.6 |
> ||  | |
> #+END_SRC
> --8<---cut here---end--->8---
>
> I've looked at 'The Org Manual' version 9.0.7 but I can't see how to do
> it there either.
>
> Any ideas please?
>
> Thanks
> Sharon.
> --
> A taste of linux = http://www.sharons.org.uk
> TGmeds = http://www.tgmeds.org.uk
> DrugFacts = https://www.drugfacts.org.uk
> Debian 8.8, fluxbox 1.3.5-2, emacs 25.1.1.1, org-mode 9.0.7
>



-- 
Jérémie Juste


Re: [O] How to use :prologue with latex

2017-04-25 Thread Jérémie Juste
Hello,

Many thanks to you,

Best wishes,
Jeremie



On Mon, Apr 24, 2017 at 6:43 PM, Charles C. Berry <ccbe...@ucsd.edu> wrote:

> On Mon, 24 Apr 2017, Jeremie Juste wrote:
>
>
>>
>> Hello,
>>
>> I would like to use :prologue  and epilogue with latex output when using
>> R. Would it be possible to do something like the following?
>>
>>
> [...]
>
>> #+BEGIN_SRC R :results output latex :prologue \\begin{table} :epilogue
>> \\end{table} [...]
>>
>
> [...]
>
>
> Sure. But you do not need to; see my comment at bottom.  Try this:
>
> #+NAME: test1123
> #+HEADER: :prologue cat("\\begin{table}\n")
> #+HEADER: :epilogue cat("\\end{table}\n")
> #+BEGIN_SRC R :results output latex  :session *R* :dir tmp :cache no
> require(xtable)
> print(xtable(data.frame(a=rnorm(10),b=letters[1:10])),floati
> ng.environment=FALSE)
> #+END_SRC
>
> You might be better off using the :post header arg.
>
> Define a src block like this:
>
> #+name: add-table-env
> #+BEGIN_SRC emacs-lisp
> (format "\\begin{table}\n%s\n\\end{table}\n" *this*)
> #+END_SRC
>
> Then use
>
> #+HEADER: :post add-table-env()
>
> in place of the two header lines above.  The advantage is that you can if
> you want do more complicated moidification of the result.
>
> 
>
> AFAIK, LaTeX has no FALSE environment.
>
> I think what you actually wanted was *not* :prologue and :epilogue but
> this R code:
>
> #+begin_src R
> print(xtable(data.frame(a=rnorm(10),b=letters[1:10])),floati
> ng.environment="table")
> #+end_src
>
>
> HTH,
>
> Chuck
>
>
>
>


-- 
Jérémie Juste


Re: [O] org-mime-buffer-htmlize with BEGIN_EXPORT latex

2017-03-14 Thread Jérémie Juste
The previous latex codes don't run. My apologies should have checked the
latex code first. Now it does.

#+BEGIN_EXPORT latex
\begin{table}[!htbp]
\centering
\caption{Descriptive statistics}
\begin{tabular}{ l c r }

  1 & 2 & 3 \\

  4 & 5 & 6 \\
  7 & 8 & 9 \\
\end{tabluar}

\end{table}
#+END_EXPORT

work

\begin{table}[!htbp]
\centering
\caption{Descriptive statistics}
\begin{tabular}{ l c r }

  1 & 2 & 3 \\

  4 & 5 & 6 \\
  7 & 8 & 9 \\
\end{tabular}

\end{table}

work as well

#+BEGIN_latex
\begin{table}
\centering
\caption{Descriptive statistics}
\begin{tabular}{ l c r
}

  1 & 2 & 3
\\

  4 & 5 & 6 \\
  7 & 8 & 9
\\

\end{tabular}
\end{table}
#+END_latex

Best,

Jeremie


On Tue, Mar 14, 2017 at 10:35 AM, Jérémie Juste <jeremieju...@gmail.com>
wrote:

>
> Hello,
>
> I'm trying the org-mime-buffer-htmlize function but notice that it does
> not convert latex codes to image if they are in between export blocks.
> It is possible to have this feature enabled ?
>
> #+OPTIONS: H:3 num:t toc:nil \n:nil @:t ::t |:t ^:t -:t f:t tex:imagemagick
> #+LATEX_HEADER: \usepackage [margin=1in]{geometry}
> #+LATEX_CLASS: myclass
> #+LATEX_HEADER: \newcommand\numberEq{\addtocounter{equation}{1}\tag{
> \theequation}}
> #+LATEX_HEADER:\usepackage{setspace}
> #+LATEX_HEADER: \usepackage{tikz}
> #+LATEX_HEADER: \usepackage{longtable}
> #+LATEX_HEADER: \usepackage{bbm}
> #+LATEX_HEADER: \usepackage{rotating}
> #+LATEX_HEADER: \doublespace
>
> Does not work
>
> #+BEGIN_EXPORT latex
> \begin{table}[!htbp]
> \centering
> \caption{Descriptive statistics}
> \begin{tabular}{ l c r }
>
>   1 & 2 & 3 \\
>
>   4 & 5 & 6 \\
>   7 & 8 & 9 \\
>
> \end{table}
> #+END_EXPORT
>
> work
>
> \begin{table}[!htbp]
> \centering
> \caption{Descriptive statistics}
> \begin{tabular}{ l c r }
>
>   1 & 2 & 3 \\
>
>   4 & 5 & 6 \\
>   7 & 8 & 9 \\
>
> \end{table}
>
>
> Best regards,
> Jeremie
>
>


-- 
Jérémie Juste


[O] org-mime-buffer-htmlize with BEGIN_EXPORT latex

2017-03-14 Thread Jérémie Juste
Hello,

I'm trying the org-mime-buffer-htmlize function but notice that it does
not convert latex codes to image if they are in between export blocks.
It is possible to have this feature enabled ?

#+OPTIONS: H:3 num:t toc:nil \n:nil @:t ::t |:t ^:t -:t f:t tex:imagemagick
#+LATEX_HEADER: \usepackage [margin=1in]{geometry}
#+LATEX_CLASS: myclass
#+LATEX_HEADER:
\newcommand\numberEq{\addtocounter{equation}{1}\tag{\theequation}}
#+LATEX_HEADER:\usepackage{setspace}
#+LATEX_HEADER: \usepackage{tikz}
#+LATEX_HEADER: \usepackage{longtable}
#+LATEX_HEADER: \usepackage{bbm}
#+LATEX_HEADER: \usepackage{rotating}
#+LATEX_HEADER: \doublespace

Does not work

#+BEGIN_EXPORT latex
\begin{table}[!htbp]
\centering
\caption{Descriptive statistics}
\begin{tabular}{ l c r
}

  1 & 2 & 3
\\

  4 & 5 & 6 \\
  7 & 8 & 9
\\

\end{table}
#+END_EXPORT

work

\begin{table}[!htbp]
\centering
\caption{Descriptive statistics}
\begin{tabular}{ l c r
}

  1 & 2 & 3
\\

  4 & 5 & 6 \\
  7 & 8 & 9
\\

\end{table}


Best regards,
Jeremie


Re: [O] Default silent results

2017-03-13 Thread Jérémie Juste
Hello

you can tweek the default behaviour  using
org-babel-default-header-args:org variable

My default configuration for org is the following. I did not modify it.

org-babel-default-header-args:org is a variable defined in ‘ob-org.el’.
Its value is ((:results . "raw silent") (:exports . "code"))


Best regards

Jeremie

On Mon, Mar 13, 2017 at 4:30 PM, Jarmo Hurri <jarmo.hu...@iki.fi> wrote:

>
> Greetings.
>
> An old org-code of mine stopped working, and while trying to fix it I
> bumped into the following. What am I missing here?
>
> Jarmo
>
> * test
>   A simple code block.
>   #+name: org-block
>   #+BEGIN_SRC org
>   | foo | bar |
>   |-+-|
>   |   1 |   2 |
>   #+END_SRC
>
>   A silent call produces no results as expected.
>   #+call: org-block() :results silent
>
>   This produces results as expected.
>   #+call: org-block() :results replace
>
>   #+RESULTS:
>   | foo | bar |
>   |-+-|
>   |   1 |   2 |
>
>   But this also behaves like silent, while the manual says that the
>   default is "replace."
>   #+call: org-block()
>
>
>


-- 
Jérémie Juste


[O] latex preview in latex block

2016-04-13 Thread Jérémie Juste
Hello,
>
> Jérémie Juste <jeremieju...@gmail.com> writes:
>
>> Is it possible to activate the latex preview in org-mode within in latex
>> bloc?

Nicolas Goaziou <m...@nicolasgoaziou.fr> writes:
>
> It isn't possible out of the box. Org doesn't look at the contents of
> src blocks, which are supposed to be written in a foreign language.
>
> However, you can probably write a function for your own use, starting
> from `org-format-latex'.
>
> Regards,


Actually, there is a simpler way of previewing the latex code from the
output of a babel source block. We just need to specify   :results output
raw. For example

#+begin_src R :results output raw
   
#+end_src

Best regards

Jeremie Juste


[O] latex preview in latex block

2016-04-09 Thread Jérémie Juste
Hello,

Is it possible to activate the latex preview in org-mode within in latex
bloc?
My idea was to comment the table when I get the output. I noticed also that
preview does not work with the table environment but works fine with the
tablular environment.

This does not work
#+BEGIN_SRC Latex
\begin{align*}
y = x^2
\end{align*}
#+END_SRC


This fragment works fine.
\begin{align*}
y = x^2
\end{align*}

Best regards
-- 
Jeremie Juste


[O] does :eval no works with org-babel-load-file?

2016-04-02 Thread Jérémie Juste
Hello,

I use my  an org-mode file as my init.el and use  org-babel-load-file to
launch the
the file emacs-init.org.

i was trying to debug the emacs-init.org and wanted to prevent some part
from being written to the file emacs-init.el but didn't succeed.

in emacs-init.org

#+begin_src emacs-lisp :eval no
(message "you should not appear")
#+end_src

in emacs-init.el

(message "you should not appear")

Preventing part of the init.el file to be read would be awesome for
debugging.
Do you have a way around it?

Best
-- 
Jeremie Juste


Re: [O] faster auto-completion suggestions in org-mode

2016-03-22 Thread Jérémie Juste
Hello,

The reason why auto-completion with auto-complete-mode is slow might be
because of
flyspell-mode. Do you use it by default on org-mode by any chance?

I tried disabling flyspell-mode and got good results.(Not as fast as
pabbrev-mode but fast enough)

I also posted an issue here
https://github.com/auto-complete/auto-complete/issues/435

the M-x profile-start, M-x profile-report was really helpful here.

Best regards,

Jeremie






On Fri, Mar 18, 2016 at 6:33 PM, Eric S Fraga <e.fr...@ucl.ac.uk> wrote:

> On Friday, 18 Mar 2016 at 13:14, Jérémie Juste wrote:
> > Hello,
> >
> > I'm using auto-complete <https://www.emacswiki.org/emacs/AutoComplete>in
> > org mode but I notice that there is more delay in the completion in
> > org-mode than in text mode for example.
>
> I used to use auto-complete but gave up for just this
> reason.  Interestingly, in my initialisation file, I have the following
> comment:
>
> ;; latest version 1.3.1 is too slow; back to 0.2.0
>
> In any case, I use pabbrev instead which may suit you.
>
> However, if you find a solution to the speed problems with
> auto-complete, do let us know!
> --
> : Eric S Fraga (0xFFFCF67D), Emacs 25.0.91.1, Org release_8.3.4-626-gb62d55
>



-- 
Jérémie Juste


[O] html email newsletter with org-mime

2016-03-19 Thread Jérémie Juste
Hello,

I was trying to create an html email newletter using org-mime-html-buffer
along with gnus. The results are quite good, but it's still a bit costly to
add some html attributes.

I usually do the following in org-mode

|--|
| [[file+emacs:org-mode-unicorn-logo.png][org-unicorn]]   height="188"
width="787.2 align=center"|
|--|
| style="background-color:#8470ff;font-size:200%;text-align:center;">
Title 1 |
|
|
|--|
| style="background-color:#8470ff;font-size:200%;text-align:center;">
Title 2 |
|
|
|--|

then use regular expression to correct the html attributes. Do you have any
idea how we can improve this?

Thanks

-- 
Jeremie Juste


Re: [O] ox-koma-letter: org-latex--insert-compiler not found

2016-03-19 Thread Jérémie Juste
On Sat, Mar 19, 2016 at 11:50 AM, Eric S Fraga <e.fr...@ucl.ac.uk> wrote:

> On Saturday, 19 Mar 2016 at 08:38, Jeremie Juste wrote:
> > Hello,
> >
> > I'm trying trying org KOMA-Script letter exporter, but I get the
> > following error: concat:
> >
> > Symbol's function definition is void: org-latex--insert-compiler.
> >
> > I could not find the function org-latex--insert-compiler.
> > Do you have a clue about this?
>
> What version of org are you using?  Errors such as these are often due
> to having multiple versions of org installed, e.g. the one that comes
> with your emacs distribution as well as one from another source.
>
> In any case, this is defined in ox-latex.el, at least in recent versions
> of org.  Maybe "(require 'ox-latex)" before trying to use the koma
> exporter?
>
> --
> : Eric S Fraga (0xFFFCF67D), Emacs 25.0.91.1, Org release_8.3.4-626-gb62d55
>

Yes indeed you are right. The versions of org-mode and org-contrib mode
were different.
I updated both of them to the latest one :

Org-mode version 8.3.4 (8.3.4-15-gdd9be3-elpaplus @
/home/DJJ/.emacs.d/elpa/org-plus-contrib-20160314/)

and everything works fine.

Thanks,

Jeremie Juste



-- 
Jérémie Juste


[O] faster auto-completion suggestions in org-mode

2016-03-19 Thread Jérémie Juste
Hello,

I'm using auto-complete in
org mode but I notice that there is more delay in the completion in
org-mode than in text mode for example.

I tried to customize auto-complete by reducing the delay to a maximum but
it didn't improve in org-mode.

Do you know what is causing this delay and if it's is possible to improve
it.

Thanks
-- 
Jeremie Juste


[O] org-export to beamer

2015-11-07 Thread Jérémie Juste
I want to export org to beamer. It worked well previously when I press
C-c C-e l O. But in recent days, when I press C-c C-e l, the options
for beamer are missing. I can only export to pdf, not beamer.

What?s the problem, and what can I do?

Thanks a lot!


Hello,

In the last version of org-mode you only need to activate beamer-mode.
M-x beamer-mode. Then you are good to go with C-c C-e l O

you can also do
M-x org-beamer-export-to-pdf and bind it to a key of your preference.



-- 
Jérémie Juste


Re: [O] multiple cursor not working properly with org-mode

2015-10-16 Thread Jérémie Juste
Hello,

I started an emacs - Q session and loaded only multiple-cursors. I still
have the same issue.
my verson of multiple-cursors is multiple-cursors-20150710.456 - the latest
one from melpa.



On Wed, Oct 14, 2015 at 11:17 PM, Kaushal Modi <kaushal.m...@gmail.com>
wrote:

> It works fine for me.
>
> Have you tried starting an emacs -Q session and loading just
> multiple-cursors (and org-mode, if you are not using the org-mode version
> shipped with emacs)?
>
> Can you replicate the problem then?
>
> If not, then comment out your whole emacs config and uncomment it 50% at a
> time between emacs restarts till you narrow down to the part in the config
> causing this issue.
>
>
> --
> Kaushal Modi
>
> On Wed, Oct 14, 2015 at 4:56 PM, Jérémie Juste <jeremieju...@gmail.com>
> wrote:
>
>> Hello,
>>
>> Multiple cursor <https://github.com/magnars/multiple-cursors.el>is a
>> very handy tool. but I don't understand why it does not work properly in
>> org-mode.  I can delete characters but I cannot  write anything in
>> org-mode. For the time being when it's not too costly I've resorted
>> switching to text-mode make the modification and then back to org-mode.
>>
>> anyone tried something better?
>>
>> --
>> Jérémie Juste
>>
>
>


-- 
Jérémie Juste


Re: [O] multiple cursor not working properly with org-mode

2015-10-16 Thread Jérémie Juste
*
   emacs version

   GNU EMACS 24.5.1 (X86_64-REDHAT-LINUX-GNU, GTK+ VERSION 3.16.6) OF
2015-09-14 ON BUILDVM-10.PHX2.FEDORAPROJECT.ORG

   Org version

   Org-mode version 8.3.1 (8.3.1-103-g366dc4-elpa @
/home/DJJ/.emacs.d/elpa/org-20150907/)


   * About the problem

   When I have a key binding which is s-d for mc/mark-next-like-this. This
works pretty well. I can mark easily what I want to mark. I can delete
characters with all the cursors but when I type a character only the first
cursor enters them. I have the same issue with  mc/mark-previous-like-this.

   I tried the same procedure with different mode but didn't have any
problem. (eg ess-mode, python-mode, text-mode, lisp-mode)

I hope I have provided enough info. I'll be glad to provide more info if it
can help.

On Fri, Oct 16, 2015 at 5:20 PM, Kaushal Modi <kaushal.m...@gmail.com>
wrote:

> I am using the same multiple-cursors version.
>
> What is you OS, emacs version (M-x emacs-version) and org-mode version
> (M-x org-version)?
>
> I don't know if that information will help as I have never seen the
> problem you described. But it will still be good to have that info.
>
> What happens when you try to write anything.. can you post what you
> get when you hit something like "C-h c a" once you are in that mode
> when you cannot type?
> Does this happen after all of multiple-cursors commands
> (mc/mark-next-like-this, mc/mark-prev-like-this, ...)?
>
> It will be very useful if you can provide a step-by-step explanation
> of what commands you are running to recreate that problem starting
> from an emacs -Q session.. provide us a recipe of the problem.
>
> It should also open this issue on the multiple-cursors github with all
> the above info if you are sure that this happens only with
> multiple-cursors loaded.
>
> --
> Kaushal Modi
>
>
> On Fri, Oct 16, 2015 at 11:10 AM, Jérémie Juste <jeremieju...@gmail.com>
> wrote:
> > Hello,
> >
> > I started an emacs - Q session and loaded only multiple-cursors. I still
> > have the same issue.
> > my verson of multiple-cursors is multiple-cursors-20150710.456 - the
> latest
> > one from melpa.
> >
> >
> >
> > On Wed, Oct 14, 2015 at 11:17 PM, Kaushal Modi <kaushal.m...@gmail.com>
> > wrote:
> >>
> >> It works fine for me.
> >>
> >> Have you tried starting an emacs -Q session and loading just
> >> multiple-cursors (and org-mode, if you are not using the org-mode
> version
> >> shipped with emacs)?
> >>
> >> Can you replicate the problem then?
> >>
> >> If not, then comment out your whole emacs config and uncomment it 50%
> at a
> >> time between emacs restarts till you narrow down to the part in the
> config
> >> causing this issue.
> >>
> >>
> >> --
> >> Kaushal Modi
> >>
> >> On Wed, Oct 14, 2015 at 4:56 PM, Jérémie Juste <jeremieju...@gmail.com>
> >> wrote:
> >>>
> >>> Hello,
> >>>
> >>> Multiple cursor is a very handy tool. but I don't understand why it
> does
> >>> not work properly in org-mode.  I can delete characters but I cannot
> write
> >>> anything in org-mode. For the time being when it's not too costly I've
> >>> resorted switching to text-mode make the modification and then back to
> >>> org-mode.
> >>>
> >>> anyone tried something better?
> >>>
> >>> --
> >>> Jérémie Juste
> >>
> >>
> >
> >
> >
> > --
> > Jérémie Juste
>



-- 
Jérémie Juste


Re: [O] Emacs-orgmode Digest, Vol 116, Issue 17

2015-10-15 Thread Jérémie Juste
Hello Tobias,

I can't see clearly why you setting is not working.  I changed the heading
to H1 and got something like this

#+TITLE:
#+AUTHOR:
#+OPTIONS:   H:1 num:t toc:nil \n:nil @:t ::t |:t ^:t -:t f:t *:t
#+LATEX_CLASS: beamer
#+LATEX_CLASS_OPTIONS: [presentation]
#+COLUMNS: %45ITEM %10BEAMER_ENV(Env) %10BEAMER_ACT(Act) %4BEAMER_COL(Col)
%8BEAMER_OPT(Opt)
#+SELECT_TAGS: export
#+EXCLUDE_TAGS: noexport
#+latex_header: \mode{\usetheme{Madrid}}


** Privatkopie
   :PROPERTIES:
   :BEAMER_envargs: [t]
   :END:


*** Bild
:PROPERTIES:
:BEAMER_COL: 0.52
:END:
[[file:/tmp/testimg.jpg]]

*** Privatkopie
:PROPERTIES:
:BEAMER_COL: 0.48
:END:
- z.B. Rippen einer CD als MP3
- Aufnahme einer Sendung auf DVD
- Verg?tung der Urheber ?ber Pauschalabgaben
- z.B. bei Rohlingen, Kopierern, Computern



Hope it helps



On Thu, Oct 15, 2015 at 6:58 PM, <emacs-orgmode-requ...@gnu.org> wrote:

> Send Emacs-orgmode mailing list submissions to
> emacs-orgmode@gnu.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> https://lists.gnu.org/mailman/listinfo/emacs-orgmode
> or, via email, send a message with subject or body 'help' to
> emacs-orgmode-requ...@gnu.org
>
> You can reach the person managing the list at
> emacs-orgmode-ow...@gnu.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Emacs-orgmode digest..."
>
>
> Today's Topics:
>
>1. patch fixing a typo in the docs (Michael O'Connor)
>2. two columns with image filling one (Tobias Frischholz)
>
>
> --
>
> Message: 1
> Date: Wed, 14 Oct 2015 01:20:02 +
> From: "Michael O'Connor" <mkocon...@gmail.com>
> To: emacs-orgmode@gnu.org
> Subject: [O] patch fixing a typo in the docs
> Message-ID:
> <
> cacatoeadur_ghtrre4fvpzcw9zd2sm6nai5aa6rtj+ftgbg...@mail.gmail.com>
> Content-Type: text/plain; charset="utf-8"
>
> Hello, I've attached a patch fixing a minor typo in the docs.  I think this
> is the right list to send it to, let me know if I should send it elsewhere!
> -- next part --
> An HTML attachment was scrubbed...
> URL: <
> http://lists.gnu.org/archive/html/emacs-orgmode/attachments/20151014/0ae38319/attachment.html
> >
> -- next part --
> A non-text attachment was scrubbed...
> Name: 0001-org.texi-orgguide.texi-Fix-spelling-of-Sean-Astin-s-.patch
> Type: application/octet-stream
> Size: 1507 bytes
> Desc: not available
> URL: <
> http://lists.gnu.org/archive/html/emacs-orgmode/attachments/20151014/0ae38319/attachment.obj
> >
>
> --
>
> Message: 2
> Date: Wed, 14 Oct 2015 13:53:59 +0200
> From: Tobias Frischholz <tob...@friolz.com>
> To: Org Mode Mailing List <emacs-orgmode@gnu.org>
> Subject: [O] two columns with image filling one
> Message-ID: <2c054e8b-e838-4f69-8405-0b5b96193...@friolz.com>
> Content-Type: text/plain; charset="utf-8"
>
> Hi all!
>
> I?m trying to setup a two column Frame that consists of  one column with
> text and the other one with an image that is completely filling the column.
>
> Something like this:
>
>
>
> DeckSet, a Mac app, is doing very well.
>
> So far I?ve done this in org mode:
>
> ** Privatkopie
> *** Bild
> :PROPERTIES:
> :BEAMER_COL: 0.48
> :END:
> #+ATTR_LATEX: width=\textwidth
> [[file:img/runner.jpg]]
> *** Privatkopie
> :PROPERTIES:
> :BEAMER_COL: 0.48
> :END:
> - z.B. Rippen einer CD als MP3
> - Aufnahme einer Sendung auf DVD
> - Verg?tung der Urheber ?ber Pauschalabgaben
>   - z.B. bei Rohlingen, Kopierern, Computern
>
> Any help would be greatly appreciated!
>
> ?
> Tobias
> -- next part --
> An HTML attachment was scrubbed...
> URL: <
> http://lists.gnu.org/archive/html/emacs-orgmode/attachments/20151014/1f2852fb/attachment.html
> >
> -- next part --
> A non-text attachment was scrubbed...
> Name: Screen Shot 2015-10-13 at 22.53.26.png
> Type: image/png
> Size: 795918 bytes
> Desc: not available
> URL: <
> http://lists.gnu.org/archive/html/emacs-orgmode/attachments/20151014/1f2852fb/attachment.png
> >
> -- next part --
> A non-text attachment was scrubbed...
> Name: signature.asc
> Type: application/pgp-signature
> Size: 801 bytes
> Desc: Message signed with OpenPGP using GPGMail
> URL: <
> http://lists.gnu.org/archive/html/emacs-orgmode/attachments/20151014/1f2852fb/attachment.pgp
> >
>
> End of Emacs-orgmode Digest, Vol 116, Issue 17
> **
>



-- 
Jérémie Juste


[O] multiple cursor not working properly with org-mode

2015-10-14 Thread Jérémie Juste
Hello,

Multiple cursor <https://github.com/magnars/multiple-cursors.el>is a very
handy tool. but I don't understand why it does not work properly in
org-mode.  I can delete characters but I cannot  write anything in
org-mode. For the time being when it's not too costly I've resorted
switching to text-mode make the modification and then back to org-mode.

anyone tried something better?

-- 
Jérémie Juste