Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

"I go on working for the same reason a hen goes on laying eggs." -- H. L. Mencken


computers / comp.text.tex / Using AUCTeX from local Git repo.

SubjectAuthor
* Using AUCTeX from local Git repo.hongy...@gmail.com
`- Re: Using AUCTeX from local Git repo.hongy...@gmail.com

1
Using AUCTeX from local Git repo.

<8617d139-2879-47a6-8bbf-18c7b8211a54n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=3712&group=comp.text.tex#3712

  copy link   Newsgroups: comp.text.tex
X-Received: by 2002:a37:b1c5:: with SMTP id a188mr4477113qkf.378.1623945990198; Thu, 17 Jun 2021 09:06:30 -0700 (PDT)
X-Received: by 2002:aed:3071:: with SMTP id 104mr5847195qte.119.1623945989985; Thu, 17 Jun 2021 09:06:29 -0700 (PDT)
Path: i2pn2.org!i2pn.org!paganini.bofh.team!news.dns-netz.com!news.freedyn.net!newsfeed.xs4all.nl!newsfeed7.news.xs4all.nl!tr2.eu1.usenetexpress.com!feeder.usenetexpress.com!tr2.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.text.tex
Date: Thu, 17 Jun 2021 09:06:29 -0700 (PDT)
Injection-Info: google-groups.googlegroups.com; posting-host=103.142.140.220; posting-account=kF0ZaAoAAACPbiK5gldhAyX5qTd3krV2
NNTP-Posting-Host: 103.142.140.220
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <8617d139-2879-47a6-8bbf-18c7b8211a54n@googlegroups.com>
Subject: Using AUCTeX from local Git repo.
From: hongyi.zhao@gmail.com (hongy...@gmail.com)
Injection-Date: Thu, 17 Jun 2021 16:06:30 +0000
Content-Type: text/plain; charset="UTF-8"
Lines: 45
 by: hongy...@gmail.com - Thu, 17 Jun 2021 16:06 UTC

On Ubuntu 20.04, I try to use AUCTeX from its local Git repo directly according to the instructions described in the INSTALL file as shown below:

```
6.1 Using AUCTeX from local Git repo
====================================

With the techniques described above, it is also possible to use AUCTeX
directly from a local Git repository. Let's assume you have your Git
repositories under '~/development/'.

First, you have to fetch a copy of the AUCTeX Git repository. In a
shell, change directory to '~/development/' and do:
git clone https://git.savannah.gnu.org/git/auctex.git

Now change directory to '~/development/auctex' and run
'./autogen.sh'. Next thing is to run 'configure' like this:
./configure --without-texmf-dir --with-lispdir=.

When finished, simply enter
make
and you're finished. Note that the 'make install' step is not
necessary.

Now you have to tell Emacs about the plan. The following variables
must be set in your init file because their normal values are only
correct when AUCTeX is installed:
(setq TeX-data-directory "~/development/auctex"
TeX-lisp-directory TeX-data-directory)

The info files will be available with this:
(eval-after-load 'info
'(add-to-list 'Info-additional-directory-list
"~/development/auctex/doc"))

Now you're ready to load 'auctex.el' and 'preview-latex.el' out of this
directory:
(load "~/development/auctex/auctex.el" nil t t)
(load "~/development/auctex/preview-latex.el" nil t t)
```

But based on the above method, in Emacs, I find the preview function failed to work with the error: can't find the preview.sty file.

Any hints for solving this problem?

Regards,
HY

Re: Using AUCTeX from local Git repo.

<ba9e906d-7e89-4077-af56-ec7a438e89c5n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/computers/article-flat.php?id=3713&group=comp.text.tex#3713

  copy link   Newsgroups: comp.text.tex
X-Received: by 2002:ac8:5e4f:: with SMTP id i15mr8850661qtx.362.1623993971035;
Thu, 17 Jun 2021 22:26:11 -0700 (PDT)
X-Received: by 2002:a05:622a:4d:: with SMTP id y13mr8769878qtw.12.1623993970850;
Thu, 17 Jun 2021 22:26:10 -0700 (PDT)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!proxad.net!feeder1-2.proxad.net!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.text.tex
Date: Thu, 17 Jun 2021 22:26:10 -0700 (PDT)
In-Reply-To: <8617d139-2879-47a6-8bbf-18c7b8211a54n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=103.142.140.222; posting-account=kF0ZaAoAAACPbiK5gldhAyX5qTd3krV2
NNTP-Posting-Host: 103.142.140.222
References: <8617d139-2879-47a6-8bbf-18c7b8211a54n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <ba9e906d-7e89-4077-af56-ec7a438e89c5n@googlegroups.com>
Subject: Re: Using AUCTeX from local Git repo.
From: hongyi.zhao@gmail.com (hongy...@gmail.com)
Injection-Date: Fri, 18 Jun 2021 05:26:11 +0000
Content-Type: text/plain; charset="UTF-8"
 by: hongy...@gmail.com - Fri, 18 Jun 2021 05:26 UTC

On Friday, June 18, 2021 at 12:06:32 AM UTC+8, hongy...@gmail.com wrote:
> On Ubuntu 20.04, I try to use AUCTeX from its local Git repo directly according to the instructions described in the INSTALL file as shown below:
>
> ```
> 6.1 Using AUCTeX from local Git repo
> ====================================
>
> With the techniques described above, it is also possible to use AUCTeX
> directly from a local Git repository. Let's assume you have your Git
> repositories under '~/development/'.
>
> First, you have to fetch a copy of the AUCTeX Git repository. In a
> shell, change directory to '~/development/' and do:
> git clone https://git.savannah.gnu.org/git/auctex.git
>
> Now change directory to '~/development/auctex' and run
> './autogen.sh'. Next thing is to run 'configure' like this:
> ./configure --without-texmf-dir --with-lispdir=.
>
> When finished, simply enter
> make
> and you're finished. Note that the 'make install' step is not
> necessary.
>
> Now you have to tell Emacs about the plan. The following variables
> must be set in your init file because their normal values are only
> correct when AUCTeX is installed:
> (setq TeX-data-directory "~/development/auctex"
> TeX-lisp-directory TeX-data-directory)
>
> The info files will be available with this:
> (eval-after-load 'info
> '(add-to-list 'Info-additional-directory-list
> "~/development/auctex/doc"))
>
> Now you're ready to load 'auctex.el' and 'preview-latex.el' out of this
> directory:
> (load "~/development/auctex/auctex.el" nil t t)
> (load "~/development/auctex/preview-latex.el" nil t t)
> ```
>
> But based on the above method, in Emacs, I find the preview function failed to work with the error: can't find the preview.sty file.
>
> Any hints for solving this problem?

I have solved this problem. See <https://github.com/raxod502/straight.el/issues/800#issuecomment-862165317> for more detailed info.

HY


computers / comp.text.tex / Using AUCTeX from local Git repo.

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor