From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp2 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id sFimFM5x/F9XRQAA0tVLHw (envelope-from ) for ; Mon, 11 Jan 2021 15:42:06 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp2 with LMTPS id uCmVEM5x/F+zLwAAB5/wlQ (envelope-from ) for ; Mon, 11 Jan 2021 15:42:06 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 04D409403CB for ; Mon, 11 Jan 2021 15:42:06 +0000 (UTC) Received: from localhost ([::1]:38294 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kyzKX-0003WJ-0c for larch@yhetil.org; Mon, 11 Jan 2021 10:42:05 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:55166) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kyzJ5-0002Ws-Fe for help-guix@gnu.org; Mon, 11 Jan 2021 10:40:37 -0500 Received: from smtp.hosts.co.uk ([85.233.160.19]:39583) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kyzIq-0006p6-LW for help-guix@gnu.org; Mon, 11 Jan 2021 10:40:31 -0500 Received: from maikeh336.claranet.co.uk ([79.123.23.187] helo=pancake.local) by smtp.hosts.co.uk with esmtpsa (TLS1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim) (envelope-from ) id 1kyzIj-0000vW-3z; Mon, 11 Jan 2021 15:40:13 +0000 Message-ID: <92457755ab1da7fddd2aad188328f8d6b40677c6.camel@tourbillion-technology.com> Subject: Re: noweb/LaTeX integration - .sty files not found From: Paul Garlick To: martin@famic.de, help-guix@gnu.org Date: Mon, 11 Jan 2021 15:40:11 +0000 In-Reply-To: 20210107145335.GA670@remote.famic.de Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.28.5-0ubuntu0.18.04.2 Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Received-SPF: none client-ip=85.233.160.19; envelope-from=pgarlick@tourbillion-technology.com; helo=smtp.hosts.co.uk X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_PASS=-0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: help-guix@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+larch=yhetil.org@gnu.org Sender: "Help-Guix" X-Migadu-Flow: FLOW_IN X-Migadu-Spam-Score: -1.85 Authentication-Results: aspmx1.migadu.com; dkim=none; dmarc=none; spf=pass (aspmx1.migadu.com: domain of help-guix-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=help-guix-bounces@gnu.org X-Migadu-Queue-Id: 04D409403CB X-Spam-Score: -1.85 X-Migadu-Scanner: scn0.migadu.com X-TUID: dRa/6aSgdJGu Hi Martin, > But if I run `xelatex mydoc.tex`, it complains about the missing .sty file. Try the TEXINPUTS environment variable. It is useful for specifying extra paths. The compilation command is: $ TEXINPUTS=~/.guix-profile/share/texmf//: xelatex mydoc.tex I use this method for documents that require asymptote.sty, since asymptote is also a separate package. Best regards, Paul.