From: lisa-asket@perso.be
To: "Bruno Barbier" <brubar.cs@gmail.com>,
moasenwood@zoho.eu, help-gnu-emacs@gnu.org
Subject: Exporting form emacs texinfo-mode to dvi, pdf, and html
Date: Sat, 26 Jun 2021 21:38:46 +0200 (CEST) [thread overview]
Message-ID: <ea-mime-60d78246-442b-107b5da1@www-7.mailo.com> (raw)
In-Reply-To: <60d77fb4.1c69fb81.c79b6.7dc5@mx.google.com>
Seems to work using
M-x compile
texi2pdf myfile.texi
But I cannot find the generated pdf file.
From: Bruno Barbier <brubar.cs@gmail.com>
To: lisa-asket@perso.be;
moasenwood@zoho.eu;
help-gnu-emacs@gnu.org
Subject: Re: Exporting form emacs texinfo-mode to dvi, pdf, and html
Date: 26/06/2021 21:37:30 Europe/Paris
lisa-asket@perso.be writes:
> If you want mo to perform as well as others, you are looking for a disappointment.
>
> Don't know anything about make.
>
>
>
> If I do M-x compile and enter "make -j 4 -s -k" emacs complains with
>
>
>
> make -j 4 -s -k
> make: *** No targets specified and no makefile found. Stop.
>
You don't need 'make'. The 'compile' function accepts any shell command.
Just type:
M-x compile
then, when prompted, enter:
texi2pdf myfile.texi
If that works for you, you could follow Eli advice, and put the
following line, at the top of you file, to define the variable
'compile-command':
-*- compile-command: texi2pdf myfile.texi -*-
at the top of your file, so that you don't have to enter it manually
each time.
If you want to do this for every texinfo file, then, you may teach Emacs
to configure it for you, using a texinfo mode hook.
Bruno
>
>
>
>
>
> From: Emanuel Berg via Users list for the GNU Emacs text editor <help-gnu-emacs@gnu.org>
> To: help-gnu-emacs@gnu.org
> Subject: Re: Exporting form emacs texinfo-mode to dvi, pdf, and html
> Date: 26/06/2021 20:03:00 Europe/Paris
>
> lisa-asket wrote:
>
>> Ok, let's do it. It also says one can use mode hooks to
>> specify it in certain modes, like this:
>>
>> (add-hook 'c-mode-hook
>> (lambda ()
>> (unless (or (file-exists-p "makefile")
>> (file-exists-p "Makefile"))
>> (setq-local compile-command
>> (concat "make -k "
>> (if buffer-file-name
>> (shell-quote-argument
>> (file-name-sans-extension buffer-file-name))))))))
>
> You don't need any of that because the `compile-command', e.g.
> "make -j 4 -s -k " that can be the same for every mode or
> programming language or formatting you do.
>
> Also there's no need to look for a Makefile because it looks
> in the same directory as the buffer for one and if there is
> one, that's where it happens.
>
> Time to step up your game :(
>
> --
> underground experts united
> https://dataswamp.org/~incal
next prev parent reply other threads:[~2021-06-26 19:38 UTC|newest]
Thread overview: 52+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-06-24 23:56 Exporting form emacs texinfo-mode to dvi, pdf, and html lisa-asket
2021-06-25 6:34 ` Eli Zaretskii
2021-06-26 0:36 ` lisa-asket
2021-06-26 2:53 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-26 6:10 ` Eli Zaretskii
2021-06-26 14:16 ` lisa-asket
2021-06-26 14:21 ` Eli Zaretskii
2021-06-26 15:20 ` lisa-asket
2021-06-26 15:24 ` Eli Zaretskii
2021-06-26 15:28 ` lisa-asket
2021-06-26 15:30 ` lisa-asket
2021-06-26 15:38 ` Eli Zaretskii
2021-06-26 15:45 ` lisa-asket
2021-06-26 15:54 ` Eli Zaretskii
2021-06-26 16:04 ` lisa-asket
2021-06-26 18:03 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-26 18:43 ` lisa-asket
2021-06-26 19:37 ` Bruno Barbier
2021-06-26 19:38 ` lisa-asket [this message]
2021-06-26 19:56 ` lisa-asket
2021-06-26 21:31 ` lisa-asket
2021-06-26 20:02 ` Bruno Barbier
2021-06-26 21:38 ` lisa-asket
2021-06-26 22:22 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-26 22:30 ` lisa-asket
2021-06-27 5:07 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-28 6:17 ` Jean Louis
2021-06-28 8:01 ` lisa-asket
2021-06-28 14:02 ` Jean Louis
2021-06-28 16:36 ` lisa-asket
2021-06-30 15:36 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-30 18:53 ` lisa-asket
2021-07-01 18:05 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-30 21:30 ` Jean Louis
2021-07-01 18:09 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-04 10:59 ` Andreas Eder
2021-07-04 16:01 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-07-04 16:30 ` 2QdxY4RzWzUUiLuE
2021-06-26 19:57 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-26 20:17 ` lisa-asket
2021-06-26 22:20 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-26 22:27 ` lisa-asket
2021-06-27 5:02 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-26 22:42 ` lisa-asket
2021-06-27 8:17 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-26 22:51 ` lisa-asket
2021-06-26 19:54 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-26 17:55 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-26 15:27 ` lisa-asket
2021-06-26 17:57 ` Emanuel Berg via Users list for the GNU Emacs text editor
2021-06-26 17:52 ` Emanuel Berg via Users list for the GNU Emacs text editor
-- strict thread matches above, loose matches on Subject: below --
2021-06-25 1:57 lisa-asket
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ea-mime-60d78246-442b-107b5da1@www-7.mailo.com \
--to=lisa-asket@perso.be \
--cc=brubar.cs@gmail.com \
--cc=help-gnu-emacs@gnu.org \
--cc=moasenwood@zoho.eu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).