Re: [O] anyone syncing orgmode calendar with google cal, and if so how?

2015-10-06 Thread Julien Cubizolles
Xebar Saram writes: > Hi all > > i was wondering if anyone was syncing orgmode calendar with google cal, and > if so how? i tried this > > https://github.com/myuhe/org-gcal.el/issues > > which gave errors all the time and thus stopped being usable > > im looking for a robust

Re: [O] anyone syncing orgmode calendar with google cal, and if so how?

2015-10-06 Thread Julien Cubizolles
Xebar Saram writes: > Hi all > > i was wondering if anyone was syncing orgmode calendar with google cal, and > if so how? i tried this > > https://github.com/myuhe/org-gcal.el/issues > > which gave errors all the time and thus stopped being usable > > im looking for a robust

Re: [O] Different set of packages for LaTeX export

2015-10-06 Thread Julien Cubizolles
Manfred Lotz writes: > Hi all, > I have configured LaTeX export for using xelatex. For this I have > defined a list of packages in org-latex-default-packages-alist. One of > those packages is hyperref with certain options. > > When creating a normal document, e.g. using

Re: [O] anyone syncing orgmode calendar with google cal, and if so how?

2015-10-06 Thread Julien Cubizolles
Xebar Saram writes: > Hi all > > i was wondering if anyone was syncing orgmode calendar with google cal, and > if so how? i tried this > > https://github.com/myuhe/org-gcal.el/issues > > which gave errors all the time and thus stopped being usable > > im looking for a robust

Re: [O] BEAMER_ACT ignored during export in column environment

2015-09-23 Thread Julien Cubizolles
Nicolas Goaziou <m...@nicolasgoaziou.fr> writes: > Julien Cubizolles <j.cubizol...@free.fr> writes: > >> Nothing in my user's guide about overlay specifications for column >> you're right. However the mode ( ) has an effect: >> the environment is ignored

[O] org-drill question

2015-09-10 Thread Julien Cubizolles
I'm trying to use org-drill for learning my new student's names along with their faces. I tried the following structure for the org file: --8<---cut here---start->8--- * Class ** Student :drill:

[O] BEAMER_ACT ignored during export in column environment

