From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: Export <> to latex Date: Fri, 02 Mar 2012 15:23:47 -0500 Message-ID: <4755.1330719827@alphaville> References: <4F51267D.1030903@mgrebenstein.de> Reply-To: nicholas.dokos@hp.com Return-path: Received: from eggs.gnu.org ([208.118.235.92]:60653) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S3Z17-0001lt-Oa for emacs-orgmode@gnu.org; Fri, 02 Mar 2012 15:23:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S3Z15-0006aH-Lx for emacs-orgmode@gnu.org; Fri, 02 Mar 2012 15:23:53 -0500 Received: from g5t0009.atlanta.hp.com ([15.192.0.46]:27846) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S3Z15-0006Yt-Ht for emacs-orgmode@gnu.org; Fri, 02 Mar 2012 15:23:51 -0500 In-Reply-To: Message from Markus Grebenstein of "Fri, 02 Mar 2012 20:58:53 +0100." <4F51267D.1030903@mgrebenstein.de> 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: Markus Grebenstein Cc: nicholas.dokos@hp.com, emacs-orgmode@gnu.org Markus Grebenstein wrote: > Dear List, > > I am regularly running into problems with internal links to headings, > since my document meanwhile is 200pp+ long and I tend to change > headings. > > Since I loose the ability to jump to the heading, I do not like to use > the classic latex approach using \label. > > I am wondering why anchors are not exported as a label. Alternatively > having an "option" for headings would be nice like: > * Heading [label:anchor] > > Is there a possibility to tweak orgmode to export anchors? > > Thanks in advance, > I may be misunderstanding what you mean, but when I try exporting to latex the following org file: --8<---------------cut here---------------start------------->8--- * foo # <> foo text * bar # <> bar text --8<---------------cut here---------------end--------------->8--- I get the following latex code: ,---- | ... | \section{foo} | \label{sec-1} | \label{fooanchor} | | | foo text | \section{bar} | \label{sec-2} | \label{baranchor} | | | bar text | ... `---- Isn't that enough? Nick