Unanswered Questions
307 questions with no upvoted or accepted answers
11
votes
0
answers
2k
views
Display all local variables within a edebug session
When using edebug one can get a local variable by command describe-variable (C-h v), but are there any ways to display all local variables?
For example in Python you can call locals() in a pdb ...
9
votes
0
answers
685
views
how to expand org-mode macros in HTML blocks in export to HTML?
I'd like to use org-mode macro replacement to expand macros inside HTML blocks in org-mode export to HTML.
I'd like this...
#+MACRO: event-url bar
#+HTML_HEAD: <meta property="og:url" content="...
9
votes
0
answers
642
views
org-mode ODT export template
I would like to export org file to ODT. Is there any nice ready to use ODT template that can be used for exported documents? Default template is not good looking. I had the same problem with html ...
9
votes
1
answer
1k
views
How to get org-mode fully support Arabic language for export?
My intention is to write Arabic document using org-mode. Please consider the following MWE, given that my configuration in init.el has below code to enable writing of Arabic script from right to left (...
7
votes
0
answers
928
views
latex inside table using table.el in org mode
I am trying to achieve multicolumn cells in org-mode tables like in Multicolumn cells in org-mode tables, but with Latex inside the cells.
* Minimal Example
+------------+-----------+-------------...
7
votes
0
answers
2k
views
"Creating pipe: too many open files" error when running org-publish on large project
I have an org project that has many .org files (more than 300). When I invoke org-publish in Emacs, after a while it aborts and shows:
...
...
Publishing file e:/git/blog.site.src/src/org/life/day-...
6
votes
0
answers
2k
views
How to embed external file contents in org file?
I'm creating a simple bash tool that uses various flags/arguments from the user, and I'm using an org file for the documentation. I have several examples and I'd like to include some explanation of ...
6
votes
0
answers
601
views
Is exporting of smart (single) quotes broken in Org 8.3?
I cannot seem to get correctly exported smart single quotes in Org 8.3.
Here is a minimal test.org file:
#+OPTIONS: ':t
#+LANGUAGE: en
This is 'within single quotes'. This is "within double quotes"...
5
votes
0
answers
243
views
dvisvgm baseline in org-mode HTML export
When using #+OPTIONS: tex:dvisvgm and exporting to HTML with org-mode, the baseline of the latex exported images does not match the baseline of the text (when using subscripts, for instance). Is there ...
5
votes
0
answers
596
views
list of current variables in a buffer for Python code
I would like to find a way to reproduce the "Workspace" of Matlab or the equivalent "Variables" window of the awesome pudb debugger directly in emacs for python code: it is a window which details the ...
5
votes
1
answer
600
views
Export pretty symbols in org source blocks?
I make substantial use of prettify-symbols in my programming buffers. A snippet of some of my python symbols:
(add-hook 'python-mode-hook
(lambda ()
(mapc (lambda (pair) (push pair ...
5
votes
0
answers
175
views
How to link from parent source block to child block (included via <<noweb>>)?
When exporting the documentation (HTML or PDF) for a literate program that uses noweb references in blocks, how can I get the output to actually hyperlink the <<noweb_snippet_name>> line (...
4
votes
0
answers
278
views
Using a `defconst' or `defvar' While the Variable Has a Local Binding Sets the Global Binding?
The GNU Emacs Lisp Reference Manual, 12.5 Defining Global Variables:
If you use a defconst or defvar special form while the variable has a local binding (made with let, or a function argument), it ...
4
votes
0
answers
212
views
Org Export Throwing an Error
Forgive the (relative) newbie question here. My org export to LaTeX just started throwing this error after I upgraded to Emacs 29.0
Here is output from Org PDF LaTeX Output buffer:
Latexmk: -pdflatex ...
4
votes
0
answers
358
views
Emphasize text snippets in source blocks
If one sets org-src-fontify-natively to t org source blocks are fontified according to the associated major-mode. That is fine.
But, is it possible to emphasize text snippets within the source blocks, ...