* A quick LaTeX reference guide in Org
@ 2021-10-24 14:23 Juan Manuel Macías
2021-10-24 20:18 ` Tim Cross
` (2 more replies)
0 siblings, 3 replies; 10+ messages in thread
From: Juan Manuel Macías @ 2021-10-24 14:23 UTC (permalink / raw)
To: orgmode
Hi,
The TeXstudio editor includes a comprehensive LaTeX reference guide in
HTML
(https://github.com/texstudio-org/texstudio/blob/master/utilities/latexhelp.html).
I have converted it to Org with Pandoc (and then cleaned it up and fixed
some broken links). It can be downloaded here:
https://cloud.disroot.org/s/krGSf7TmFZRiyZL
I think it may be useful for a quick LaTeX query. You could even use
org-ql and define a function like this:
(require 'org-ql)
(defun my-latex-apropos ()
(interactive)
(let ((regexp (if (not (current-word t t))
(read-from-minibuffer "Find (regexp): ")
(read-from-minibuffer "Find: " (current-word t t)))))
(org-ql-search
"/path-to/latexreference.org"
`(regexp ,regexp))))
Best regards,
Juan Manuel
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: A quick LaTeX reference guide in Org
2021-10-24 14:23 A quick LaTeX reference guide in Org Juan Manuel Macías
@ 2021-10-24 20:18 ` Tim Cross
2021-10-25 11:35 ` Juan Manuel Macías
2021-10-25 0:42 ` Thomas S. Dye
2021-10-25 10:29 ` Eric S Fraga
2 siblings, 1 reply; 10+ messages in thread
From: Tim Cross @ 2021-10-24 20:18 UTC (permalink / raw)
To: emacs-orgmode
Juan Manuel Macías <maciaschain@posteo.net> writes:
> Hi,
>
> The TeXstudio editor includes a comprehensive LaTeX reference guide in
> HTML
> (https://github.com/texstudio-org/texstudio/blob/master/utilities/latexhelp.html).
> I have converted it to Org with Pandoc (and then cleaned it up and fixed
> some broken links). It can be downloaded here:
> https://cloud.disroot.org/s/krGSf7TmFZRiyZL
>
> I think it may be useful for a quick LaTeX query. You could even use
> org-ql and define a function like this:
>
> (require 'org-ql)
> (defun my-latex-apropos ()
> (interactive)
> (let ((regexp (if (not (current-word t t))
> (read-from-minibuffer "Find (regexp): ")
> (read-from-minibuffer "Find: " (current-word t t)))))
> (org-ql-search
> "/path-to/latexreference.org"
> `(regexp ,regexp))))
>
>
There is also a latex2e.info package 'out there'. I have it installed
from my Linux distro and find being able to run (info)Latex very useful
as a basic reference.
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: A quick LaTeX reference guide in Org
2021-10-24 20:18 ` Tim Cross
@ 2021-10-25 11:35 ` Juan Manuel Macías
2021-10-25 12:30 ` Eric S Fraga
0 siblings, 1 reply; 10+ messages in thread
From: Juan Manuel Macías @ 2021-10-25 11:35 UTC (permalink / raw)
To: Tim Cross; +Cc: orgmode
Tim Cross writes:
> There is also a latex2e.info package 'out there'. I have it installed
> from my Linux distro and find being able to run (info)Latex very useful
> as a basic reference.
Thank you very much for this information, I did not know it. I just saw
that there is a `latex2e-help-texinfo' package in my distro (Arch), not in
the official repositories but in the AUR. Very useful.
Best regards,
Juan Manuel
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: A quick LaTeX reference guide in Org
2021-10-25 11:35 ` Juan Manuel Macías
@ 2021-10-25 12:30 ` Eric S Fraga
2021-10-25 12:58 ` John Hendy
2021-10-25 14:10 ` Juan Manuel Macías
0 siblings, 2 replies; 10+ messages in thread
From: Eric S Fraga @ 2021-10-25 12:30 UTC (permalink / raw)
To: Juan Manuel Macías; +Cc: Tim Cross, orgmode
On Monday, 25 Oct 2021 at 11:35, Juan Manuel Macías wrote:
> Thank you very much for this information, I did not know it. I just saw
> that there is a `latex2e-help-texinfo' package in my distro (Arch), not in
> the official repositories but in the AUR. Very useful.
It's in CTAN, the official (?) LaTeX repository.
--
Professor Eric S Fraga
Fresa: https://tinyurl.com/5t8t5auv & doi:10.5281/zenodo.5045812
PGP/GnuPG key: 8F5C 279D 3907 E14A 5C29 570D C891 93D8 FFFC F67D
Latest paper (10 Sep 2021): doi:10.1016/j.nucengdes.2021.111432
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: A quick LaTeX reference guide in Org
2021-10-25 12:30 ` Eric S Fraga
@ 2021-10-25 12:58 ` John Hendy
2021-10-25 14:10 ` Juan Manuel Macías
1 sibling, 0 replies; 10+ messages in thread
From: John Hendy @ 2021-10-25 12:58 UTC (permalink / raw)
To: Juan Manuel Macías, Tim Cross, orgmode
On Mon, Oct 25, 2021 at 7:49 AM Eric S Fraga <e.fraga@ucl.ac.uk> wrote:
>
> On Monday, 25 Oct 2021 at 11:35, Juan Manuel Macías wrote:
> > Thank you very much for this information, I did not know it. I just saw
> > that there is a `latex2e-help-texinfo' package in my distro (Arch), not in
> > the official repositories but in the AUR. Very useful.
>
> It's in CTAN, the official (?) LaTeX repository.
As an arch user, just confirming. For what it's worth, the way to find
the package's "home base" is in the upstream url, which is as Eric
says.
https://aur.archlinux.org/packages/latex2e-help-texinfo/
"""
Upstream URL: https://ctan.org/pkg/latex2e-help-texinfo
"""
>
> --
> Professor Eric S Fraga
> Fresa: https://tinyurl.com/5t8t5auv & doi:10.5281/zenodo.5045812
> PGP/GnuPG key: 8F5C 279D 3907 E14A 5C29 570D C891 93D8 FFFC F67D
>
> Latest paper (10 Sep 2021): doi:10.1016/j.nucengdes.2021.111432
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: A quick LaTeX reference guide in Org
2021-10-25 12:30 ` Eric S Fraga
2021-10-25 12:58 ` John Hendy
@ 2021-10-25 14:10 ` Juan Manuel Macías
1 sibling, 0 replies; 10+ messages in thread
From: Juan Manuel Macías @ 2021-10-25 14:10 UTC (permalink / raw)
To: Eric S Fraga; +Cc: orgmode
Eric S Fraga writes:
> It's in CTAN, the official (?) LaTeX repository.
I just saw it now there. CTAN is an infinite bazaar :-)
By the way, in CTAN there is also the /TeX for the Impatient/ book (I
love that title), which is a very good manual for programming at low
level in TeX/plainTeX: https://www.ctan.org/pkg/impatient (it's more
concise than Knuth's /TeX book/, which I bought on paper a long time
ago, for 'historical' reasons...)
Best regards,
Juan Manuel
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: A quick LaTeX reference guide in Org
2021-10-24 14:23 A quick LaTeX reference guide in Org Juan Manuel Macías
2021-10-24 20:18 ` Tim Cross
@ 2021-10-25 0:42 ` Thomas S. Dye
2021-10-25 10:29 ` Eric S Fraga
2 siblings, 0 replies; 10+ messages in thread
From: Thomas S. Dye @ 2021-10-25 0:42 UTC (permalink / raw)
To: emacs-orgmode
Aloha Juan Manuel,
Juan Manuel Macías <maciaschain@posteo.net> writes:
> Hi,
>
> The TeXstudio editor includes a comprehensive LaTeX reference
> guide in
> HTML
> (https://github.com/texstudio-org/texstudio/blob/master/utilities/latexhelp.html).
> I have converted it to Org with Pandoc (and then cleaned it up
> and fixed
> some broken links). It can be downloaded here:
> https://cloud.disroot.org/s/krGSf7TmFZRiyZL
>
> I think it may be useful for a quick LaTeX query. You could even
> use
> org-ql and define a function like this:
>
> (require 'org-ql)
> (defun my-latex-apropos ()
> (interactive)
> (let ((regexp (if (not (current-word t t))
> (read-from-minibuffer "Find (regexp): ")
> (read-from-minibuffer "Find: " (current-word t t)))))
> (org-ql-search
> "/path-to/latexreference.org"
> `(regexp ,regexp))))
>
> Best regards,
>
> Juan Manuel
Such a handy utility! Thanks for sharing.
All the best,
Tom
--
Thomas S. Dye
https://tsdye.online/tsdye
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: A quick LaTeX reference guide in Org
2021-10-24 14:23 A quick LaTeX reference guide in Org Juan Manuel Macías
2021-10-24 20:18 ` Tim Cross
2021-10-25 0:42 ` Thomas S. Dye
@ 2021-10-25 10:29 ` Eric S Fraga
2 siblings, 0 replies; 10+ messages in thread
From: Eric S Fraga @ 2021-10-25 10:29 UTC (permalink / raw)
To: Juan Manuel Macías; +Cc: orgmode
Thank you for this. Very nice result.
--
: Eric S Fraga via Emacs 28.0.60, Org release_9.5-163-g4eab5b
: Latest paper written in org: https://arxiv.org/abs/2106.05096
^ permalink raw reply [flat|nested] 10+ messages in thread
* A quick LaTeX reference guide in Org
@ 2021-10-24 15:37 Emmanuel Charpentier
2021-10-25 3:55 ` Jean-Christophe Helary
0 siblings, 1 reply; 10+ messages in thread
From: Emmanuel Charpentier @ 2021-10-24 15:37 UTC (permalink / raw)
To: maciaschain, emacs-orgmode
"A quick LaTeX reference guide"...
Nice oxymoron !
--
Emmanuel Charpentier
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2021-10-25 14:13 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-24 14:23 A quick LaTeX reference guide in Org Juan Manuel Macías
2021-10-24 20:18 ` Tim Cross
2021-10-25 11:35 ` Juan Manuel Macías
2021-10-25 12:30 ` Eric S Fraga
2021-10-25 12:58 ` John Hendy
2021-10-25 14:10 ` Juan Manuel Macías
2021-10-25 0:42 ` Thomas S. Dye
2021-10-25 10:29 ` Eric S Fraga
-- strict thread matches above, loose matches on Subject: below --
2021-10-24 15:37 Emmanuel Charpentier
2021-10-25 3:55 ` Jean-Christophe Helary
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.