From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Sven Bretfeld Newsgroups: gmane.emacs.help Subject: reftex-citation doesn't ask for pages Date: Sun, 20 May 2007 20:56:30 +0200 Message-ID: <20070520185630.GG6235@relwi.unibe.ch> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1179687417 18537 80.91.229.12 (20 May 2007 18:56:57 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 20 May 2007 18:56:57 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun May 20 20:56:56 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1HpqaM-0007F3-NI for geh-help-gnu-emacs@m.gmane.org; Sun, 20 May 2007 20:56:54 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HpqaJ-0001ij-8N for geh-help-gnu-emacs@m.gmane.org; Sun, 20 May 2007 14:56:51 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Hpqa3-0001id-F2 for help-gnu-emacs@gnu.org; Sun, 20 May 2007 14:56:35 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Hpqa2-0001iR-Md for help-gnu-emacs@gnu.org; Sun, 20 May 2007 14:56:35 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Hpqa2-0001iO-IG for help-gnu-emacs@gnu.org; Sun, 20 May 2007 14:56:34 -0400 Original-Received: from viefep13-int.chello.at ([213.46.255.15] helo=viefep24-int.chello.at) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Hpqa1-0004an-Tf for help-gnu-emacs@gnu.org; Sun, 20 May 2007 14:56:34 -0400 Original-Received: from kamaloka.dhatu ([80.219.144.82]) by viefep24-int.chello.at (InterMail vM.7.08.02.00 201-2186-121-20061213) with ESMTP id <20070520185631.OTWY10293.viefep24-int.chello.at@kamaloka.dhatu> for ; Sun, 20 May 2007 20:56:31 +0200 Original-Received: from sven by kamaloka.dhatu with local (Exim 4.63) (envelope-from ) id 1HpqZy-0000Oz-Fb for help-gnu-emacs@gnu.org; Sun, 20 May 2007 20:56:30 +0200 Content-Disposition: inline X-Operating-System: Debian GNU/Linux 4.0 Kernel 2.6.18-4-486 User-Agent: Mutt/1.5.13 (2006-08-11) X-detected-kernel: Solaris 10 (beta) X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:44210 Archived-At: Hello I have a little problem here. Possibly I have misunderstood something. I've made my own citation-format to make reftex work together with biblatex: (setq reftex-cite-format '((?\C-m . "\\cite[]{%l}") (?t . "\\textcite[]{%l}") (?p . "\\parencite[]{%l}") (?o . "\\citepr[]{%l}") (?n . "\\nocite{%l}"))) (setq reftex-cite-prompt-optional-args t) I was thinking the last line makes reftex ask for the page number after hitting C-c [, but it doesn't work. After asking me for the cite-key, reftex inserts the cite-command with empty [], so that I have to jump back to insert the page number manually. It's the same when I define the cite-format with two pairs of braces. What have I done wrong? Thanks for help Sven