From unknown Fri Aug 15 02:04:29 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#64768 <64768@debbugs.gnu.org> To: bug#64768 <64768@debbugs.gnu.org> Subject: Status: biblatex detection in reftex is too naive, multiple bib files are problematic Reply-To: bug#64768 <64768@debbugs.gnu.org> Date: Fri, 15 Aug 2025 09:04:29 +0000 retitle 64768 biblatex detection in reftex is too naive, multiple bib files= are problematic reassign 64768 emacs submitter 64768 "Philipp G. Haselwarter" severity 64768 normal tag 64768 moreinfo notabug thanks From debbugs-submit-bounces@debbugs.gnu.org Fri Jul 21 08:20:04 2023 Received: (at submit) by debbugs.gnu.org; 21 Jul 2023 12:20:04 +0000 Received: from localhost ([127.0.0.1]:60773 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qMp75-0007ZF-F3 for submit@debbugs.gnu.org; Fri, 21 Jul 2023 08:20:03 -0400 Received: from lists.gnu.org ([2001:470:142::17]:45492) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qMp72-0007Ye-Lr for submit@debbugs.gnu.org; Fri, 21 Jul 2023 08:20:01 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qMp6r-0003VF-Dg for bug-gnu-emacs@gnu.org; Fri, 21 Jul 2023 08:19:50 -0400 Received: from relay6-d.mail.gandi.net ([217.70.183.198]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qMp6o-0007xI-Cz for bug-gnu-emacs@gnu.org; Fri, 21 Jul 2023 08:19:47 -0400 Received: by mail.gandi.net (Postfix) with ESMTPSA id B5409C0009 for ; Fri, 21 Jul 2023 12:19:42 +0000 (UTC) Received: by mail-ed1-f47.google.com with SMTP id 4fb4d7f45d1cf-51e590a8ab5so2542051a12.2 for ; Fri, 21 Jul 2023 05:19:42 -0700 (PDT) X-Gm-Message-State: ABy/qLZ4X/ghctN+JbKaadF6M9dPExBN/VEg0BPmmHuDkAkHOIznwyUK 6TlLRl/BrwDiBjH0hLzBZrSih5jaZxf9J9JpGFE= X-Google-Smtp-Source: APBJJlFiGgo4Q8Tx7x7Ku93WMtG3qphF4mbc1/UGERqGLUfB3Hr3aOnsr9jmZQJOfFTqiA0dJHYms6bdJ8BpKVSmztw= X-Received: by 2002:aa7:d3d3:0:b0:51e:34d5:a23f with SMTP id o19-20020aa7d3d3000000b0051e34d5a23fmr1481977edr.23.1689941982194; Fri, 21 Jul 2023 05:19:42 -0700 (PDT) MIME-Version: 1.0 From: "Philipp G. Haselwarter" Date: Fri, 21 Jul 2023 14:19:06 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: biblatex detection in reftex is too naive, multiple bib files are problematic To: bug-gnu-emacs@gnu.org Content-Type: multipart/alternative; boundary="0000000000008a30c40600fe47bb" X-GND-Sasl: philipp@haselwarter.org Received-SPF: none client-ip=217.70.183.198; envelope-from=philipp@haselwarter.org; helo=relay6-d.mail.gandi.net X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H5=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_NONE=0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --0000000000008a30c40600fe47bb Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable To find .bib files, reftex uses `reftex-locate-bibliography-files', which in turn checks whether bibtex is in use via `reftex-using-biblatex-p'. The latter is too na=C3=AFve: it only checks if "biblatex" is amongst the `TeX-active-styles' or does a simple syntactic check of the current buffer. In case \usepackage{biblatex} is loaded in, say, an included file, these checks fail, and the use of biblatex is not detected. As a result, only the first of potentially several \addbibresource{fooN.bib} statements is picked up, and subsequent bib resources aren't parsed by reftex. This is doubly unfortunate, because auctex's "style" (black) magic exposes `LaTeX-bibliography-list', which does pick up the different bib files, and could be used in reftex when available. --0000000000008a30c40600fe47bb Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
To find .bib files, reftex uses `reftex-locate-biblio= graphy-files', which in turn checks whether bibtex is in use via `refte= x-using-biblatex-p'. The latter is too na=C3=AFve: it only checks if &q= uot;biblatex" is amongst the `TeX-active-styles' or does a simple = syntactic check of the current buffer. In case \usepackage{biblatex} is loa= ded in, say, an included file, these checks fail, and the use of biblatex i= s not detected. As a result, only the first of potentially several \addbibr= esource{fooN.bib} statements is picked up, and subsequent bib resources are= n't parsed by reftex.

