Scott Randby writes:
> I cannot get the skip:t option to work with HTML export. This option is
> listed in the manual, and it worked before Org-8. Am I missing
> something? Below is a simple sample in which skip:t doesn't work, even
> with emacs -q. I'm using Emacs 24.2.1 with Org 8.0.3.
>
I don
I cannot get the skip:t option to work with HTML export. This option is
listed in the manual, and it worked before Org-8. Am I missing
something? Below is a simple sample in which skip:t doesn't work, even
with emacs -q. I'm using Emacs 24.2.1 with Org 8.0.3.
Scott Randby
This text shoul
Charles Berry writes:
> The changes introduced in commit
>
> cea0434c4f7f7f1fc1547e6790b96a76bc217e15
> ox: Change back-ends internal representation to structures
>
> necessitate extracting the name of the back-end from a vector.
>
> So, this bit of code
>
> (memq backend '(beamer latex
Aaron Ecay writes:
> Thomas,
>
> Since backends are no longer passed as symbols, but as structs, I
> think you should use the `org-export-derived-backend-p' function.
> Does your code work if you replace `(memq backend ...)' with
> `(org-export-derived-backend-p backend 'latex)'? (beamer is deri
Hi Malcom,
On Thu, Aug 8, 2013 at 10:04 PM, Malcolm Cook wrote:
> Aaron,
>
> Thanks for staying with me on this.
>
> I'm not sure what you're suggesting.
>
> Nonetheless, I just updated org from `git clone
> git://orgmode.org/org-mode.git`
>
> So, now I'm got org-version release_8.0.7-377-gef2d
Thomas S. Dye tsdye.com> writes:
>
> Charles Berry ucsd.edu> writes:
>
[filter to demo extracting back-end name deleted]
> >
> > ,
> > | type-of back-end: vector
> > | name of back-end: latex
> > `
>
> Yes, it does.
>
> >
> > Take a look at "(defstruct (org-export-backend..." in ox
I pushed some conversion code which I am more confident about to the
tz-test branch. If you want to re-test, please do so.
Cheers,
Simon
On 08/08/2013 10:56 PM, Simon Thum wrote:
Stephen,
I now have time to take a look if you send me an example ical.
Cheers,
Simon
On 07/31/2013 11:18 PM
Thomas,
Since backends are no longer passed as symbols, but as structs, I
think you should use the `org-export-derived-backend-p' function.
Does your code work if you replace `(memq backend ...)' with
`(org-export-derived-backend-p backend 'latex)'? (beamer is derived
from latex, so you don't nee
Charles Berry writes:
> Did you upgrade as in 'git pull'? If not, I cannot help.
Yes, Org-mode version 8.0.7 (release_8.0.7-377-gef2d47 @
/Users/dk/.emacs.d/src/org-mode/lisp/)
>
> If so,
>
> This bit of org-mode:
>
> ,
> | * headline
> |
> |
> | #+BEGIN_SRC emacs-lisp :eval yes :exports b
Thomas S. Dye tsdye.com> writes:
>
> Aloha all,
>
> After an upgrade from 8.0.3 this morning I'm unable to export a large
> writing project that has kept me from reading the ML regularly for the
> last few months. It seems that filters that used to work, no longer do
> so. For example,
>
> #
I have struggled with this myself. The answer is that the following line
will give what you want:
#+OPTIONS: H:2
I'm not sure why the BEAMER_FRAME_LEVEL instruction doesn't handle that,
but the OPTIONS seems needed.
Tom
On Fri, Aug 9, 2013 at 6:05 AM, Ronert Obst wrote:
> Hi,
>
> I am trying
Aloha all,
After an upgrade from 8.0.3 this morning I'm unable to export a large
writing project that has kept me from reading the ML regularly for the
last few months. It seems that filters that used to work, no longer do
so. For example,
#+name: tsd-parencites
#+BEGIN_SRC emacs-lisp
(def
Hi,
Hi,
I've release the 0.1.0 version of org-trello - 2 way sync between org and
trello.
Main page: http://ardumont.github.io/org-trello/
Demos:
- http://adumont.fr/blog/org-trello-sync-your-org-file-to-trello/
- http://adumont.fr/blog/org-trello-new-features/
Bindings/Actions:
C-c o i - M-x
Hello,
On Aug 9, 2013 10:57 AM, "Sebastien Vauban" wrote:
>
> Hello,
>
> Suppose I want a convenient way to see my most important tasks, the ones
> which:
>
> - are due soon (in the next 7 days), or
> - have a high priority (#A), or
> - are FLAGGED.
>
> If I don't mind having the entries mixed, t
Carsten Dominik writes:
> On 15.5.2013, at 22:21, John Hendy wrote:
>
>> On Wed, May 15, 2013 at 12:38 PM, Vincent Beffara
>> wrote:
>>> Dear list,
>>>
>>> I would like to have the same org file export to both PDF (through
>>> LaTeX) and HTML. The problem I have is images: for printing, PDF i
Hello,
Suppose I want a convenient way to see my most important tasks, the ones
which:
- are due soon (in the next 7 days), or
- have a high priority (#A), or
- are FLAGGED.
If I don't mind having the entries mixed, this is quite simple and short:
#+begin_src emacs-lisp
(add-to-list 'org-agen
Hi all,
when exporting to OpenOffice using a ott file as template I get the
error "Invalid specification of styles.xml: nil", even if I placed the
property
#+ODT_STYLES_FILE: /home/luca/letter.ott
in the org file. Regular exports to ODT works out of the box, of course!
What am I missing?
Thanks,
L
Hi Carsten!
All of my headings are followed by an inactive timestamp. I've started
leaving a blank line before the content for the heading so the inactive
timestamp is not exported when timestamps are disabled with the <:nil
option. This works fine for me.
Regards,
Bernt
Carsten Dominik write
On Fri, Aug 09, 2013 at 11:49:48AM +0200, Carsten Dominik wrote:
>
> On 15.5.2013, at 22:21, John Hendy wrote:
>
> > On Wed, May 15, 2013 at 12:38 PM, Vincent Beffara
> > wrote:
> >> Dear list,
> >>
> >> I would like to have the same org file export to both PDF (through
> >> LaTeX) and HTML.
Hi,
I am trying to move my beamer export settings to the new exporter, but I
cannot even get a minimal example from the documentation to work properly.
Specifically, Org-Mode headings do not get parsed to frames during export
to LaTeX Beamer.
I added the minimal beamer export setup from
http://or
On 15.5.2013, at 22:21, John Hendy wrote:
> On Wed, May 15, 2013 at 12:38 PM, Vincent Beffara
> wrote:
>> Dear list,
>>
>> I would like to have the same org file export to both PDF (through
>> LaTeX) and HTML. The problem I have is images: for printing, PDF images
>> would be best but for dis
On 15.5.2013, at 14:29, Nicolas Bercher wrote:
> Hi,
>
> I'm quite an emacs newbie but I'm using org-mode since
> 2 two years.
>
> I'd like to get a higher resolution in time stamps by
> adding "seconds" field (%S ?), to obtain something like
> this:
>
> <2013-05-15 Wed 14:18:55>
>
> or
>
On 15.5.2013, at 11:37, Miro Bezjak wrote:
> Hi all,
>
> for orgmode 7.9.x I had the following defadvice.
>
>
> (defadvice org-read-date (around my-no-disputed-keys activate)
> "Ignore org-replace-disputed-keys when calendar is active."
> (let ((org-replace-disputed-keys nil))
> a
Hi Michael,
I tried to apply this patch and failed - possibly because it is a bit too old.
Could I ask you to make an updated version of the patch for me to evaluate and
resubmit?
Thank you
- Carsten
On 1.5.2013, at 04:54, Michael Gauland wrote:
> Agenda: Add fortnight as a time span
>
>
Hi guys,
did you arrive at a conclusion of this thread, or is this still open?
Thanks
- Carsten
On 16.4.2013, at 09:48, Bastien wrote:
> Hi Nicolas,
>
> Nicolas Goaziou writes:
>
>> Bastien writes:
>>
>>> Nicolas Goaziou writes:
>>>
We can widen the definition of `standalone': a s
25 matches
Mail list logo