From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jude DaShiell Subject: Re: headline and a table Date: Wed, 2 Jan 2019 10:29:08 -0500 Message-ID: References: <87y383xgd8.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Return-path: Received: from eggs.gnu.org ([208.118.235.92]:48284) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1geiSI-0001Lb-Q2 for emacs-orgmode@gnu.org; Wed, 02 Jan 2019 10:29:15 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1geiSE-0008P4-62 for emacs-orgmode@gnu.org; Wed, 02 Jan 2019 10:29:14 -0500 Received: from mailbackend.panix.com ([166.84.1.89]:36325) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1geiSE-0008OK-2L for emacs-orgmode@gnu.org; Wed, 02 Jan 2019 10:29:10 -0500 In-Reply-To: <87y383xgd8.fsf@gmail.com> 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" To: Eric S Fraga Cc: emacs-orgmode@gnu.org Great, thanks this worked perfectly! On Wed, 2 Jan 2019, Eric S Fraga wrote: > Date: Wed, 2 Jan 2019 09:51:15 > From: Eric S Fraga > To: Jude DaShiell > Cc: emacs-orgmode@gnu.org > Subject: Re: [O] headline and a table > > On Saturday, 29 Dec 2018 at 09:41, Jude DaShiell wrote: > > I have an orgmode table and a note in a headline and those two need to > > stay together in the same file. The table as is usual has headings. What > > I would like to know is if orgmode can do a boxed heading like this: > > |------|-------| > > | date | notes | > > |------|-------| > > Yes, orgmode will definitely allow you to have: > > |------+-------| > | date | notes | > |------+-------| > > which you can achieve by typing > > "| date | notes C-u C-c - C-c -" > > (without the quotes, and there are other ways of achieving the same) > > --