From mboxrd@z Thu Jan 1 00:00:00 1970 From: cberry@tajo.ucsd.edu Subject: Re: how do scientists use org mode? Date: Mon, 30 Jan 2012 11:51:15 -0800 Message-ID: <87k449j7f0.fsf@tajo.ucsd.edu> References: <4F26D54C.8000608@binghamton.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([140.186.70.92]:54136) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RrxGE-0000ao-B4 for emacs-orgmode@gnu.org; Mon, 30 Jan 2012 14:51:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RrxGC-00065J-U4 for emacs-orgmode@gnu.org; Mon, 30 Jan 2012 14:51:30 -0500 Received: from plane.gmane.org ([80.91.229.3]:52164) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RrxGC-00064T-MI for emacs-orgmode@gnu.org; Mon, 30 Jan 2012 14:51:28 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1RrxGA-0004De-EB for emacs-orgmode@gnu.org; Mon, 30 Jan 2012 20:51:26 +0100 Received: from tajo.ucsd.edu ([137.110.122.165]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 30 Jan 2012 20:51:26 +0100 Received: from cberry by tajo.ucsd.edu with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 30 Jan 2012 20:51:26 +0100 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: emacs-orgmode@gnu.org "Christopher W. Ryan" writes: > I'm fairly experienced with emacs, ESS, Sweave, and R, but I've only > started to dabble in Org mode in the past couple of weeks. Just as > Christoph is, I'm trying to decide whether/how Org-mode might be useful > in organizing and carrying out research projects, presentations, etc. So > this thread has been very useful and timely. > > I'm trying to envision what a small research project, managed via a > single Org file, might look like. There would be notes from meetings, > thoughts from brainstorming sessions, scheduled appointments, data, R > code, R output, and manuscript/presentation prose. Some of this might be > destined for a manuscript, some for a beamer presentation, and some only > for "internal consumption." How are all these pieces differentiated in > the Org file, so that Org knows what to put in the > presentation/manuscript, and what not to? Could anyone share or point to > a short, perhaps fictional, example? Have you looked at http://orgmode.org/worg/org-contrib/babel/uses.html ?? There are almost too many possibilities --- it is a bit overwhelming. Here are three things I find useful: 1) The ability to export a subtree allows you to have many documents within the *.org file. Setting EXPORT_* properties for the subtree gives you a lot of flexibility. And it is easy to do with TAB completion to prompt you to fill in the needed pieces. 2) Internal hyperlinks are really useful in staying on course in a big, complicated document. 3) Noweb syntax allows you to mix and match different parts of the document. Below is a minimal example. The latex chunks can be used anywhere I need them. Navigating to '* mini report' and typing 'C-c @ C-c C-e l' produces mini.tex. ,---- | * COMMENT latex chunks | | #+name: chunk1 | #+begin_src latex | \begin{displaymath} | y = r\sin\theta | \end{displaymath} | #+end_src | | #+name: chunk2 | #+begin_src latex | \begin{displaymath} | x = s\cos\theta | \end{displaymath} | #+end_src | | | * mini report | :PROPERTIES: | :EXPORT_FILE_NAME: mini.tex | :EXPORT_TITLE: Minimal Report | :EXPORT_AUTHOR: Mister CCB | :END: | | #+begin_src latex :noweb yes | <> | <> | #+end_src `---- HTH, Chuck > > Thanks very much. > > --Chris [snip] -- Charles C. Berry Dept of Family/Preventive Medicine cberry at ucsd edu UC San Diego http://famprevmed.ucsd.edu/faculty/cberry/ La Jolla, San Diego 92093-0901