[O] Bug in org-diary (Bad sexp)?

2012-04-16 Thread Rafael Villarroel

I think there might be a bug related to the recent changes in the agenda
code, since it has just appeared in the last days. The following are
minimal steps: (Ubuntu 11.10, GNU Emacs 23.3.1 (i686-pc-linux-gnu, GTK+
Version 2.24.5) of 2011-08-14 on rothera, modified by Debian, Org
version just pulled: Org-mode version 7.8.09 (release_7.8.09.230.gec7b))

With the following file, say simpleorg.el


(setq debug-on-error t
  debug-on-signal nil
  debug-on-quit nil)

(add-to-list 'load-path ~/Downloads/org-mode/lisp)

(require 'org-install)


and a ~/diary file containing only:


%%(org-diary)

-

and starting with 'emacs -Q -l simpleorg.el'

Then M-x diary gives:

Bad sexp at line 1 in ~/diary: (org-diary)

For some reason I do not get a backtrace.

Hopefully somebody will be able at least to reproduce!

Best regards,

Rafael



[O] Re: Release 7.5

2011-03-07 Thread Rafael Villarroel
Bastien b...@altern.org writes:

 * Imagemagick post-processing of LaTeX code block results 
   
   It is now possible to use imagemagick to process the output of
   LaTeX code blocks through to a wide variety of output formats.
   This patch is thanks to Andreas Leha, the following description
   is from his email to the mailing list.

But wasn't this recently removed?

http://orgmode.org/w/?p=org-mode.git;a=commit;h=c6f6b3421ee9050a980f8fa0b5615e3f7136e7a8

(is there any chance of getting it back?)

Best regards,
Rafael



[Orgmode] Full manual for beamer export?

2011-01-28 Thread Rafael Villarroel

Hello all,

The org-beamer tutorial at Worg
http://orgmode.org/worg/org-tutorials/org-beamer/tutorial.html refers to
a detailed manual for org-beamer in the first paragraph of section
3. However, the link is dead, and googling I cannot find another
document that could possibly be refering to, except the Beamer section
in the Org manual (12.6.6). So my question is: Is there really a full
org-beamer manual, and where is it?

Best regards,
Rafael

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: Question on org-beamer markup

2011-01-12 Thread Rafael Villarroel
Sébastien Vauban wxhgmqzgw...@spammotel.com writes:

 Erik Iverson wrote:
 According to http://orgmode.org/worg/org-tutorials/org-beamer/tutorial.html

 the following markup should work when exporting to PDF from an org-beamer
 document.

 - the first, very @important@, point!
 - the previous point shows the use of the special markup which
   translates to the Beamer specific /alert/ command for highlighting
   text.

 However, upon export the resulting .tex file does not actually contain this
 translation from @important@ to the alert command, but rather sill has
 @important@ in the output.

 Am I missing some part of the setup process?

 You must update *manually* the var =org-export-latex-emphasis-alist=:

 #+begin_src emacs-lisp
   ;; alist of LaTeX expressions to convert emphasis fontifiers
   (setq org-export-latex-emphasis-alist
 '((* \\textbf{%s} nil)
   (/ \\emph{%s} nil)
   (_ \\underline{%s} nil)
   (+ \\st{%s} nil)
   (= \\url{%s} nil)
   ;; `url' breaks lines in long strings (was `verb')
   (~ \\verb~%s~ t)
   (@ \\alert{%s} nil)))
 #+end_src


This should be enough right?

  (add-to-list 'org-emphasis-alist '(@ org-warning i /i))
  (add-to-list 'org-export-latex-emphasis-alist '(@ \\alert{%s} nil))

However, it does not work for me with 
Org-mode version 7.4 (release_7.4.166.gf7a7.dirty)
(that is, neither the text between @'s is fontified, nor is exported to
an alert, as Erik mentioned.


This, however, does work for me:

  (add-to-list 'org-emphasis-alist '(+ org-warning i /i))
  (add-to-list 'org-export-latex-emphasis-alist '(+ \\alert{%s} nil))

so I'm thinking, maybe there is something else to be done to declare @
as a valid delimiter?

Regards,
Rafael

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] My Gnus does not work with newest org

2010-12-16 Thread Rafael Villarroel

Hello all,

I have defined the following:

  (setq gnus-home-directory ~/Dropbox/gnus)
  (setq gnus-directory ~/Dropbox/gnus/News)
  (setq message-directory ~/Dropbox/gnus/Mail)

and so my init Gnus file is at ~/Dropbox/gnus/.gnus. When loading
org-mode just pulled from git, after M-x gnus I get the message that the
nntp server cannot be loaded, then after C-h v org-init-file, I get that
this variable points to ~/.gnus, which does not exist in my setup. This
is Gnus 5.13. However, I do not have any problems with org 7.3.

I would appreciate any advice on how to make this work! Thanks.

Rafael

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode