From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rasmus Subject: Re: Citation syntax: Underscore MUST(?) be allowed in cite keys? Date: Mon, 09 Mar 2015 22:07:06 +0100 Message-ID: <87r3sxubgl.fsf@gmx.us> References: <874mq0399a.fsf@gmx.us> <54F75222.8030805@gmail.com> <87pp8o1t9f.fsf@gmx.us> <87pp8o6nt9.fsf@berkeley.edu> <87fv9i9z8s.fsf@nicolasgoaziou.fr> <87bnk60zhc.fsf@berkeley.edu> <54FA9AA9.9070505@gmail.com> <87r3t05okc.fsf@nicolasgoaziou.fr> <87ioeci6f6.fsf@gmx.us> <87r3szk6q9.fsf@gmx.us> <87oao3yluf.fsf@berkeley.edu> <87k2yqyx55.fsf@berkeley.edu> <871tkyxgjg.fsf@ucl.ac.uk> <87h9tuyph6.fsf@berkeley.edu> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38712) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YV4tV-0005KN-Kc for emacs-orgmode@gnu.org; Mon, 09 Mar 2015 17:07:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YV4tQ-0001q6-Hf for emacs-orgmode@gnu.org; Mon, 09 Mar 2015 17:07:21 -0400 Received: from plane.gmane.org ([80.91.229.3]:42889) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YV4tQ-0001px-BF for emacs-orgmode@gnu.org; Mon, 09 Mar 2015 17:07:16 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1YV4tP-0001GM-5F for emacs-orgmode@gnu.org; Mon, 09 Mar 2015 22:07:15 +0100 Received: from tsn109-201-154-191.dyn.nltelcom.net ([109.201.154.191]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 09 Mar 2015 22:07:15 +0100 Received: from rasmus by tsn109-201-154-191.dyn.nltelcom.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 09 Mar 2015 22:07:15 +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 --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Richard Lawrence writes: > Suppose you often write citations like: > > [cite: See @Doe99, and references therein, for more.] > > [...] and rendered like: > > See Doe (1999), and references therein, for more. This is slightly OT, but it comes up frequently enough that it's worth pointing out. Assuming we were to handle notes as biblatex (which would be the better thing to do IMO), the output of: [cite: See @Doe99, and references therein, for more.] Aka: \textcite[See][, and references therein, for more.]{Doe99} is Aksn et al. (See 2006, ,and references therein, for more.) To get "See Doe (1999), and references therein, for more." one would write: See @doe99, and references therein, for more. Or: See \textcite{doe99}, and references therein, for more. The output of [(cite): See @Doe99, and references therein, for more.] is (See Doe 1999, ,and references therein, for more) or: \parencite[See][,and references therein, for more]{doe99} —Rasmus -- This space is left intentionally blank --=-=-= Content-Type: text/x-tex Content-Disposition: inline; filename=test.tex \documentclass{article} \usepackage[style=authoryear]{biblatex} \addbibresource{biblatex-examples.bib} \begin{document} \textcite[See][,and references therein, for more.]{aksin}\par \textcites(pre)(post)[See][,and references therein, for more.]{aksin}[See][,and references therein, for more.]{angenendt}\par \parencite[See][,and references therein, for more.]{aksin}\par \parencites(pre)(post)[See][,and references therein, for more.]{aksin}[See][,and references therein, for more.]{angenendt}\par \end{document} --=-=-=--