!rUhEinythPhVTdddsb:matrix.org

org-mode

860 Members
org-mode: digital and analog122 Servers

Load older messages


SenderMessageTime
15 Mar 2025
@0402-saline:matrix.org0402-saline *

May I clarify that arguements can infact be passed via noweb calls like so:

<<block-name(arg-1="string" ag-2=10)

It seems like the manual:
https://orgmode.org/manual/Noweb-Reference-Syntax.html
Says you can do this but I am having a hell of time getting it to work. I have a block that I am inserting and evals correctly (ie. using default values) if I omit the arg passing but once I include that arguments nothing is inserted and there are no errors.

Or in tinkering with various babel headers it does subsistute in the result of the lisp but the passed args fail to override the default values.

23:43:04
@0402-saline:matrix.org0402-saline *

May I clarify that arguements can infact be passed via noweb calls like so:

<<block-name(arg-1="string" ag-2=10)

It seems like the manual:
https://orgmode.org/manual/Noweb-Reference-Syntax.html
Says you can do this but I am having a hell of time getting it to work. I have a block that I am inserting and evals correctly (ie. using default values) if I omit the arg passing but once I include that arguments nothing is inserted and there are no errors.

Or in tinkering with various babel headers it does subsistute in the result of the lisp but the passed args fail to override the default values or overrides one default but no the other.

23:46:20
16 Mar 2025
@z:freelanguagetools.orgz

It seems to be spending a lot of time on the following:

β›” Warning (org-element): org-element--cache: Org parser error in notes.org::203924. Resetting.
 The error was: (error "org-element: Parsing aborted by user.  Cache has been cleared.
If you observe Emacs hangs frequently, please report this to Org mode mailing list (M-x org-submit-bug-report)")
 Backtrace:
nil
 Please report this to Org mode mailing list (M-x org-submit-bug-report).
β›” Warning (org-element): org-element--cache: Org parser error in notes.org::203924. Resetting.
 The error was: (error "org-element: Parsing aborted by user.  Cache has been cleared.
If you observe Emacs hangs frequently, please report this to Org mode mailing list (M-x org-submit-bug-report)")
 Backtrace:
nil
 Please report this to Org mode mailing list (M-x org-submit-bug-report).

02:34:05
@z:freelanguagetools.orgz *

It seems to be spending a lot of time on the following:

 Please report this to Org mode mailing list (M-x org-submit-bug-report).
β›” Warning (org-element): org-element--cache: Org parser error in notes.org::203924. Resetting.
 The error was: (error "org-element: Parsing aborted by user.  Cache has been cleared.
If you observe Emacs hangs frequently, please report this to Org mode mailing list (M-x org-submit-bug-report)")
 Backtrace:
nil
 Please report this to Org mode mailing list (M-x org-submit-bug-report).

02:34:33
@z:freelanguagetools.orgz *

It seems to be spending a lot of time on the following:

β›” Warning (org-element): org-element--cache: Org parser error in notes.org::203924. Resetting.
 The error was: (error "org-element: Parsing aborted by user.  Cache has been cleared.
If you observe Emacs hangs frequently, please report this to Org mode mailing list (M-x org-submit-bug-report)")
 Backtrace:
nil
 Please report this to Org mode mailing list (M-x org-submit-bug-report).

02:34:44
@z:freelanguagetools.orgzmy guess is that it is related to the equation numbering02:37:07
@z:freelanguagetools.orgzRedacted or Malformed Event02:43:36
@mrtnmrtn:matrix.orgMrtn
In reply to z
on a second thought, perhaps it's not too small, but I would rather increase the font weight

hi, I'm trying out karthink's new latex preview branch. How to make the preview bigger? on a second thought, perhaps it's not too small, but I would rather increase the font weight

Have you tried customising the relevant faces?

08:58:04
@z:freelanguagetools.orgzare they even emacs faces? I thought it's latex11:25:46
@mrtnmrtn:matrix.orgMrtn

Are you talking about the preview or the final output?

13:32:57
@mrtnmrtn:matrix.orgMrtnAre you talking about the preview or the final output? (I was under the impression, you asked about the preview).13:34:37
@z:freelanguagetools.orgzclipboard.png
Download clipboard.png
18:53:12
@z:freelanguagetools.orgzthe svg previews, the font is too thin compared to the surrounding font when editing in emacs.18:54:41
17 Mar 2025
@cerem0ny:matrix.orgcerem0ny joined the room.04:39:06
18 Mar 2025
@akater:matrix.orgakater

Adapting LaTeX code to match the weight and slant of surroundings would surely be fun.

I don't think I ever saw anyone doing this in a real text. Once, maybe. That would be a unique Org Mode feature.

20:14:40
19 Mar 2025
@jautero:hacklab.fijauteroWhat about the other way around? You could make surrounding font thinner by customizing emacs face. 14:11:44
@dadinn:matrix.orgdadinn changed their profile picture.18:05:43
@dadinn:matrix.orgdadinn changed their profile picture.18:05:52
@dadinn:matrix.orgdadinn changed their profile picture.18:06:00
@dadinn:matrix.orgdadinn changed their profile picture.18:06:11
20 Mar 2025
@hughjfchen:matrix.orghughjfchen joined the room.06:49:44
@cmc:vern.cccmc joined the room.21:00:37
21 Mar 2025
@dpflug:pub.solardpflug joined the room.13:45:47
@trevdev:matrix.orgtrevdev Is there some way to keep the #+begin_src and #+end_src tags in the org html export? 22:20:06
22 Mar 2025
@cmc:vern.cccmc Meaning you want them to be visible to the reader? You could use CSS and define pre::before { content: "#+begin_src" } and pre::after { content: "#+end_src" }. 03:51:49
@trevdev:matrix.orgtrevdevThat's where I landed. I just didn't want to have to do it for all the different language types. Thank you πŸ˜„03:52:34
@trevdev:matrix.orgtrevdev

cmc: With a catch all:

.org-src-container {
  font-family: "Jetbrains Nerd Font Mono";
  margin: 1em 0;
  color: var(--gray2);
}

.org-src-container::before {
  content: "#+begin_src"
}

.org-src-container:has(> .src-nim)::before {
  content: "#+begin_src nim"
}

.org-src-container::after {
  content: "#+end_src"
}
04:30:50
@cmc:vern.cccmc Yep that should work. I can’t recall if it exports the org-sec-containers as blocks or not, so you might need to add display: block to those as well. 04:42:05
23 Mar 2025
@bikooo2:matrix.org@bikooo2:matrix.org left the room.15:47:11
@matt11:matrix.orgElbrusmatt changed their display name from Elbrusmatt11 to Elbrusmatt.22:59:26

Show newer messages


Back to Room ListRoom Version: 1