Re: ox-html: exporting LaTeX-environments

2022-04-11 Thread Thibault Marin
Hi Vitus, list. My memory is quite fuzzy on this and I won't have a chance to take a deep look until later, but I will try to share the information I have. On Mon, 11 Apr 2022 19:38:13 + (9 hours, 37 minutes, 37 seconds ago), Vitus Schäfftlein wrote: Dear org-mode mailing list,

Re: #+latex_header blocks, or, managing lots of LaTeX headers

2022-04-11 Thread Vikas Rawal
For a major project like this, I would just put these in a separate file, and include it using #+INCLUDE: Vikas On Tue, 12 Apr 2022 at 06:37, William Denton wrote: > I have another question related to managing a book I'm doing building for > export > to LaTeX: what do people do for managing

#+latex_header blocks, or, managing lots of LaTeX headers

2022-04-11 Thread William Denton
I have another question related to managing a book I'm doing building for export to LaTeX: what do people do for managing all of the headers? I have about 30 #+latex_header lines in the project I'm working on, and I'm still just working on it as a basic article. When I'm ready to do more

Re: `M-x org-open-at-point` on `[[file:/path/file.hs][name]]` says: "Running less /home/path/file.hs"

2022-04-11 Thread chris
On Wednesday, 6 April 2022 19:26:38 CEST chris wrote: > [was: Issue with internal directory links] > > > Hi Jonathan, > > > > Jonathan Fox writes: > >> Here's a link I'm using: > >> > >> [[./templates][Templates]] > > I have similar issue with `[[file:/path/file.hs][name]]` > `M-x

[BUG] Incorrect timestamp face in a heading if previous body contains link to such a heading [9.5.2 (release_9.5.2-25-gaf6f12 @ /usr/share/emacs/28.1/lisp/org/)]

2022-04-11 Thread Hanspeter Gisler
OBSERVED BEHAVIOR = The following 2 files 'correct_face_rendering.org' and 'incorrect_face_rendering.org' render the 3rd headings timestamp face differently, once correctly and once incorrectly. correct_face_rendering.org -- * ~ [2022-04-11 Mo] teading 1

ox-html: exporting LaTeX-environments

2022-04-11 Thread Vitus Schäfftlein
Dear org-mode mailing list, first of all I want to express my appreciation for your work and the efforts you put into getting org-mode together! You guys are awesome. I’m writing to you because I am setting up my blog, for which I need fully-fledged LaTeX support, so I am inserting my code via

Re: [DRAFT][PATCH] org-encode-time compatibility and convenience helper

2022-04-11 Thread Paul Eggert
On 4/11/22 08:22, Max Nikulin wrote: + (defmacro org-encode-time ( time) +(pcase (length time) + (1 `(encode-time ,(car time))) + (6 `(encode-time (list ,@time nil -1 nil))) + (9 `(encode-time (list ,@time))) After seeing this code and thinking about it a bit more I now

[PATCH] org-todo-yesterday: Fix interactive arg when in agenda buffer

2022-04-11 Thread Aaron L. Zeng
* lisp/org.el (org-todo-yesterday): Fix an incorrect use of apply when org-todo-yesterday intends to call org-agenda-todo-yesterday with the same interactive arg. Before this change, the command incorrectly set the todo state of the task to blank when called with C-u C-u C-u in an agenda buffer

[DRAFT][PATCH] org-encode-time compatibility and convenience helper

2022-04-11 Thread Max Nikulin
Hi, After a recent report of incorrect daylight saving time handling in agenda: Ignacio Casso [BUG] org-agenda thinks timestamps after 23:00 correspond to the next day Tue, 29 Mar 2022 15:09:10 +0200

Suggestions to handle LaTeX environments in ox-html

2022-04-11 Thread Vitus Schäfftlein
Dear org-mode mailing list, dear Thibault, first of all I want to express my appreciation for your work and the efforts you put into getting org-mode together! You guys are awesome. My name is Vitus, and I'm writing to you because I am setting up my blog, for which I need fully-fledged LaTeX

Re: What's the flow for adding info: links in Org documents?

2022-04-11 Thread Max Nikulin
On 11/04/2022 19:47, Kaushal Modi wrote: On Mon, Apr 11, 2022 at 8:35 AM Kaushal Modi wrote: I believe I am missing out something basic with inserting info: links in Org documents. Yes, I was missing out on something :) To my future self: 1. When in Info buffer, do M-x org-store-link

Re: [FR] Please consider adding "none" as option for ':mode' table LaTeX attribute

2022-04-11 Thread Paul Van Gelder
Hello Eric, Thank you very much: that did it :-). Should have known there is always already a way! Kind regards, Paul Sent from my iPhone > On 11 Apr 2022, at 13:06, Eric S Fraga wrote: > > Hi Paul, > >> On Monday, 11 Apr 2022 at 12:08, Paul van Gelder wrote: >> First, to manually delete

Re: What's the flow for adding info: links in Org documents?

2022-04-11 Thread Kaushal Modi
On Mon, Apr 11, 2022 at 8:35 AM Kaushal Modi wrote: > I believe I am missing out something basic with inserting info: links > in Org documents. Yes, I was missing out on something :) To my future self: 1. When in Info buffer, do M-x org-store-link (typically a user binds this to C-c l:

What's the flow for adding info: links in Org documents?

2022-04-11 Thread Kaushal Modi
Hello all, I believe I am missing out something basic with inserting info: links in Org documents. The info links look like: [[info:org#External links]] But if I am on that Info node and I hit `w' to copy the node reference, this gets copied: "(org) External Links" So when I insert a link

Bug: Changed behaviour of org-at-timestamp-p after recent change

2022-04-11 Thread Anders Johansson
Hi, I noticed that this commit: b1a570b3b org-agenda: Fix regression when diary sexp timestamps are ignored made a call like (org-at-timestamp-p 'agenda) match against the regexp `org-element--timestamp-regexp`. However, this regexp doesn’t have the match groups setup as the others

Re: About babel and header arguments

2022-04-11 Thread Henrik Frisk
> > #+begin_src scheme :var y=10 :results value > > (+ 10 y) > > #+end_src > > > > #+RESULTS: > > : 10 > > I'm surprised by this one - shouldn't we expect the result 20 ? > Hi Neil, yes, that was a typo, I pasted in the wrong result. Sorry for the confusion! /h

Re: [FR] Please consider adding "none" as option for ':mode' table LaTeX attribute

2022-04-11 Thread Eric S Fraga
Hi Paul, On Monday, 11 Apr 2022 at 12:08, Paul van Gelder wrote: > First, to manually delete the following three lines from the .tex file: If you add these options to the ATTR_LATEX line: :float nil :center nil you should get what you wanted. -- : Eric S Fraga, with org

[FR] Please consider adding "none" as option for ':mode' table LaTeX attribute

2022-04-11 Thread Paul van Gelder
Hello all, This is my first time mailing to the orgmode mailing list; I've read the mailing list entry at orgmode.org and I've searched for an answer online, but please accept my apologies if this mail doesn't comply with the list etiquette after all. I am trying to export tables from orgmode