From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Kitchin Subject: Re: Showing Property in headline; generating table from properties; exporting table to CSV Date: Thu, 06 Aug 2015 10:06:04 -0400 Message-ID: References: <87k2t8k64x.fsf@ucl.ac.uk> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41146) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZNLoH-0005dB-0W for emacs-orgmode@gnu.org; Thu, 06 Aug 2015 10:06:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZNLoC-0000iQ-Sb for emacs-orgmode@gnu.org; Thu, 06 Aug 2015 10:06:16 -0400 Received: from mail-qg0-x231.google.com ([2607:f8b0:400d:c04::231]:35348) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZNLoC-0000iL-OQ for emacs-orgmode@gnu.org; Thu, 06 Aug 2015 10:06:12 -0400 Received: by qgj62 with SMTP id 62so28144112qgj.2 for ; Thu, 06 Aug 2015 07:06:12 -0700 (PDT) In-reply-to: <87k2t8k64x.fsf@ucl.ac.uk> 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: Eric S Fraga Cc: Org Mode You could do something with overlays like this: #+BEGIN_SRC emacs-lisp (require 'ov) (org-map-entries (lambda () (when (org-entry-get (point) "GRADE") (setq ov (make-overlay (+ 0 (line-end-position)) (+ 1 (line-end-position)))) (overlay-put ov 'display (format " grade: %s\n" (org-entry-get (point) "GRADE")))))) #+END_SRC #+RESULTS: | nil | grade: 10\n | grade: 20\n | grade: 30\n | nil | grade: 40\n | grade: 50\n | grade: 60\n | #+BEGIN_SRC emacs-lisp (ov-clear) #+END_SRC you need to run this to refresh the grades on the headlines when they change. The TODO state is a good indication of which ones are done, although they do not show the grades. Eric S Fraga writes: > On Thursday, 6 Aug 2015 at 07:24, Matt Price wrote: > > [...] > >> - I currently store my grades as properties of level-2 headlines. However, >> I would really like to be able to see the grades when the headline is >> folded, so I can have a quick visual sense of how many papers I've marked, > > I would like something like this as well. The nearest I have found is > to use column view. -- Professor John Kitchin Doherty Hall A207F Department of Chemical Engineering Carnegie Mellon University Pittsburgh, PA 15213 412-268-7803 @johnkitchin http://kitchingroup.cheme.cmu.edu