From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Christopher W. Ryan" Subject: can I force all-caps in part of a headline in a capture template? Date: Sun, 06 May 2012 20:20:44 -0400 Message-ID: <4FA7155C.5000306@binghamton.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:53855) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SRBh1-0001yU-NI for emacs-orgmode@gnu.org; Sun, 06 May 2012 20:20:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SRBgz-0001Qn-PO for emacs-orgmode@gnu.org; Sun, 06 May 2012 20:20:47 -0400 Received: from hrndva-omtalb.mail.rr.com ([71.74.56.122]:30113) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SRBgz-0001Pl-Il for emacs-orgmode@gnu.org; Sun, 06 May 2012 20:20:45 -0400 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 I work for a public health department. Twice in the past 5 years we have had to open evacuation shelters during a flood, for anywhere from 80 to 120 medically-frail evacuees. Our documentation system (paper) has improved, but it is still not ideal. I am experimenting with whether org-mode could meet our needs. It's basis in plain text may strike the proper balance between structure and flexibility. Part of my .emacs includes the following: (setq org-capture-templates '(("a" "Admit" entry (file "~/Shelter/ShelterAdmissions.org") "* admit %^{LASTNAME}, %^{firstname} %U :PROPERTIES: %^{IDnumber}p %^{Birthdate}p %^{Age}p %^{Sex}p %^{Address1}p %^{Address2}p %^{City}p %^{State}p %^{Zipcode}p %^{Doctor1}p %^{Doctor2}p %^{Pharmacy1}p %^{Pharmacy2}p" :empty-lines: 1) ) ) The first line in my ShelterAdmissions.org file is: #+TODO: admit(a) in(i!) out(o@) | discharged(d@) and things are working pretty well so far. I'd like to know if there is a way to force LASTNAME to show up in all-caps in ShelterAdmissions.org, regardless of how it is typed into the capture template. Thanks. --Chris Ryan