[Orgmode] LaTeX export - ignoring "universal" markup for *bold*, /italic/, etc.

2008-09-23 Thread Sullivan, Gregory (US SSA)
I've updated to the latest git, from a much earlier org mode version,
and it seems that the "generic" markup, such as *bold* and /italic/ is
ignored when exporting to LaTeX.

Is this intended?

Also, the "#+BEGIN_EXAMPLE" and "#+END_EXAMPLE" lines are emitted as is,
which messes up LaTeX.  They should either be omitted or the "#"s should
be replaced by LaTeX's comment character, "%".

 

Thanks.

--Greg

--
Gregory T. Sullivan, Ph.D.
BAE Systems Advanced Information Technologies
6 New England Executive Park, Burlington, MA 01803
781-262-4553 (office),  978-430-3461 (cell)
[EMAIL PROTECTED] 


 

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


[Orgmode] how to change the set of agenda org files between custom agenda commands

2008-09-23 Thread Rainer Stengele

I am struggling to switch the set of used agenda org files between different 
custom agenda commands.

I tried something like

(setq org-agenda-custom-commands
  '(
("k" . "Kundenbezogene / Ketegoriebezogene TODOs ...")
("ka" tags-todo "CATEGORY=\"ADMIN\"")
("kP" tags-todo "CATEGORY=\"PRIVAT\""
 ((org-agenda-files (quote ("~/org/PRIVAT/PRIVAT.org")
...


or


(setq org-agenda-custom-commands
  '(
("k" . "Kundenbezogene / Ketegoriebezogene TODOs ...")
("ka" tags-todo "CATEGORY=\"ADMIN\"")
("kP" tags-todo "CATEGORY=\"PRIVAT\""
 ((org-agenda-directory "~/org/PRIVAT")))
...


but am failing miserably. Can someone point me to a solution?


Motivation: in the middle of my worktime I want to be able to look into a 
completely different (private) set of org files.
I know I could write a elisp function and redefine the 
org-agenda-custom-commands but I would like to do this in one place.

Rainer



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


[Orgmode] Re: how to change the set of agenda org files between custom agenda commands

2008-09-23 Thread Dan Griswold
Rainer Stengele <[EMAIL PROTECTED]> writes:

> I am struggling to switch the set of used agenda org files between
> different custom agenda commands.
>
> I tried something like
>
> (setq org-agenda-custom-commands
>   '(
>   ("k" . "Kundenbezogene / Ketegoriebezogene TODOs ...")
> ("ka" tags-todo "CATEGORY=\"ADMIN\"")
> ("kP" tags-todo "CATEGORY=\"PRIVAT\""
>((org-agenda-files (quote ("~/org/PRIVAT/PRIVAT.org")

Playing with customize I came up with this possibility:

(setq org-agenda-custom-commands
  '(
("k" . "Kundenbezogene / Ketegoriebezogene TODOs ...")
("ka" tags-todo "CATEGORY=\"ADMIN\"")
("kP" tags-todo "CATEGORY=\"PRIVAT\""
 ((org-agenda-files
   '("~/org/PRIVAT/PRIVAT.org"))

Will that do it?

Dan

-- 
--
Dan Griswold
Rochester, NY
--



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