Yeah, pretty much! Thanks for the example.
As for control sum, perhaps file and directory mtimes would be sufficient.
>From experience, something like (secure-hash 'sha1) takes whole seconds to do
on all my files, which would reduce the frequency of times you can check for
changes if you don't
/blob/main/org-mem-parser.el) is only about 600
> > lines long, whereas Org-mode’s parser seems larger and possibly more
> > scattered? Are they roughly equivalent in scope/intent, or is your version
> > focused on a different subset of Org features?
>
> Hi,
>
> I am not Marti
do wonder if it'd make
sense for Org itself to have such an API (think a thin wrapper around
org-element-parse-buffer results), because then org-agenda / org-ql / etc could
be rewritten to make use of it, solving their perf issues no matter how many
files you feed in.
Martin
On Fri, 23
rking with a cached parse tree
for a given file, without ever opening that file.
- Packages can then query things like "is there an active timestamp anywhere in
these 2,000 files" and get an instant answer.
Before I write code -- is that realistic to do?
Martin Edström
Ihor Radchenko writes:
> Fixed, on main.
> https://git.savannah.gnu.org/cgit/emacs/org-mode.git/commit/?id=6daeb5da62
Confirmed. Thank you, Ihor!
-Martin
le, if you type "Emacs", press TAB and attempt to select the
heading "Emacs Usage" in the Completions buffer by pressing
"M-", the text after the minibuffer prompt will be
"EmacsEmacs Usage", which doesn't match any headings.
You will
My package [1] does create :CREATED: properties by default, but only inactive
timestamps, and definitely not when scheduling.
So that's probably not it, but if you do have it installed... let me know, as
that could be worth a double-check.
[1] https://github.com/meedstrom/org-node
On Mon, 03
> Martin, may you install your part of the patch for Emacs?
Installed on master. Please check.
martin
> Martin, may you install your part of the patch for Emacs?
> Once done, I will go ahead and commit my part of the change to the
> development version of Org.
I'll do that as soon as I've fixed my commit disorder.
martin
>> Hmmm... This is not really what 'display-buffer' is supposed to do. I
>> have to disguise the fact that we wanted to display BUFFER. I attach a
>> new patch.
>
> Now, when you said that, it does feel not right indeed.
>
> What I was concerned about is the situation my request originated from
attached.
>> > 1. If there is a window displaying BUFFER, switch to that window
>> > 2. If there is a window that is an indirect buffer of BUFFER or that
>> > shares the same base buffer with BUFFER, switch to that window
>>
>> I included the facility that if there is a window whose buff
> To be 100% clear, let me try to restate exactly what I have in mind.
>
> I want to call something like
>
> (pop-to-buffer BUFFER
> '((display-buffer-reuse-window display-buffer-pop-up-window)
> (reuse-indirect . t)))
>
> 1. If there is a window displaying BUFFER, switch to that windo
want it to automatically detect
that if a base buffer has been displayed in a window earlier and BUFFER
is an indirect buffer sharing that base buffer, then it should try to
use that window for the indirect buffer. Is that assumption correct?
martin
> It's possible to select the necessary window by using 'pop-to-buffer'
> while displaying the non-selected window with a simple 'display-window'.
'display-buffer'
I suppose.
martin
Bruno Barbier writes:
> The HTML fontification is launching REPLs, and *may* prompts
> for the implementation to use. I'm able to work around this with this
> setting:
>
> (setq geiser-mode-auto-p nil)
>
> I'm not sure what the real solution should be though.
Thanks a lot for the workaround!
Bruno Barbier writes:
> My patch fixes a real bug though. Are you sure org is using the correct
> scheme implementation when doing "C-c C-c" ?
I think it works fine if you set the `org-babel-load-languages' variable
in the elisp code block:
(org-babel-do-load-languages 'org-babel-load-
Bruno Barbier writes:
> I've installed chez and racket. Indeed, the argument :session
> if half-ignored.
>
> I've attached a quick ugly hack; with that change, it is now working
> for me.
>
> #+begin_src scheme :scheme racket
> (banner)
> #+end_src
>
> #+RESULTS:
> : Welcom
Sorry, I forgot to reply to the list.
Roi Martin writes:
> Hi Bruno,
>
> Bruno Barbier writes:
>
>> According to the current source code, you should be able to pick the
>> scheme implementation using the :scheme argument (either per block, per
>> heading, or p
Hello,
I have an org document with the following structure:
---
Racket code block:
#+begin_src scheme
#lang racket
(+ 1 2)
#+end_src
Chez Scheme code block:
#+begin_src scheme
(+ 3 4)
#+end_src
---
It includes several code blocks with different scheme implementations
(e.g. Racket and Ch
This is not a bug that breaks normal use of org-id, but it may affect
downstream uses.
An example is my package org-node, which checks file names known to org-id, and
combines that with other sources of information, to build a big file list.
This list is automatically de-duplicated because I ca
Sorry, I have to add a reproduction step: turn on M-x visual-line-mode.
Anyway, it's not an Org bug. Reported upstream:
https://debbugs.gnu.org/cgi/bugreport.cgi?bug=72420
Martin Edstrom
On Mon, 29 Jul 2024 12:52:55 +0200 (CEST), "Martin Edström"
wrote:
> Hello, pingi
I'm reading the org-indent source code, and it seems to use the Emacs built-in
text properties "line-prefix" and "wrap-prefix". So these could be considered
Emacs bugs rather than Org bugs, possibly.
Martin Edstrom
On Fri, 26 Jul 2024 13:52:50 -0400, Sean Devlin wrote
Hello, pinging back on two old emails that seem related:
https://lists.gnu.org/archive/html/emacs-orgmode/2008-01/msg00030.html
https://lists.gnu.org/archive/html/emacs-orgmode/2011-05/msg00654.html
A bug that can be reproduced on Emacs -Q:
- Open an org file that has subtrees at various levels
The property drawer has to come first for technical reasons. Just try manually
moving the property drawer beneath the title, then do
M-: (org-entry-get nil "ID")
and what do you get? Nil.
Martin
On Mon, 29 Jul 2024 18:02:35 +0200, Sébastien Gendre wrote:
> Hello,
>
aintenance burden. I got
the impression it was only added due to org-roam, but it does not actually need
them. It works fine with a traditional top-level heading instead of a #+title.
Martin Edström
On Mon, 29 Jul 2024 19:15:05 +0200, Sébastien Gendre wrote:
>
> I get nil.
>
The property drawer has to come first for technical reasons. Just try manually
moving the property drawer beneath the title, then do
M-: (org-entry-get nil "ID")
and what do you get? Nil.
Martin
On Mon, 29 Jul 2024 18:02:35 +0200, Sébastien Gendre wrote:
> Hello,
>
>
&g
Hello, pinging back on two old emails that seem related:
https://lists.gnu.org/archive/html/emacs-orgmode/2008-01/msg00030.html
https://lists.gnu.org/archive/html/emacs-orgmode/2011-05/msg00654.html
A bug that can be reproduced on Emacs -Q:
- Open an org file that has subtrees at various levels
>>>>> "Fraga," == Fraga, Eric writes:
Fraga,> On Thursday, 30 May 2024 at 07:03, Martin Steffen wrote:
>> [...] #+macro: target {{{source({{{year}}})}}}
Fraga,> So, the problem you are running into is that you cannot
Fraga,> eval
d)
- [for the year 24](./{{{year}}}/t.md)
i.e, the argument (intended to be 24) is properly replaced in ``text
part'' but not in the `` link'' part.
I don't know if I simply expect ``too much'' from the macro-expansion
facilities best, Martin
>
ng the manual), so
I thought perhaps nesting is not possible (or there is another way).
Your suggestion solves my "problem" and makes the set-up a bit more
"parametric" and easier to adapt, without that one forgets some bits,
which is very nice.
best, Martin
Fraga,> it hel
like
[[parametricexercizes(fall24)][the exercises are here]]
and the combination of macros inside [[ ]] does not work either.
Maybe there are other ways to achieve ``parametrization'' (or maybe not,
I have not worked much with macros in Org), any ideas?
best, Martin
On Fri, Apr 05 2024, Ihor Radchenko wrote:
> Martin Kjær Jørgensen writes:
>
>> I had an agenda view opened for a while, went away, came back to toggle a
>> task DONE by using C-c C-t as usual. Normally have not seen any errors. Now
>> this occured, and Ema
I had an agenda view opened for a while, went away, came back to toggle a
task DONE by using C-c C-t as usual. Normally have not seen any errors. Now
this occured, and Emacs asked me to report it:
Warning (org-element-cache): org-element--cache: Org parser error in
tasks.org::#. Resetting.
Th
Ihor Radchenko wrote:
> Martin Kampas writes:
> > Subject: [PATCH] org-bibtex-yank: Allow to populate existing item
>
> Applied, onto main, with amendments.
> I changed the argument name from NONEW to UPDATE-HEADING and
updated the
> commit message.
> https://git.savanna
}
))
On Wed, Feb 21, 2024 at 15:38 Max Nikulin wrote:
> On 19/02/2024 02:36, Martin Edström wrote:
> > +Since this is a shell-command, remember to use single-quotes
> > +around \\='%i\\=', not double-quotes! Else a math fragment such
> > +as \"$y = 200$\"
And ignore my suggestion about stripping input on the Elisp side.
Didn't think that through.
On Wed, 21 Feb 2024 at 16:04, Martin Edström wrote:
>
> Actually, I agree about your test case, that looks like it'd cause a problem.
>
> So we patch the function to use `shell-q
Actually, I agree about your test case, that looks like it'd cause a problem.
So we patch the function to use `shell-quote-argument'?
On Wed, 21 Feb 2024 at 15:38, Max Nikulin wrote:
>
> On 19/02/2024 02:36, Martin Edström wrote:
> > +Since this is a shell-command, remembe
))
>
> Why do you bind noindent here?
It says nothing about (re)indenting the existing entry, so my feeling was it
would be
better to avoid doing that if there is no way to override. Now if you need to
ask about it, it
seems it is not really an issue, so I removed it, hardcoding nil ther
Here you go!
Tests passed (14 SKIPPED), compiled fine. I've made no prior
contributions and this changes 5 lines. I'm ok if you want to rephrase
it in any way.
Martin
On Sun, 18 Feb 2024 at 19:56, Martin Edström wrote:
>
> I will try to do a patch, thanks for the link. Stay t
I will try to do a patch, thanks for the link. Stay tuned.
On Sun, Feb 18, 2024 at 15:06 Ihor Radchenko wrote:
> Martin Edström writes:
>
> > I've just been struggling with my custom setting for
> > `org-latex-to-html-convert-command` outputting many math snippets
> &
I've just been struggling with my custom setting for
`org-latex-to-html-convert-command` outputting many math snippets
wrong. The fault was mine: I didn't correctly shell-quote the input.
I propose to add a warning in the docstring, because many people will
trip the same problem.
The thing is that
name on
the first page. And the date of my signature is "January 29, 2022".
This copy doesn't have the Deputy Director's signature.
--
Best regards,
Martin Marshall
ml#copyright
Thanks, I submitted a copyright assignment a year or two ago with
respect to a pull-request submitted for the which-key package. Not sure
if it's project-specific, or if I'll need to submit a separate one
(which I'm happy to do of course).
--
Best regards,
Martin Marshall
ks
in the same way. So I might submit a patch for that as well soon.
--
Best regards,
Martin Marshall
Hi,
The attached patch allows to use org-bibtex-yank to
populate an existing item instead of creating a new one,
aligning its behavior with org-bibtex-create.
BR,
Martin Kampas
>From 96af3ef46bb056e58206af77d3d37c5af2e43d7f Mon Sep 17 00:00:00 2001
From: Martin Kampas
Date: Mon, 12 Feb 2
>From 9b9e8ead6c175c76e4f37273a4e4f29b8e41b4f9 Mon Sep 17 00:00:00 2001
From: Martin Marshall
Date: Sun, 11 Feb 2024 12:36:46 -0500
Subject: [PATCH] org-ctags: Fix regexp to not break radio-target links
* org-ctags.el (org-ctags-tag-regexp): Add left angle-bracket to
excluded characters for
>From 24d731457433b333b28845e6140532bad790800e Mon Sep 17 00:00:00 2001
From: Martin Marshall
Date: Sat, 10 Feb 2024 23:02:34 -0500
Subject: [PATCH] org-ctags: Use `completing-read' if `ido-mode' is off
* org-ctags.el (org-ctags-find-tag-interactive): Only use
`ido-completing-read&
me other package that provides a similar feature?
[1] Commit 53868111d000302b50706769526f15164600d739
[2]
https://www.reddit.com/r/emacs/comments/fg71cw/orgctags_failed_to_create_tags/
[3] That look like <>. See https://orgmode.org/manual/Internal-Links.html
--
Best regards,
Martin Marshall
s:
"--regex-orgmode=\"%s\" -f \"%s\" -e -R %s")
It works as expected.
I've attached a patch against the current Emacs master branch. I hope
that's sufficient, given the minimal nature of the change.
Emacs : GNU Emacs 30.0.50 (build
g we have about MELPA in
https://ess.r-project.org/Manual/readme.html#Installing-from-a-third_002dparty-repository
satisfactory?
Thank you, Ihor, for your contributions!
Best,
Martin
--
Martin Maechler
ETH Zurich, Switzerland
ents the
muddled outlook access would even be acceptable for me, who
cares. Unfortunately, there are many emails (from inside the
organization, a university) that are individual, relevant, and at times
urgent and requiring (re-)action and preferably efficient
organization, overview, and handling, but I
for approaches. My
current goal is not to get access to the server enabled properly again,
but to get the emails (automatically) off the server, like 20+ years
ago, when internet and access to servers was unrealiable over "modem"
dial-ups. So back to the future, so to say.
best, Martin
> I am unable to reproduce using both stable and main branches.
>> PS: My org version is Org mode version 9.5.2
>> (release_9.5.2-286-gd01235)
> This is not the latest version of Org. You can try to upgrade.
Thanks a lot. Seems like updating the org-setting did the trick al
pecific
md-prefix between
+begin_export markdown
+end_export
to tweak things for jekyll. But the org-part is easy, and for me it
works smooth.
In a different response, HUGO was mentioned. I don't have experience
with HUGO, but it's probably comparable to jekyll.
Martin
Marc
specialized issue-trackers, in the last course, github-issues .
best, Martin
>>>>> "Marko" == Marko Schuetz-Schmuck writes:
Marko> Dear All,
Marko> I teach some software engineering courses and in each of them
Marko> students work on semester-lo
very much for looking at this, please consider CCing me when
discussing the issue because I am not subscribed to the org-mode list.
Martin Jambor
Emacs : GNU Emacs 28.2 (build 1, x86_64-suse-linux-gnu, GTK+ Version 3.24.35
;
#+end_src
#+RESULTS: doublequotes
"line 1"
"line 2"
"line 3"
because org-babel-execute:shell does not process the output with
org-babel-read. I do not know if languages other than the C family (C, C++, D)
are affected.
At the very least, the documentation of org-babel-read should be expanded to
document the fact that if the CELL parameter starts with a double quote, it is
processed by the read function.
Best regards
Martin Jerabek
>writes:
> About the cultural thing... you seem to be a zero-counter (as I
I guess I am, by maybe have not been a zero-counter from the start, but
a 1-counter. I vaguely remember to have learnt (at school? beginning at
university?) that ``THE natural numbers'' (the ones Kronecker cla
ational folks (set
> theorists, math logicians -- that's the typical environment where
> you'd tend to stumble upon Peano) tend to favour starting at 0.
Foundational folks can elaborate on that analogy between lists and nats,
but as you say, in both cases they favor to includ
No idea.
Your subject made me think of an opera by Philip Glass:
https://en.wikipedia.org/wiki/Einstein_on_the_Beach
:-)
/Martin
On Wed, 15 Jun 2022 at 20:07, ypuntot wrote:
> If you wanted to play with Emacs on the beach or sitting in front of your
> home, what would be your emacser
while working on it.
Also \[ \] does proper indentation, but as said, I got used to C-x C-e
and that produces for me displaymath (probably it can be customized, but
I am happy with it as is).
Martin
>>>>> "Sébastien" == Sébastien Miquel writes:
S
I learned the hard way not to mix distro installed Python with pip
installed Python. I now always use "pip install --user
" to keep things sane.
/Martin
On Sat, 13 Nov 2021 at 03:29, Tim Cross wrote:
>
> Uwe Brauer writes:
>
> > Hi
> >
> > I am running U
ut in my latest pulled
version, it's gone (see also https://github.com/bzg/org-mode).
If course I can roll-back to an earlier revision or download one to get
back for instance ox-extra (which has a feature I rely on), but perhaps
there's something wrong.
Thanks, Martin
ine'' all that inside org (like doing a
\newcommand inside ``org'', it's just I prefer to keep all the stuff in
one (or more) latex files; for those parts I rely on latex (since org
does not bring much additional value to the table for the premable
stuff, at least
ns is vital.
I would not be surprised if some of that is somehow supported by org as
well (for TeX), only I have not figured it out, or perhaps I was too
lazy to figure it out how. Too lazy because LateX mode works for me fine
even for challenging and long documents (where for simpler ones or
features
you as author must to use to publish with us''.
Org (for the discussed usecase of exporting documents) is just a way to
produce LaTeX, latex takes care of portability and can assist with
uniformity and quality of type setting, but org intends (many) other
(useful) things.
Marti
y output", it's not about
"discipline", it offers freedom and encourages playing around with, and
people who like to work with org _like_ to play around with it and to
stuff with it that others did not though of.
That's why I have not dared to write challenging (latex) docu
bdb.
>
> Similarly for all the rest: you won't find any of them in any installation.
>
> --
> Nick
>
> "There are only two hard problems in computer science: cache
> invalidation, naming things, and off-by-one errors." -Martin Fowler
>
>
>
I have manually changed a clock date range in a task's logbook using the
shortcut =C-c .= (org-time-stamp). It modified the Org timestamp to the
date I wanted, but changed the enclosing markup from [] to <>. I didn't
pay much attention on it as C-c C-c (org-ctrl-c-ctrl-c) updated
correctly the to
sure. I think there is (or was) a functionality to
initiate a call (probably with skype or ekiga or some such) but I never
used that.
Basically, for phoning, for me it's more like a rolodex, but a fast and
big one
Martin
Ian> templating tool? Also, how do you start a phone c
t, it's included
(perhaps one has to set a variable like ``show-bbdb-anniversaries''
and/or load a corresponding elisp-addition.)
Martin
Eric> thank you, eric -- : Eric S Fraga via Emacs 28.0.50, Org
Eric> release_9.4.4-231-gf46925
27;' email.
Org is also bbdb-aware, insofar one can do those links: instead of
[[file:][yyy]] one can use [[bbdb:somecriterion]].
I don't know if it matches your needs, but I can't say bad things about
that bbdb-thing.
Martin
Fragtog?
https://github.com/io12/org-fragtog
Disclaimer: I have not managed to get it to work but then I have not tried
very hard.
/Martin
LaTeX export, but if one
would also want to export in HTML, the LaTeX expression is lost. I will
stay with the "multiple \textrm" solution for now.
Best,
Firmin
Eric S Fraga writes:
> On Sunday, 13 Dec 2020 at 02:30, Firmin Martin wrote:
>> Sometimes, we want to nest inl
Sometimes, we want to nest inline maths expression in \textrm to
handle spaces easily and avoid repetition.
Examples:
1. $A = \{n : \textrm{$n$ odd in $X$}\}$
2. $A = \{n : \textrm{\(n\) odd in \(X\)}\}$
3. \(A = \{n : \textrm{\(n\) odd in \(X\)}\}\)
4. \(A = \{n : \textrm{$n$ odd in $X$}\}\)
ar
Thank you Tomas, it works like a charm! Hope that it will be patched.
Best,
Firmin Martin
64-pc-linux-gnu, GTK+ Version 3.24.20,
cairo version 1.16.0)
of 2020-10-16
Package: Org mode version 9.4 (9.4-53-gc97446-elpa)
Best,
Firmin Martin
ld be a better default behaviour or the current behaviour
might even be a bug.
Thanks, Martin :)
Great, thanks, That was it. It never occured to me that it's not
begin_src that I wanted, I just tried to tweak that one.
So, indeed: #+begin_export markdown etc. is exactly what I need.
Thanks again.
Martin
>>>>> "Julius" == Julius Dittmar writes:
Julius
e block."
So that sounded like it had something to do with my issue. Actually, the
original value was 2, and I set it to 0. There was no effect, the
indentation, when doing export, is still 4, as it was before setting
that to 0.
Any ideas? Thanks, Martin
,
*Martin Schröder*
*Embedded Systems Consultant, Firmware Expert*
Tel: +46-733-38-76-94
LinkedIn: https://www.linkedin.com/in/martinschroder/
*Learn How To Build Embedded Products From Step 1 to Step 90:*
https://swedishembedded.com/learn/
Hi Kyle,
You are right, I completely forgot about columns view under the "regular"
buffers.
Updated patch below.
BR,
Martin
>From 288c157ea95e00de4b508e0fd257b51857e097b9 Mon Sep 17 00:00:00 2001
From: Martin Kampas
Date: Mon, 19 Oct 2020 07:22:57 +0200
Subject: [PATCH] org-colv
Hi,
In columns view, all TODO keywords except those with face set explicitly with
org-todo-
keyword-faces are red. Done keywords should be green.
Patch below.
BR,
Martin
>From a4df0da1057afbe90ea0e457158082b15386a164 Mon Sep 17 00:00:00 2001
From: Martin Kampas
Date: Fri, 9 Oct 2020 07:43
nk to the documentation is a one-way link. I have to use the 'back'
functionality of my browser to get back to the main site.
That's all for now. I have not had time for anything ambitious such as
proof reading the text.
--
Martin Schöön
http://hem.bredband.net/b262106/index.html
org-fragtog maybe?
https://github.com/io12/org-fragtog
(I have not managed to make it work myself but I haven't tried hard.)
/Martin
On Wed, 27 May 2020 at 08:21, Faye Jackson
wrote:
> Hi!
>
> I think the subject of the post says it all. While using org-mode I often
> ha
happen.
But the second point is still relevant. I reported this issue to
~org-pdftools~ which inherit the issue from the unmaintained ~org-pdfview~ :
https://github.com/fuxialexander/org-pdftools/issues/35
Best,
Firmin Martin
vior. But this is a severe bug
that shouldn't happen.
Best,
Firmin Martin
lines. The arguments of the user supplied function
include tags, but not properties.
Thanks,
Martin
signature.asc
Description: PGP signature
Remember to cover the basics, that is, what you expected to happen and
what in fact did happen. You don't know how to make a good report? See
https://orgmode.org/manual/Feedback.html#Feedback
Your bug report will be posted to the Org mailing list.
enforce ending the
frame before the \lecture statement.
2. Would anybody be willing to implement \lecture and maybe \part in the
exporter?
Thanks a lot
Martin Gürtler
--
Prof. Dr. rer. nat. Martin Gürtler
Professur für Produktions- und Logistiksysteme
H T W K Leipzig
ss testing
#+BEGIN_SRC n3
My code
#+END_SRC
gives
My code
and, testing without ":textarea",
#+ATTR_HTML: :class testing
#+BEGIN_SRC n3
My code
#+END_SRC
gives
My code
Preferably, I want the following html:
My code
Is there a way to achieve this?
Thanks,
Martin
[1] https://org
Neil,
You could use transient[1], the tool used to build the menus of magit[2].
I really like magit's discoverability and ease of use.
There is a video of a talk where it is used to control kubernetes from
inside emacs in magit style:
https://www.youtube.com/watch?v=w3krYEeqnyk
[1] transient: ht
I'm getting this error when trying to export HTML from org-mode. Is this a
known issue? I haven't found any solutions via google.
Thanks
| 2.5 | | |
| | | | | |
screen shot
On Sat, Aug 3, 2019 at 2:58 PM Charles R (Charlie) Martin <
chasrmar...@gmail.com> wrote:
> I've got Org mode version 9.1.5 (9.1.5-1-gb3ddb0-elpa
>
>
> On Sat, Aug 3, 2019 at 2:24 PM John Kitchin
> wrote:
>
>> This looks lik
t; Org mode version 9.1.5 (release_9.1.5-1784-g772949 @
>> /home/neil/src/org-mode/lisp/)
>>
>> and I don't see the problem with that version. What version do you have?
>>
>>
>> On Sat, 3 Aug 2019 at 19:48, Charles R (Charlie) Martin <
>> chasrm
This seems like an unlikely bug because it's very basic to org-mode tables,
but if I'm doing something wrong I sure can't figure out what.
I have this table:
| Date | Count | Pages |
|+---+---|
| 2019-Aug-03 (Sat, 215) | 2069 | 7 |
|
Well Ken, you improved my workflow right there, I am going to add the
:prologue trick to my shell properties header and get the test error output
in the results block.
Thank you right back!
On Fri, Jul 26, 2019 at 10:18 AM Ken Mankoff wrote:
>
> On 2019-07-26 at 08:58 -04, Martin A
about this problem and provided a solution that may work for you, but I
have not tried it yet.
Martin
On Fri, Jul 26, 2019 at 7:02 AM Ken Mankoff wrote:
> Hi Martin,
>
> On 2019-06-26 at 18:09 -04, Martin Alsinet
> wrote...
> > I use a different approach, where I tangle
Dmitrii,
I use a different approach, where I tangle the source into files in modules
and then I import those modules from other blocks.
This allows me to organize my document with different sections for the code
and its tests, which then get exported into their corresponding files.
* Square Func
Maybe missing a "\usepackage{tikz}"?
(That caught me out)
--
Martin Schöön
1 - 100 of 583 matches
Mail list logo