From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: Hrules and Column/Page breaks Date: Wed, 01 Feb 2012 13:52:06 +0100 Message-ID: <87d39ysoll.fsf@gmail.com> References: <81fwev56g0.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([140.186.70.92]:41083) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RsZha-0001vM-CY for emacs-orgmode@gnu.org; Wed, 01 Feb 2012 07:54:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RsZhU-0003eK-PX for emacs-orgmode@gnu.org; Wed, 01 Feb 2012 07:54:18 -0500 Received: from mail-ww0-f49.google.com ([74.125.82.49]:52701) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RsZhU-0003eC-Iz for emacs-orgmode@gnu.org; Wed, 01 Feb 2012 07:54:12 -0500 Received: by wgbdt13 with SMTP id dt13so964757wgb.30 for ; Wed, 01 Feb 2012 04:54:11 -0800 (PST) In-Reply-To: <81fwev56g0.fsf@gmail.com> (Jambunathan K.'s message of "Wed, 01 Feb 2012 13:30:31 +0530") 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: Jambunathan K Cc: Orgmode Hello, Jambunathan K writes: > Is it possible to extend horizontal ruler to also stand for page *and* > column breaks (say) by attaching a header to it. This is already possible. For example, in e-ascii back-end, the following will create a 10 characters long hline instead of full text-width (I should also probably center it, but it's not the case actually): --8<---------------cut here---------------start------------->8--- #+attr_ascii: :width 8 ----- --8<---------------cut here---------------end--------------->8--- In your case, just put anything in #+attr_odt affiliated keyword. Example: --8<---------------cut here---------------start------------->8--- #+attr_odt: some qualifiers ----- --8<---------------cut here---------------end--------------->8--- Then, (org-element-get-property :attr_odt HRULE) will return: '("some qualifiers"). Note that #+header in only Babel related at the moment. Also this really back-end specific (hence the special keywords) since some back-ends have no clue about a page or a column. Regards, -- Nicolas Goaziou