From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ilya Subject: LaTeX export with section number, name and page in internal links Date: Thu, 3 Dec 2015 11:08:35 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41906) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a4Rr1-00014V-DJ for emacs-orgmode@gnu.org; Thu, 03 Dec 2015 06:15:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a4Rqx-0004rg-D9 for emacs-orgmode@gnu.org; Thu, 03 Dec 2015 06:15:15 -0500 Received: from plane.gmane.org ([80.91.229.3]:59214) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a4Rqx-0004ra-63 for emacs-orgmode@gnu.org; Thu, 03 Dec 2015 06:15:11 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1a4Rqr-0000kQ-4V for emacs-orgmode@gnu.org; Thu, 03 Dec 2015 12:15:05 +0100 Received: from ppp85-140-79-243.pppoe.mtu-net.ru ([85.140.79.243]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 03 Dec 2015 12:15:05 +0100 Received: from filip83pov by ppp85-140-79-243.pppoe.mtu-net.ru with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 03 Dec 2015 12:15:05 +0100 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 export my Org-Mode notes with internal links to LaTeX and I want it to look like this ''Section 1.1 [Section name], page 99'' (Like in the Org Manual). I use this construction: #+BEGIN_EXAMPLE * Chapter 1 ** Section 1.1 :PROPERTIES: :CUSTOM_ID: section-1 :END: * Chapter 2 ** Section 2.1 I want reference to Section 1.1 from here (See #section-1) #+END_EXAMPLE But as a result I get only the number of the section ''1.1'', not the ''Section 1.1 [Section name], page 99''. What options I need to use? Here (http://emacs.stackexchange.com/questions/18547/org-mode-latex-export-with-section-number-name-and-page-in-internal-links), I was advised to use a Fancyref, but I have no idea how I may use it with Org-Mode syntax.