This is doubly unfortuna= te, because auctex's "style" (black) magic exposes `LaTeX-bib= liography-list', which does pick up the different bib files, and could = be used in reftex when available.
--0000000000008a30c40600fe47bb-- From debbugs-submit-bounces@debbugs.gnu.org Thu Jul 27 15:10:33 2023 Received: (at 64768) by debbugs.gnu.org; 27 Jul 2023 19:10:33 +0000 Received: from localhost ([127.0.0.1]:43149 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qP6Nd-0005FS-4I for submit@debbugs.gnu.org; Thu, 27 Jul 2023 15:10:33 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:45316) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qP6NX-0005F9-G1 for 64768@debbugs.gnu.org; Thu, 27 Jul 2023 15:10:31 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qP6NP-0002QW-LV; Thu, 27 Jul 2023 15:10:21 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=w1i8tfai6aQoc3tSgCt3ZSBQFRcaE1TsTe3sXIu5DRQ=; b=ahxV/13+K07gIEt1BgU/ Algz8jb5CeClVcr0Cp36ZVd6I+43IRGG86NS3/wr9cjTiF4ZyyyKhavdxtpRdtIMEtFy663b8abJ3 VG4GiMnPuS7Y2Nb6arPQr169AE7y7OCNpiNRZ7tyYqujT8QRNn+Pkejgq3L08opRn9wkYcd0yQg1d mTxi44LdtmH/iBM4ywDgq4DnkdFsYReWXV9EnsJFHnStZYntVn86wTLl6j4IiBpPk4UO4ZLV/ptkM yjv7FVxhn9XDqu5npwJ9IzAWPG0pz8PfU+sn3NSIcEkIzvAVHT8+0u59O7m0CjVVkUfiH/YHYnIBs gj6EVyRFObN7nw==; Received: from p5b326e8f.dip0.t-ipconnect.de ([91.50.110.143] helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qP6NM-0006ga-IZ; Thu, 27 Jul 2023 15:10:19 -0400 From: Arash Esbati To: "Philipp G. Haselwarter" Subject: Re: bug#64768: biblatex detection in reftex is too naive, multiple bib files are problematic In-Reply-To: (Philipp G. Haselwarter's message of "Fri, 21 Jul 2023 14:19:06 +0200") References: Date: Thu, 27 Jul 2023 21:10:03 +0200 Message-ID: <868rb1yxv8.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 64768 Cc: 64768@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) "Philipp G. Haselwarter" writes: > To find .bib files, reftex uses `reftex-locate-bibliography-files', > which in turn checks whether bibtex is in use via > `reftex-using-biblatex-p'. The latter is too na=EFve: it only checks if > "biblatex" is amongst the `TeX-active-styles' or does a simple > syntactic check of the current buffer. In case \usepackage{biblatex} > is loaded in, say, an included file, these checks fail, and the use of > biblatex is not detected. Can you please describe what you exactly mean with '\usepackage{biblatex} is an included file'? I'd like to understand your setup. Best, Arash From debbugs-submit-bounces@debbugs.gnu.org Fri Jul 28 05:59:18 2023 Received: (at 64768) by debbugs.gnu.org; 28 Jul 2023 09:59:18 +0000 Received: from localhost ([127.0.0.1]:43731 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qPKFi-0006X6-DW for submit@debbugs.gnu.org; Fri, 28 Jul 2023 05:59:18 -0400 Received: from relay7-d.mail.gandi.net ([217.70.183.200]:53037) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qPKFg-0006Ws-GN for 64768@debbugs.gnu.org; Fri, 28 Jul 2023 05:59:17 -0400 Received: by mail.gandi.net (Postfix) with ESMTPSA id 08F1720002 for <64768@debbugs.gnu.org>; Fri, 28 Jul 2023 09:59:09 +0000 (UTC) Received: by mail-lf1-f46.google.com with SMTP id 2adb3069b0e04-4fe1a35a135so2573907e87.1 for <64768@debbugs.gnu.org>; Fri, 28 Jul 2023 02:59:09 -0700 (PDT) X-Gm-Message-State: ABy/qLbxR8dMbhAD1Rw49nelYpqp0NraFI0gsFk1o2MxneXHXy0JMEH5 BhvjpwS5pESQ7YhMtX4OhQwgmyOXOPLp+RN4/I8= X-Google-Smtp-Source: APBJJlHE6TD+QsFSOGSzCuE4SlHfw4837g+k4qevgcHdaVZZ3LQ4bUAzCDJg8QxIhdBVd9rD2ak706MjTCO4Ue6Fxyg= X-Received: by 2002:a05:6512:61c:b0:4fb:90c6:c31a with SMTP id b28-20020a056512061c00b004fb90c6c31amr1268932lfe.14.1690538349072; Fri, 28 Jul 2023 02:59:09 -0700 (PDT) MIME-Version: 1.0 References: <868rb1yxv8.fsf@gnu.org> In-Reply-To: <868rb1yxv8.fsf@gnu.org> From: "Philipp G. Haselwarter" Date: Fri, 28 Jul 2023 11:58:32 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: bug#64768: biblatex detection in reftex is too naive, multiple bib files are problematic To: Arash Esbati Content-Type: multipart/alternative; boundary="000000000000c697a80601892193" X-GND-Sasl: philipp@haselwarter.org X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 64768 Cc: 64768@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) --000000000000c697a80601892193 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Hi Arash, In main.tex, I have the line "\input{mypreamble}", and in mypreamble.tex, there's a line with "\usepackage{biblatex}". I also have several "\addbibresource{foo.bib}", "\addbibresource{bar.bib}", etc, either in main.tex or in mypreamble.tex . I would want reftex to be aware of the references in foo.bib and bar.bib whenever main.tex is set as TeX-master, i.e. either while editing main.tex directly or while editing some-section.tex, where some-section.tex sets TeX-master to main.tex. Best, Philipp On Thu, 27 Jul 2023 at 21:10, Arash Esbati wrote: > "Philipp G. Haselwarter" writes: > > > To find .bib files, reftex uses `reftex-locate-bibliography-files', > > which in turn checks whether bibtex is in use via > > `reftex-using-biblatex-p'. The latter is too na=C3=AFve: it only checks= if > > "biblatex" is amongst the `TeX-active-styles' or does a simple > > syntactic check of the current buffer. In case \usepackage{biblatex} > > is loaded in, say, an included file, these checks fail, and the use of > > biblatex is not detected. > > Can you please describe what you exactly mean with > '\usepackage{biblatex} is an included file'? I'd like to understand > your setup. > > Best, Arash > --000000000000c697a80601892193 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
Hi Arash,

In main.tex, I hav= e the line "\input{mypreamble}", and in mypreamble.tex, there'= ;s a line with "\usepackage{biblatex}". I also have several=C2=A0= "\addbibresource{foo.bib}", "\addbibresource{bar.bib}",= etc, either in main.tex or in mypreamble.tex . I would want reftex to be a= ware of the references in foo.bib and bar.bib whenever main.tex is set as T= eX-master, i.e. either while editing main.tex directly or while editing som= e-section.tex, where some-section.tex sets TeX-master to main.tex.

Best,
Philipp

On Thu, 27 Jul 2023 at 21= :10, Arash Esbati <arash@gnu.org>= ; wrote:
"P= hilipp G. Haselwarter" <philipp@haselwarter.org> writes:

> To find .bib files, reftex uses `reftex-locate-bibliography-files'= ,
> which in turn checks whether bibtex is in use via
> `reftex-using-biblatex-p'. The latter is too na=C3=AFve: it only c= hecks if
> "biblatex" is amongst the `TeX-active-styles' or does a = simple
> syntactic check of the current buffer. In case \usepackage{biblatex} > is loaded in, say, an included file, these checks fail, and the use of=
> biblatex is not detected.

Can you please describe what you exactly mean with
'\usepackage{biblatex} is an included file'?=C2=A0 I'd like to = understand
your setup.

Best, Arash
--000000000000c697a80601892193-- From debbugs-submit-bounces@debbugs.gnu.org Mon Jul 31 03:40:37 2023 Received: (at 64768) by debbugs.gnu.org; 31 Jul 2023 07:40:37 +0000 Received: from localhost ([127.0.0.1]:51726 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qQNW8-0002LL-VH for submit@debbugs.gnu.org; Mon, 31 Jul 2023 03:40:37 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:53972) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qQNW6-0002L5-Oa for 64768@debbugs.gnu.org; Mon, 31 Jul 2023 03:40:36 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qQNVw-0002Ip-73; Mon, 31 Jul 2023 03:40:27 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=mSaHyDbY6fp6JFEUWR2g5aw+6O5GQn5j7owjUJPuyEo=; b=T+1EJfeqWWzHKeIQY8mQ l3/21pz+KZfTFNIzO/WR9VxC1BuPRzxq0bv0acVHMF5t8P3ljzKylOhCPl8z7ikS5oWk3B3VW3qke 1TT1eJltCLpqjXD5LV95vxJGgxbqnJ+dOZkkeO9+Ybw+aOBUCxLfOSM4u4UZsoMukJUUTbG+2mV79 dCITLp9pt6t3Xa8iGFi4sMUfAaq2ybbNdD6WhKGIkJAPgvTW0p4QLSv/rcIIzPUPy63ceke1Xwd2I 5k5KN8vxCe2a6kzz119A1ApwRzFm6w6D7eQWaw8UMejd50ZkcGQbQZwRsQQ9S2LQGej84lvA5axxv kctM9IYGCsSZ5w==; Received: from p5b326e8f.dip0.t-ipconnect.de ([91.50.110.143] helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qQNVt-0006nI-CK; Mon, 31 Jul 2023 03:40:23 -0400 From: Arash Esbati To: "Philipp G. Haselwarter" Subject: Re: bug#64768: biblatex detection in reftex is too naive, multiple bib files are problematic In-Reply-To: (Philipp G. Haselwarter's message of "Fri, 28 Jul 2023 11:58:32 +0200") References: <868rb1yxv8.fsf@gnu.org> Date: Mon, 31 Jul 2023 09:40:03 +0200 Message-ID: <861qgoy1f0.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 64768 Cc: 64768@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) "Philipp G. Haselwarter" writes: > In main.tex, I have the line "\input{mypreamble}", and in > mypreamble.tex, there's a line with "\usepackage{biblatex}". I also > have several "\addbibresource{foo.bib}", "\addbibresource{bar.bib}", > etc, either in main.tex or in mypreamble.tex . I would want reftex to > be aware of the references in foo.bib and bar.bib whenever main.tex is > set as TeX-master, i.e. either while editing main.tex directly or > while editing some-section.tex, where some-section.tex sets TeX-master > to main.tex. Thanks the clarification. \addbibresource is a preamble only command and AFAIU, RefTeX looks for this macro only in the main file; it doesn't go through each \input'ed file in order to find any \addbibresource. I'd suggest you change your setup a little and rename your mypreamble.tex to mypreamble.sty and replace there: \usepackage{biblatex} with \RequirePackage{biblatex} and delete any \addbibresource calls. Now you do this in your main.tex: \usepackage{mypreamble} \addbibresource{foo.bib} \addbibresource{bar.bib} Now the final step is to write a small AUCTeX style file for your mypreamble.sty called mypreamble.el which looks like this: (TeX-add-style-hook "mypreamble" (lambda () (TeX-run-style-hooks "biblatex")) :latex) and save this file in the directory specified in the variable `TeX-style-private' (or adjust it accordingly first). Now restart Emacs and open your main.tex. AUCTeX should load mypreamble.el and biblatex.el subsequently which gets an entry in `TeX-active-styles' and you should be done. Best, Arash From debbugs-submit-bounces@debbugs.gnu.org Thu Aug 31 16:25:16 2023 Received: (at 64768) by debbugs.gnu.org; 31 Aug 2023 20:25:16 +0000 Received: from localhost ([127.0.0.1]:59310 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qboE8-00007d-A8 for submit@debbugs.gnu.org; Thu, 31 Aug 2023 16:25:16 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:37994) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qboE1-00006x-Vd; Thu, 31 Aug 2023 16:25:11 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qboDk-00015b-Cq; Thu, 31 Aug 2023 16:24:52 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=n4/WDwAssuqonsPTjyPr/ie+wSBCAGHRIG4ozhTLxIA=; b=oJUPJQdSfvdpDbAJQFDL dP8lNjBXE7V+XCGhOcSY1yvct4D+1xb4lrFiwcO5qs5n1BywScqUtWYK4eiYwz2C0ujH/6yATdytZ ilRClilsobJ4vo11EBxH1XNOwM3tAR8UBFCNChCp7WM2ypz/iYPxLa1B7AI2RfChLa7/W+oAerGAn 4szzOdWhWQWousHyKzH6RKQ89AafiNccPd+PDbjQfY0kn9TP+0m5QENa4ChLtuoF1pC+fbQW8BHFS 2P+8gv11Pv9S+H4tUhZhbTREmvdNwAvJzXNkoQgOLkLf8bP8f2EpvmCQlTylCpFW+AdHOCmnzn+xb c1FNI0GjlAmFgw==; From: Arash Esbati To: "Philipp G. Haselwarter" Subject: Re: bug#64768: biblatex detection in reftex is too naive, multiple bib files are problematic In-Reply-To: <861qgoy1f0.fsf@gnu.org> (Arash Esbati's message of "Mon, 31 Jul 2023 09:40:03 +0200") References: <868rb1yxv8.fsf@gnu.org> <861qgoy1f0.fsf@gnu.org> Date: Thu, 31 Aug 2023 22:24:37 +0200 Message-ID: <86pm33q7sq.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 64768 Cc: 64768@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) tags 64768 moreinfo notabug close 64768 thanks Arash Esbati writes: > Thanks the clarification. \addbibresource is a preamble only command > and AFAIU, RefTeX looks for this macro only in the main file; it doesn't > go through each \input'ed file in order to find any \addbibresource. Four weeks are gone and no further input. I'm closing this report for now, we can reopen upon any updates. Best, Arash From unknown Fri Aug 15 02:04:29 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 29 Sep 2023 11:24:09 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator