From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: Some projects Date: Sun, 25 Oct 2015 21:00:22 +0100 Message-ID: <87fv0ybtwp.fsf@nicolasgoaziou.fr> References: <87wpub9jts.fsf@nicolasgoaziou.fr> <87oafmbyw1.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58882) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZqRRA-0005aj-R0 for emacs-orgmode@gnu.org; Sun, 25 Oct 2015 15:58:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZqRR9-0005l5-Qy for emacs-orgmode@gnu.org; Sun, 25 Oct 2015 15:58:40 -0400 Received: from relay4-d.mail.gandi.net ([2001:4b98:c:538::196]:46978) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZqRR9-0005jw-Jm for emacs-orgmode@gnu.org; Sun, 25 Oct 2015 15:58:39 -0400 In-Reply-To: (Thomas S. Dye's message of "Sun, 25 Oct 2015 09:33:56 -1000") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: "Thomas S. Dye" Cc: Fabrice Popineau , Org Mode List , fabrice.popineau@centralesupelec.fr Thomas S. Dye writes: > Nicolas Goaziou writes: > >> The full proposal was at >> but it didn't get >> much positive feedback. Therefore I suggested a simplified version, with >> a single author. > > In my case, the lack of positive feedback was "too much org, too little > time". > > The original version, which includes the author Fabrice mentioned, seems > superior to me. It potentially eases collaboration and also configuring > alternate versions of the same document. > > I'm not clear about affiliated keyword for source code blocks. Would > tangling honor #+OPTIONS: :student1? The limitation is that you can only replace the code block as a whole, so with #+annotate: bugfix #+name: bikeshed #+begin_src emacs-lisp (paint 'bikeshed blue) #+end_src * Annotations [@:bugfig:me] # You're clearly wrong #+begin_src emacs-lisp (pain 'bikeshed green) #+end_src when using #+OPTIONS: @:me body becomes #+name: bikeshed #+begin_src emacs-lisp (paint 'bikeshed green) #+end_src Regards,