From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?Q?S=C3=A9bastien_Vauban?= Subject: Re: Using orgmode to take "inline notes" for research Date: Thu, 07 Apr 2011 11:20:27 +0200 Message-ID: <80bp0iquxw.fsf@somewhere.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org-mXXj517/zsQ@public.gmane.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org-mXXj517/zsQ@public.gmane.org To: emacs-orgmode-mXXj517/zsQ@public.gmane.org Hi Jeff, Jeff Horn wrote: > No problem. As a note for others searching on this, I'll just go ahead and > re-iterate that if you don't want a particular inline-task to be printed, > just add the :noexport: tag to the headline. Better to say it twice! > Sebastian, or others: One is able to add properties to inline-style > headlines correct? John could add an HTML container class property and us= e a > stylesheet to play with HTML export, including "indentation", but I don't > know if there is any equivalent help from the LaTeX exporter. This is my current config for nice styling: #+begin_src emacs-lisp ;; initial state (TODO keyword) of inline tasks (setq org-inlinetask-default-state "TODO") ;; templates for inline tasks in various exporters (setq org-inlinetask-export-templates '((html "
%s%s%s
" '((unless (eq todo "") (format "%s%s " class todo todo priority)) heading content)) (latex "\\todo[inline]{\\textbf{\\textsf{%s %s}}\\linebreak{} %s}" '((unless (eq todo "") (format "\\textsc{%s%s}" todo priority)) heading content)) (ascii " -- %s%s%s" '((unless (eq todo "") (format "%s%s " todo priority)) heading (unless (eq content "") (format "\n =C2=A6 %s" (mapconcat 'identity (org-split-string content "\n") "\n =C2=A6 "))))))) #+end_src Customize to your own taste (and report back!)... Best regards, Seb --=20 S=C3=A9bastien Vauban