From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rick Frankel Subject: Re: trying to write a guidebook for students using org , need help with formating Date: Wed, 23 Oct 2013 09:32:00 -0400 Message-ID: <5bca44961b3083e3e8d5e1c48dd36d5d@mail.rickster.com> References: <20131022093943.GX6656@kuru.dyndns-at-home.com> <87iowokdi5.fsf@ericabrahamsen.net> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47896) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VYyXf-00027t-79 for emacs-orgmode@gnu.org; Wed, 23 Oct 2013 09:32:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VYyXZ-0008PV-0Z for emacs-orgmode@gnu.org; Wed, 23 Oct 2013 09:32:07 -0400 Received: from [204.62.15.78] (port=51228 helo=mail.rickster.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VYyXY-0008PK-UC for emacs-orgmode@gnu.org; Wed, 23 Oct 2013 09:32:00 -0400 In-Reply-To: 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: Xebar Saram Cc: org mode On 2013-10-23 02:11, Xebar Saram wrote: > i think i can live with the =C2=A0#+BEGIN_EXAMPLE blocks , is there a w= ay > to define wrapping text in the block? as you said using the block > currently cuts off text towards the lines end Well, you can use fill-paragraph manually, but that requires lines separated by spaces. You could also map `do-auto-fill' to a keystroke and use that to justify lines. But a better approach would be to define your own latex list environment=20 for program steps and use lists: #+BEGIN_SRC org * Example steps: #+ATTR_LATEX :environment step-list - step 1 - step 2 #+END_SRC you could also redefine the default list (=3Ditemize=3D) environment... rick