2015-09-09 Thread Julien Cubizolles
kage{fixltx2e} \usepackage{graphicx} \usepackage{grffile} \usepackage{longtable} \usepackage{wrapfig} \usepackage{rotating} \usepackage[normalem]{ulem} \usepackage{amsmath} \usepackage{textcomp} \usepackage{amssymb} \usepackage{capt-of} \usepackage{hyperref} \usetheme{default} \author{Julien Cubizolles

Re: [O] BEAMER_ACT ignored during export in column environment

2015-09-09 Thread Julien Cubizolles
Nicolas Goaziou <m...@nicolasgoaziou.fr> writes: > Hello, > > Julien Cubizolles <j.cubizol...@free.fr> writes: > >> The "article" property of the "Column3" heading isn't exported to the >> TeX file whereas the one of "Column 2 in a he

Re: [O] org-agenda-files for calfw

2015-08-28 Thread Julien Cubizolles
Julien Cubizolles j.cubizol...@free.fr writes: Nick Dokos ndo...@gmail.com writes: Bind org-agenda-files in a let before calling cfw:open-org-calendar: (let ((org-agenda-files '(...))) (cfw:open-org-calendar)) That's exactly what I needed, thanks. I just noticed something very weird

Re: [O] org-agenda-files for calfw

2015-08-28 Thread Julien Cubizolles
Nick Dokos ndo...@gmail.com writes: Bind org-agenda-files in a let before calling cfw:open-org-calendar: (let ((org-agenda-files '(...))) (cfw:open-org-calendar)) That's exactly what I needed, thanks. Julien.

Re: [O] org-agenda-files for calfw

2015-08-28 Thread Julien Cubizolles
Nick Dokos ndo...@gmail.com writes: I admit I didn't read your original question very carefully, so I might have overlooked something, but the behavior above is not weird: the let binds org-agenda-files and then calls cfw:ooc - when that returns the let binding is gone as well. It seems that

Re: [O] org-agenda-files for calfw

2015-08-27 Thread Julien Cubizolles
Eric S Fraga e.fr...@ucl.ac.uk writes: On Thursday, 27 Aug 2015 at 14:06, Julien Cubizolles wrote: I'd like to choose only a few of my org-agenda-files to be displayed by cfw:open-org-calendar. I couldn't find a variable for that. Should I use some temporary variable to store the content

Re: [O] org-agenda-files for calfw

2015-08-27 Thread Julien Cubizolles
Eric S Fraga e.fr...@ucl.ac.uk writes: On Thursday, 27 Aug 2015 at 14:06, Julien Cubizolles wrote: I'd like to choose only a few of my org-agenda-files to be displayed by cfw:open-org-calendar. I couldn't find a variable for that. Should I use some temporary variable to store the content

[O] Getting rid of the #+begin_example #+end_example in src blocks evaluation

2015-08-27 Thread Julien Cubizolles
I'm trying to create a list of entries with timeshifts. I found this very nice example: #+begin_src emacs-lisp (with-temp-buffer (insert *** Cours 2014-09-07 lun 8:45-12:00) (goto-char (point-min)) (org-clone-subtree-with-time-shift 30 +1w) ;; ignore this (let ((str (buffer-string)))

[O] Combining org-clone-subtree-with-time-shift and the skip weeks of org-class

2015-08-27 Thread Julien Cubizolles
Instead of cloning N times like org-clone-subtree-with-time-shift does, could one generate the right amount of headings the same way org-class does. Instead of getting the same entry repeated like org-class does, you could later change the title of each entry individually:

Re: [O] using holiday dates from an ICAL calendar

2015-08-27 Thread Julien Cubizolles
Matt Lundin m...@imapmail.org writes: (my-calculate-skip-weeks '(10 17 2015) '(11 1 2015) 3) = (43 44) Based on this information, the org-class sexp could be written like this: %%(org-class 2015 9 15 2015 12 20 3 43 44) My class I want to use the result of my-calculate-skip-weeks several

[O] org-agenda-files for calfw

2015-08-27 Thread Julien Cubizolles
I'd like to choose only a few of my org-agenda-files to be displayed by cfw:open-org-calendar. I couldn't find a variable for that. Should I use some temporary variable to store the content of the real org-agenda-files while launching calfw or is there an easier way ? Julien.

Re: [O] Getting rid of the #+begin_example #+end_example in src blocks evaluation

2015-08-27 Thread Julien Cubizolles
John Kitchin jkitc...@andrew.cmu.edu writes: Put :results raw in the src header? Thank you!

Re: [O] org-bbdb-birthday reminder

2015-08-15 Thread Julien Cubizolles
Matt Lundin m...@imapmail.org writes: Nick Dokos ndo...@gmail.com writes: Here's a quick implementation of the method I described earlier in the thread: This works great. Thanks! Perhaps we could integrate something like this into org-bbdb.el... I second that. It's exactly what I was

Re: [O] org-bbdb-birthday reminder

2015-08-13 Thread Julien Cubizolles
Matt Lundin m...@imapmail.org writes: This is not possible at the moment with bbdb-anniversaries. I thought someone would have felt the need to have this list of upcoming birthdays. I'm guess not so many of you always end up rushing to buy presents in the last days the way I dO. For

Re: [O] Exporting to beamerposter

2015-08-05 Thread Julien Cubizolles
Titus von der Malsburg malsb...@posteo.de writes: I’d like to use org-mode to create an academic poster like this one However, this doesn’t work for two reasons: 1.) Org mode ignores that I want blocks and instead uses frame environments. I'm not sure if that's possible but you could try

[O] org-bbdb-birthday reminder

2015-07-29 Thread Julien Cubizolles
I'm using org-bbdb-anniversaries to use the bbdb-anniversaries. At the moment, it only displays the birthdays of the day. How can I generate a reminder for a few days before the actual birthday ? Julien.

[O] using holiday dates from an ICAL calendar

2015-07-29 Thread Julien Cubizolles
I need to define weekly appointments, except during the school holidays. I know org-class provides a way to exclude some weeks from recurring events but I was wondering if some clever use of sexp would make it possible to use the weeks/days of holiday from a public ical calendar (like

[O] frame options in minted environments

2015-06-24 Thread Julien Cubizolles
Consider the following org-file: --8---cut here---start-8--- #+STARTUP: BEAMER #+LATEX_HEADER: \usepackage{minted} * First frame:B_fullframe: :PROPERTIES: :BEAMER_env: fullframe :END: #+begin_src latex :exports code

[O] position option of tabular in latex export

2015-03-29 Thread Julien Cubizolles
Is it possible to specify a pos option to the tabular environment used when exporting a table in latex. Some problems I have with tabular in block environments (when exporting to beamer) would be fixed with: --8---cut here---start-8--- \begin{tabular}[t]{ll}

Re: [O] Best way to include references/license

2014-11-09 Thread Julien Cubizolles
Nicolas Goaziou m...@nicolasgoaziou.fr writes: It should be \ref{photo1}/\label{photo1} in this case. I pushed a fix for that in maint. Thanks for the fix. Julien.

Re: [O] Best way to include references/license

2014-11-06 Thread Julien Cubizolles
Nicolas Goaziou m...@nicolasgoaziou.fr writes: I first thought of using footnotes but according to Org documentation they won't be exported if they are collected in a special heading. This doesn't sound right. What do you mean? Consider the following example, org-footnote-section being

Re: [O] :components part in org-publish-project-alist fails

2014-11-05 Thread Julien Cubizolles
Nicolas Goaziou m...@nicolasgoaziou.fr writes: This should be fixed now. Thank you for reporting it. It is, thanks a lot for fixing it so fast. Julien.

[O] Best way to include references/license

2014-11-05 Thread Julien Cubizolles
I want to include the copyright terms for images I include in org documents and I'm wondering what would be a good way to go about it. I would like to have a heading gathering all these references in a list. I first thought of using footnotes but according to Org documentation they won't be

Re: [O] Beamer export of columns should use \columnwidth

2014-11-04 Thread Julien Cubizolles
Nicolas Goaziou m...@nicolasgoaziou.fr writes: Hello, Julien Cubizolles j.cubizol...@free.fr writes: The latest org-plus-contrib (20141027) from org/melpa seems to have reverted to using \textwidth instead of \columnwidth. Why is that ? The master branch from git is ok though (meaning

Re: [O] :components part in org-publish-project-alist fails

2014-11-04 Thread Julien Cubizolles
Julien Cubizolles j.cubizol...@free.fr writes: Nicolas Goaziou m...@nicolasgoaziou.fr writes: I cannot reproduce it. Publishing global project succeeds. Did you publish asynchronously ? I can publish global and latex synchronously, latex asynchronously (see the following *Org Export

Re: [O] Beamer export of columns should use \columnwidth

2014-11-02 Thread Julien Cubizolles
Nicolas Goaziou m...@nicolasgoaziou.fr writes: Hello, Julien Cubizolles j.cubizol...@free.fr writes: I don't think there would be any inconvenients to changing \textwidth to \columnwidth for regular beamer files (it's fine with my beamer files so far). I agree. Done in master. Thank you

[O] :components part in org-publish-project-alist fails

2014-11-02 Thread Julien Cubizolles
In git master, consider the following, --8---cut here---start-8--- #+begin_src emacs-lisp :tangle yes :exports none (setq org-publish-project-alist `((latex :base-directory ./ :publishing-directory ./

Re: [O] :components part in org-publish-project-alist fails

2014-11-02 Thread Julien Cubizolles
Nicolas Goaziou m...@nicolasgoaziou.fr writes: I cannot reproduce it. Publishing global project succeeds. Did you publish asynchronously ? I can publish global and latex synchronously, latex asynchronously (see the following *Org Export Process* buffer) : only global fails when run

Re: [O] (void-variable ignore) in

2014-10-09 Thread Julien Cubizolles
Nicolas Goaziou m...@nicolasgoaziou.fr writes: Does it happen with a specific export back-end or all of them? I see it with all for of org-(beamer/latex)-export-to-(latex/pdf), but only if publish. Could you provide an ECM? The following needs to be saved in a file named test.org, then run

[O] (void-variable ignore) in

2014-10-08 Thread Julien Cubizolles
I get this error when exporting an org file in async mode. The export itself goes fine (the correct file is created) but something seems to go wrong at the end. Sorry for the long lines... Julien. --8---cut here---start-8--- Debugger entered--Lisp error:

[O] archive subtree with complete structure

2014-10-06 Thread Julien Cubizolles
: Julien Cubizolles j.cubizol...@free.fr Gcc: nnfolder+archive:sent-news-2014-10, informatique Date: Mon, 06 Oct 2014 07:31:05 +0200 Can org-archive-subtree be made to archive the whole parent structure along with the subtree selected ? I'm using an the same org file every year and I'd like to archive

[O] async export not working for me

2014-09-17 Thread Julien Cubizolles
I'm running org-mode 8.3beta from org-plus-contrib in melpa. I must have missed something obvious cause I could never get async export working. Here is what I do: --8---cut here---start-8--- emacs -Q (require 'package) (package-initialize) ;; since org is

Re: [O] async export not working for me

2014-09-17 Thread Julien Cubizolles
Rasmus ras...@gmx.us writes: Hi Julien, Probably you are somehow not loading settings correctly. In your normal init file you need to set `org-export-async-init-file'. I completely missed this part... I feel stupid now. Maybe org should complain when this variable is not set and someone

Re: [O] async export not working for me

2014-09-17 Thread Julien Cubizolles
Julien Cubizolles j.cubizol...@free.fr writes: Rasmus ras...@gmx.us writes: Hi Julien, Probably you are somehow not loading settings correctly. In your normal init file you need to set `org-export-async-init-file'. I could get it to work at last, thank you a lot. I noticed something

[O] org-edit-special doesn't work within #+BEGIN_LaTeX blocks anymore

2014-09-07 Thread Julien Cubizolles
It used to work, but the latest from git gives --8---cut here---start-8--- user-error: No special environment to edit here --8---cut here---end---8--- It was very convenient to use auctex from within an org file using a lot of

Re: [O] Using Buffer name in :include export property

2014-08-29 Thread Julien Cubizolles
Nick Dokos ndo...@gmail.com writes: Julien Cubizolles j.cubizol...@free.fr writes: I'm using the following elisp source block in my org files to choose the publication options. (setq org-publish-project-alist '((TeX :base-directory ./ :publishing-directory

Re: [O] Beamer export of columns should use \columnwidth

2014-08-29 Thread Julien Cubizolles
Nicolas Goaziou m...@nicolasgoaziou.fr writes: Hello, Julien Cubizolles j.cubizol...@free.fr writes: I don't think there would be any inconvenients to changing \textwidth to \columnwidth for regular beamer files (it's fine with my beamer files so far). I agree. Done in master. Thank you

Re: [O] Using Buffer name in :include export property

2014-08-29 Thread Julien Cubizolles
Julien Cubizolles j.cubizol...@free.fr writes: Thanks for the pointer, it works: (defun jc-org-publish-project-options () (setq org-publish-project-alist `((TeX :base-directory ./ :publishing-directory ./ :publishing-function org-beamer-publish

[O] Beamer export of columns should use \columnwidth

2014-08-28 Thread Julien Cubizolles
For the moment, the :BEAMER_COL: property of a heading is exported as a \textwidth argument to the column environment of beamer like: --8---cut here---start-8--- \begin{columns} \begin{column}{0.5\textwidth} \end{column} \end{columns} --8---cut

[O] Using Buffer name in :include export property

2014-08-28 Thread Julien Cubizolles
I'm using the following elisp source block in my org files to choose the publication options. --8---cut here---start-8--- (setq org-publish-project-alist '((TeX :base-directory ./ :publishing-directory ./

Re: [O] Custom environment for LaTeX export

2014-08-25 Thread Julien Cubizolles
Marcin Borkowski mb...@wmi.amu.edu.pl writes: Dnia 2014-08-14, o godz. 11:15:54 Sebastien Vauban sva-n...@mygooglest.com napisał(a): Julien Cubizolles wrote: Sebastien Vauban writes: Throwing an idea here: make the `consequence' environment be a no-op in Beamer? How would I do

Re: [O] Custom environment for LaTeX export

2014-08-25 Thread Julien Cubizolles
Sebastien Vauban sva-n...@mygooglest.com writes: Julien Cubizolles wrote: I need to export the same org file to both LaTeX and beamer, and I'd like the headings that are exported to the block environment in beamer to be exported to another environment in LaTeX (named consequence). The LaTeX

Re: [O] Custom environment for LaTeX export

2014-08-25 Thread Julien Cubizolles
Marcin Borkowski mb...@wmi.amu.edu.pl writes: Sorry, I misunderstood. How about putting this in the preamble (untested)? \makeatletter \@ifclassloaded{beamer}{ \renewenvironment{consequence}{}{} }{} \makeatother Actually, I'm using a custom beamer class, so --8---cut

Re: [O] Custom environment for LaTeX export

2014-08-10 Thread Julien Cubizolles
Sebastien Vauban sva-news-D0wtAvR13HarG/idocf...@public.gmane.org writes: Throwing an idea here: make the `consequence' environment be a no-op in Beamer? How would I do that, is there a variable excluding some environments ? Julien.

[O] Printing a google agenda-like view

2014-08-10 Thread Julien Cubizolles
I'd like to print a monthly view of the courses I will be giving next year. Up until now I used a google agenda for that, that can be printed nicely, one page per month. But I'd like to use org-mode for that too. calfw produces a nice monthly view but printing it will require a great deal of

Re: [O] Removing the title in LaTeX export

2014-07-14 Thread Julien Cubizolles
t...@tsdye.com (Thomas S. Dye) writes: Aloha Julien, Julien Cubizolles j.cubizol...@free.fr writes: Is there a way to remove the title from during a LaTeX export? the :with-toc nil keyword in org-publish-project-alist removes the table of contents but I with-title nil doesn't seem

Re: [O] remove sectionning structure in latex export

2014-07-14 Thread Julien Cubizolles
Nick Dokos ndo...@gmail.com writes: Julien Cubizolles j.cubizol...@free.fr writes: I've tried playing with :headline-levels so that all headings get translated as section, subsection, subsubsection and redefining the \section,\subsection,\subsubsection commands in the LaTeX class to \relax

Re: [O] Removing the title in LaTeX export

2014-07-14 Thread Julien Cubizolles
Rasmus ras...@gmx.us writes: Julien Cubizolles j.cubizol...@free.fr writes: Is there a way to remove the title from during a LaTeX export? the :with-toc nil keyword in org-publish-project-alist removes the table of contents but I with-title nil doesn't seem to be recognized. Does this give

[O] remove directory structure in latex export

2014-07-12 Thread Julien Cubizolles
When exporting an Org file to LaTeX, I'd like to be able to remove all headings with levels inferior to the ones explicitly selected with a select-tag. In the following example, I'd like the LaTeX file to include only the Puissance des force de Laplace sur un moment magnétique heading, not the Cas

[O] Removing the title in LaTeX export

2014-07-12 Thread Julien Cubizolles
Is there a way to remove the title from during a LaTeX export? the :with-toc nil keyword in org-publish-project-alist removes the table of contents but I with-title nil doesn't seem to be recognized. Julien.

[O] Custom environment for LaTeX export

2014-07-12 Thread Julien Cubizolles
I need to export the same org file to both LaTeX and beamer, and I'd like the headings that are exported to the block environment in beamer to be exported to another environment in LaTeX (named consequence). The LaTeX export engine allows one to specify any environment but it doesn't suit my

Re: [O] Calc in src blocks: No org-babel-execute function for calc!

2014-07-07 Thread Julien Cubizolles
Thorsten Jolitz tjol...@gmail.com writes: | Value: ((emacs-lisp . t) | (dot . t) | (calc . t) | (ditaa . t) | (R . t) | (C . t) | (gnuplot . t) | (shell . t) | (ledger . t) | (org . t) | (picolisp . t) | (clojure . t) | (lilypond . t) | (plantuml . t) | (latex . t))

[O] Calc in src blocks: No org-babel-execute function for calc!

2014-07-04 Thread Julien Cubizolles
How do I enable calc as a valid source block? The following code #+BEGIN_SRC calc 2 + 3 #+END_SRC gives the error in the title. Julien.

Re: [O] noninteractive use of org-export

2014-04-17 Thread Julien Cubizolles
Bastien b...@gnu.org writes: Hi Julien, Julien Cubizolles j.cubizol...@free.fr writes: How can I use org-beamer-export-to-pdf for example for an org file that the current buffer isn't visiting? My setup is the following : I have two org files cours-beamer.org and cours-notes.org each

Re: [O] noninteractive use of org-export

2014-04-17 Thread Julien Cubizolles
Bastien b...@gnu.org writes: Hi Julien, Julien Cubizolles j.cubizol...@free.fr writes: Something must be wrong with the :include syntax since every org file in the base-directory is exported when I run C-c C-e P x. Add :exclude .* on top of your include. Also, is it possible to specify

Re: [O] noninteractive use of org-export

2014-04-17 Thread Julien Cubizolles
Bastien b...@gnu.org writes: Julien Cubizolles j.cubizol...@free.fr writes: Can this be achieved, maybe with :completion-function? Maybe, but I never tried. Let us know if you can get it work! It works! I'm the first surprised here. I defined the following functions to manipulate

[O] noninteractive use of org-export

2014-04-16 Thread Julien Cubizolles
How can I use org-beamer-export-to-pdf for example for an org file that the current buffer isn't visiting? My setup is the following : I have two org files cours-beamer.org and cours-notes.org each containing different +LATEX_CLASS and +LATEX_CLASS_OPTIONS choices and the same +#INCLUDE cours.org

Re: [O] no fontification of #+BEGIN_LaTeX blocks

2013-09-17 Thread Julien Cubizolles
Sebastien Vauban sva-n...@mygooglest.com writes: I perfectly understand your need, now: to have *syntax highlighting* of everything in a #+BEGIN/END_LaTeX block (the same would be true for HTML or I guess I mixed the concepts of fontification/highlighting up :-) Julien.

Re: [O] no fontification of #+BEGIN_LaTeX blocks

2013-09-16 Thread Julien Cubizolles
Sebastien Vauban sva-n...@mygooglest.com writes: Julien Cubizolles wrote: org-src-fontify-natively doesn't fontify quoted LaTeX code like #+BEGIN_LaTeX #+END_LaTeX the same as it does for LaTeX src blocks like #+BEGIN_SRC latex #+END_SRC Why is that, and is there a way to get

Re: [O] customizing preamble for org-preview-latex-fragment

2013-09-16 Thread Julien Cubizolles
Rasmus ras...@gmx.us writes: Nick Dokos ndo...@gmail.com writes: Julien Cubizolles j.cubizol...@free.fr writes: How can I change the default packages used in the latex file generated by org-preview-latex-fragment ? They are produced by the function org-create-formula--latex-header

Re: [O] no fontification of #+BEGIN_LaTeX blocks

2013-09-16 Thread Julien Cubizolles
Bastien b...@gnu.org writes: Hi Julien, Nope, fontification is just for BEGIN_SRC blocks. There is no real why I guess, except because of this implicit convention: only SRC blocks get fontified. Other blocks are part of another family with a more limited set of features. I was under the

Re: [O] no fontification of #+BEGIN_LaTeX blocks

2013-09-16 Thread Julien Cubizolles
Sebastien Vauban sva-n...@mygooglest.com writes: No, you could just have the same color as the default (unfontified) from source blocks. I mean: fontified source blocks add extra text properties, such as comment, string, type, etc. You could have the same default one, with the same

[O] customizing preamble for org-preview-latex-fragment

2013-09-15 Thread Julien Cubizolles
How can I change the default packages used in the latex file generated by org-preview-latex-fragment ? Julien.

[O] no fontification of #+BEGIN_LaTeX blocks

2013-09-14 Thread Julien Cubizolles
org-src-fontify-natively doesn't fontify quoted LaTeX code like #+BEGIN_LaTeX #+END_LaTeX the same as it does for LaTeX src blocks like #+BEGIN_SRC latex #+END_SRC Why is that, and is there a way to get fontification for both ? Julien.

Re: [O] Several questions about beamer export

2013-09-03 Thread Julien Cubizolles
Julien Cubizolles j.cubizol...@free.fr writes: It's weird, both variables (org-link-abbrev-alist and org-link-abbrev-alist-local) are nil even though there is a #+LINK: line in the file. Just a late closing message: I tried again today and everything is working as it should. Julien.

Re: [O] from Android to org's calendar in a painless way?

2013-09-01 Thread Julien Cubizolles
Charles Philip Chan cpc...@bell.net writes: Yes, you can, it just won't show up until you sync, pull, refile and sync. Do you mean that you need to get back to your emacs computer in order to have an entry captured on the phone actually appear on the phone ? I noticed that if you untick and

[O] Family organizer with Org-Mode: HTML grid agenda ?

2013-08-14 Thread Julien Cubizolles
I'm thinking about using Org-Mode to manage the day to day activities and tasks in my family, and publish it on a web server so that everyone can consult it. I haven't played a lot with html export/publish but my main concern is: can org-mode export an agenda view in a grid mode, like calfw or

Re: [O] Problems with LaTeX source block

2013-07-16 Thread Julien Cubizolles
Hi Andreas, I forgot to send the following remarks in my previous post. I encounter a problem with pgfplots. The following works, and produces a png with a white background #+NAME: python-tikz #+header: :results raw :file py2tikz_sin.png #+header: :imagemagick yes :fit yes :headers

Re: [O] Problems with LaTeX source block

2013-07-16 Thread Julien Cubizolles
The following message is a courtesy copy of an article that has been posted to gmane.emacs.orgmode as well. Hi Andreas Andreas Leha andreas.l...@med.uni-goettingen.de writes: The problem is in your external data file, I guess. What happens, is that org creates a temporary tex file in a

Re: [O] Problems with LaTeX source block

2013-07-16 Thread Julien Cubizolles
Hi Eric, Eric S Fraga e.fr...@ucl.ac.uk writes: Interesting. I have this behaviour as well in terms of background. I use a dark theme on all of my windows, be they emacs or xterms. The png generated by imagemagick sets the background to transparent which means I cannot see the images

Re: [O] Embedded Tikz Picture

2013-07-15 Thread Julien Cubizolles
Hi Myles, and thanks for your input. I've also been playing with standalone, and successfully got the pictures when exporting to latex and beamer. Myles English mylesengl...@gmail.com writes: I had been using tikz like this, (note: this may not work and my intention is not to preclude your

[O] Problems with LaTeX source block

2013-07-15 Thread Julien Cubizolles
I'm struggling with LaTeX source blocks and am not sure anymore if one can use the :results file header. I have a csv file to be processed by tikz to get a png picture displayed in my org buffer. Here is what I tried #+NAME: python-tikz #+header: :results file :file py2tikz_sin.png #+header:

Re: [O] Export to LaTeX and Beamer

2013-07-15 Thread Julien Cubizolles
Suvayu Ali fatkasuvayu+li...@gmail.com writes: Sounds a bit clumsy; are you aware of subtree export[1]? However I'm not sure if you can export the same headline with different backends with subtree export. Subtree export won't do it: it's the whole org-file I need to export. It's for a

Re: [O] Several questions about beamer export

2013-07-15 Thread Julien Cubizolles
Darlan Cavalcante Moreira darc...@gmail.com writes: I don't think you can change the behavior of a link type to take into account somethink similar to graphicspath, but you can easily define custom link types: For instance, put this in your org-file #+LINK: fig file:my_figure_path/%s Then

Re: [O] Export to LaTeX and Beamer

2013-07-15 Thread Julien Cubizolles
Suvayu Ali fatkasuvayu+li...@gmail.com writes: There is none, but you can use filters to achieve this. Take a look here: https://github.com/suvayu/.emacs.d/blob/master/org-mode-config.el#L258 Do note, as the comment says, I have not tested it extensively. I tried it (evaled the following)

Re: [O] Problems with LaTeX source block

2013-07-15 Thread Julien Cubizolles
Hi Andreas Andreas Leha andreas.l...@med.uni-goettingen.de writes: try that instead #+NAME: python-tikz #+header: :results raw :file py2tikz_sin.png #+header: :imagemagick yes :fit yes :headers '(\\usepackage{tikz,pgfplots}) #+BEGIN_SRC latex :exports results \begin{tikzpicture}

Re: [O] Several questions about beamer export

2013-07-15 Thread Julien Cubizolles
Nick Dokos ndo...@gmail.com writes: It works fine here. The relevant function is org-link-expand-abbrev and it depends on the variables org-link-abbrev-alist and org-link-abbrev-alist-local. The latter gets initialized from the former and any #+LINK lines in the buffer are added on to it.

Re: [O] Several questions about beamer export

2013-07-12 Thread Julien Cubizolles
Nick Dokos ndo...@gmail.com writes: Julien Cubizolles j.cubizol...@free.fr writes: * in LaTeX you can use \graphicspath to define the directories in which to look for picture files. Does org mode offer the same possibility ? No special mechanism afaik, but there is a general one. Did

[O] Embedded Tikz Picture

2013-07-11 Thread Julien Cubizolles
What would be the best way to use some tikz code in an org-file ? I've succeeded so far by putting it in a #+BEGIN_LaTeX #+END_LaTeX structure but from what I understand, this code will only be evaluated when I export to LaTeX. I also tried embedding the corresponding LaTeX code, but I only got

[O] Several questions about beamer export

2013-07-11 Thread Julien Cubizolles
I'm trying to switch all my LaTeX needs to orgmode but I'm still confused by several little things I could not understand in the manual. I'm not sure what the policy is on the mailing-list, let me know if it's best to split this message into several ones. * What's the difference between

[O] Export to LaTeX and Beamer

2013-07-11 Thread Julien Cubizolles
I need to export different parts of an org file with different LaTeX classes, one of which is a beamer style. I've come up with the following solution: manually switching the LATEX_CLASS for each export, and using SELECT_TAGS to choose which headings to export. For the following file * First

Re: [O] Several questions about beamer export

2013-07-11 Thread Julien Cubizolles
Nick Dokos ndo...@gmail.com writes: Julien Cubizolles j.cubizol...@free.fr writes: ... * All the headers I add end up on the same line when I define them like in the following (even with an empty line). #+LATEX_HEADER_EXTRA: \institute{My Institure} #+LATEX_HEADER:\usepackage

Re: [O] Embedded Tikz Picture

2013-07-11 Thread Julien Cubizolles
Eric Schulte schulte.e...@gmail.com writes: Julien Cubizolles j.cubizol...@free.fr writes: Finally it seems Babel could be the way to go but I'm not sure what it offers for LaTeX source with respect to Embedded LaTeX in this case. I actually just added this example to worg today, it should

[O] Loading several latex classes for ox-latex

2013-07-10 Thread Julien Cubizolles
How can I run several add-to-list after a given package is loaded ? I could of course do multiples: (eval-after-load 'package_name '(add-to-list 'element 'list)) but I'm sure there's a more elegant way. I tried the following: --8---cut here---start-8---

Re: [O] Loading several latex classes for ox-latex

2013-07-10 Thread Julien Cubizolles
Nicolas Richard theonewiththeevill...@yahoo.fr writes: that's because your (progn) is unquoted and thus evaluated at the same time as eval-after-load, i.e. it returns its last value (which is the second add-to-list form) and that is what is being added to the eval-after-load list. What you

Re: [O] Org file to generate both beamer and standard LaTeX file

2013-07-04 Thread Julien Cubizolles
Suvayu Ali fatkasuvayu+li...@gmail.com writes: All of what you list above is supported. I should know better, this is Emacs + Orgode :-), and now I *have* to try it even though I'm not sure I need it... You just need to learn the syntax. I'm starting to get my bearings, I'll read and

[O] Org file to generate both beamer and standard LaTeX file

2013-07-03 Thread Julien Cubizolles
I've been an newbie org user for a while now: in particular, I've never played with export much and all my LaTeX work as been done with AucTeX in a .tex file. I'm considering switching to an Org-based setup if I could get the following, mainly for courses I'm preparing for which I would need

[O] Babel blocks not indented

2013-05-07 Thread Julien Cubizolles
I'm new to babel and I'm experiencing a strange problem. A src_block created with s TAB is not indented as the heading it's in. Here is an example: --8---cut here---start-8--- Export fichier texte #+BEGIN_SRC python import numpy numpy.savetxt(foo.csv,

Re: [O] Babel blocks not indented

2013-05-07 Thread Julien Cubizolles
Eric Schulte schulte.e...@gmail.com writes: Julien Cubizolles j.cubizol...@free.fr writes: I'm new to babel and I'm experiencing a strange problem. A src_block created with s TAB is not indented as the heading it's in. Here is an example: Try TAB s TAB instead. That's what I was doing

Re: [O] Changing the maintainer

2013-04-23 Thread Julien Cubizolles
Thanks a lot to Bastien. I'm far from being able to fully appreciate the work done and the hours it must have needed but from my end, Org-mode and its development process is a very well-oiled machine, in no small part thanks to its maintainer I would guess. Welcome back Carsten. Julien.

Re: [O] OT: Android, external HW-keyboard and Emacs

2013-04-23 Thread Julien Cubizolles
Eric S Fraga e.fr...@ucl.ac.uk writes: I tried out the sync to calendar option in MobileOrg. It synced tasks (i.e. scheduled and deadline entries) but not entries with just active time stamps which are what I use for appointments. It's working for me: I'm using the latest MobileOrg from the

Re: [O] org-caldav will cease to work with Google Calendar

2013-03-15 Thread Julien Cubizolles
Charles Philip Chan cpc...@bell.net writes: Julien Cubizolles j.cubizol...@free.fr writes: Hi Julian: Mobileorg can sync (bi-directionally) with the native calendar system of your Android device which in turn sync with Google. Thanks for this info but according to the documentation

Re: [O] org-caldav will cease to work with Google Calendar

2013-03-15 Thread Julien Cubizolles
Sebastien Vauban wxhgmqzgw...@spammotel.com writes: Hi Julien, Julien Cubizolles wrote: Thanks for this info but according to the documentation MobileOrg can synchronize your TODO items that have a DEADLINE or SCHEDULE. It seems not very practical in the case of an appointment where you

Re: [O] org-caldav will cease to work with Google Calendar

2013-03-15 Thread Julien Cubizolles
Charles Philip Chan cpc...@bell.net writes: Julien Cubizolles j.cubizol...@free.fr writes: Hi Julien: Thanks for this info but according to the documentation MobileOrg can synchronize your TODO items that have a DEADLINE or SCHEDULE. This is for TODO's. Mobileorg can actually sync

<    1   2   3   >