Skip to content

Commit 8aa0822

Browse files
committed
docs/src/howto/auctex-setup: recommend "tectonic -X" rather than "nextonic"
1 parent c1a1eeb commit 8aa0822

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

docs/src/howto/auctex-setup/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ To follow this section you will need Tectonic and GNU Emacs installed on your
1111
system. Additionally, you will require the AucTeX emacs package to be installed
1212
before following along.
1313

14-
> Note: This section makes use of the V2 tectonic CLI, invoked using the
15-
> `nextonic` command.
14+
> Note: This section makes use of the [V2 tectonic CLI](../../ref/v2cli.md),
15+
> invoked using the `tectonic -X` flag or `nextonic` command alias.
1616
1717
## Setup
1818

@@ -32,16 +32,16 @@ have to modify the `TeX-engine-alist` varible.
3232
* The second element is a string with the name of the TeX distribution.
3333
* The third element is the shell command for compiling plain TeX documents.
3434
* The fourth element is the shell command for compiling LaTeX documents. Here we
35-
are assuming the user is using a Tectonic project (generated using `nextonic
35+
are assuming the user is using a Tectonic project (generated using `tectonic -X
3636
new <proj-name>`).
3737
* The last element is the shell command for compiling ConTeXt documents, left
3838
unconfigured for now.
3939

4040
```lisp
4141
(setq TeX-engine-alist '((default
4242
"Tectonic"
43-
"nextonic compile -f plain %T"
44-
"nextonic watch"
43+
"tectonic -X compile -f plain %T"
44+
"tectonic -X watch"
4545
nil)))
4646
```
4747

@@ -88,7 +88,7 @@ And that is all! You should now be able to
8888
### Compile LaTeX outside a Tectonic project
8989

9090
To do this, you can simply invoke `M-x TeX-command-master`, and the select the
91-
`Other` option, passing in the compile command `nextonic compile -f latex <name
91+
`Other` option, passing in the compile command `tectonic -X compile -f latex <name
9292
of file>`.
9393

9494
> **Caution**: Compiling a document with multiple LaTeX files in this manner

0 commit comments

Comments
 (0)