Re: Dslide 1.0 Feature Roadmap & RFC

2024-12-25 Thread Psionic K
is way too easy to use accidentally. Why not just >C-x k? It is not like people need to quit frequently enough to have >a very simple and easy-to-reach binding just for quitting Might need a `kill-buffer-hook' but overall, seems like another better default. Recently I changed so tha

Re: Completions Registry

2024-12-25 Thread Psionic K
Sorry, my initial thoughts are too far ranging. More directly, how can I inject extra values into `org-special-properties' or elsewhere so that they appear when completing `org-set-property'? Applications that use non-standard properties don't have a way AFIAK to inform these completions.

Re: [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark? (was: Fwd: Org-cite: Replace basic follow-processor with transient menu?)

2024-12-14 Thread Psionic K
> Do you have an example of using buffer-local variables to store > transient state? Directing me to an appropriate section of the > showcase should be plenty. It's less magic than it sounds. I basically bypassed the infix system when making transients for Master of Ceremonies. https://github.co

Re: [RFC] The best way to choose an "action" at point: context-menu-mode, transient, which-key or embark? (was: Fwd: Org-cite: Replace basic follow-processor with transient menu?)

2024-12-13 Thread Psionic K
> intercepts the main loop This is optional, per transient menu (prefix) and the commands within it. A common technique, used by magit and others, is to have entry point commands in the regular keymap so that many commands can be started without traversing several menus. If you want normal un-shad

Binary Table & Babel Data Passing

2024-12-11 Thread Psionic K
Buffer text is not a good data transfer protocol for moving return values from babel block to block. It is also not a good storage medium for table data. I propose we implement more binary data passing strategies. Elisp memory is it's own source of problems, so what would likely work better is a

Completions Registry

2024-12-11 Thread Psionic K
Not just a problem for dslide but for org in general, any time a package adds keys to configure blocks or properties, these do not complete except through dabbrev etc. The keys are likely not already in documents. The only way I can reason to make them visible is to provide functions to register

Dslide 1.0 Feature Roadmap & RFC

2024-11-27 Thread Psionic K
Earlier, a single PR for supporting babel parameters was invaluable insight into current features. I don't use org mode in every way that everyone uses org mode. Different perspectives help. I have compiled a list of everything I believe belongs in version 1.0: https://github.com/positron-soluti

Keyword TOC generation for GFM

2024-11-24 Thread Psionic K
Reportedly, ox-md is somehow responsible for ox-gfm generating a TOC with anchors. Don't quote me on that. I don't believe it either. Facts I actually believe: ox-gfm will generate a github flavor table if I just set `toc' to `t' at the top of my readme. However, if I try to create a partial

hiding image with overlays; bounds issue

2024-11-22 Thread Psionic K
Dslide needs to dynamically show and hide content. I have been relying on overlays just for ease of accounting. Text properties are a valid fallback if I decide overlays are too fiddly. I've run into a few cases where if I don't extend the overlay to underlap the beginning of an image, the overl

Re: Structure templates moving point

2024-06-06 Thread Psionic K
18 PM Ihor Radchenko wrote: > Psionic K writes: > > > I made some changes to my buffer display settings. When the structure > > template choice interface does not fall back to creating a frame, it > > does not exhibit the errant point behavior. > > > > In any cas

Re: Structure templates moving point

2024-06-06 Thread Psionic K
I made some changes to my buffer display settings. When the structure template choice interface does not fall back to creating a frame, it does not exhibit the errant point behavior. In any case, after creating the comment block, the point should probably move inside the block like it does for so

Structure templates moving point

2024-06-04 Thread Psionic K
As of 9.7.2 Using `org-insert-structure-template' to add comment blocks to a document where I previously added comment blocks is moving the point to unrelated comments, and definitely not to the body of the block that was just inserted. The display buffer behavior is at least no longer creating f

How should I handle babel configuration of exports & results in Dslide?

2024-05-27 Thread Psionic K
Because live presentations are a bit different from exporting documents, I'm not always sure how options should apply. I'm not an expert on many of these options and am not sure what will feel consistent for users. For context, a user wants :exports results or :exports none to hide the babel bloc

dslide 0.4.0, last unstable release

2024-05-25 Thread Psionic K
Dslide (Domain Specific sLIDEs) is a rethought, mostly complete rewrite of org-tree-slide. Its highlight features: - using babel blocks - per-slide configuration - extensible via custom actions and support for custom EIEIO classes There is a file in the /test directory called demo.org. You can s

Re: org-(un)fill-buffer

2024-01-10 Thread Psionic K
; also, if a new command is to be introduced, presumably it would work > on subtrees, paragraphs, lists, and regions, so that you could have it > not apply to informal non-org lists or code that is not in a source > block etc. > > met with alex today > yesterday he wasn't availa

Re: org-(un)fill-buffer

2024-01-10 Thread Psionic K
ments, but if I had to do it now, I would make the inclusion of part of an element include all of that element. On Thu, Jan 11, 2024 at 12:47 AM Ihor Radchenko wrote: > > Psionic K writes: > > >> You may instead just run > >> (let ((fill-column most-positive-

Re: org-(un)fill-buffer

2024-01-10 Thread Psionic K
706d5d71cdf1ed2528664bdaf714aad6bd15af6c Mon Sep 17 00:00:00 2001 From: Psionik K <73710933+psioni...@users.noreply.github.com> Date: Wed, 10 Jan 2024 23:15:26 +0900 Subject: [PATCH] org.el: introducing org-fill-buffer * lisp/org.el: (org-fill-buffer) this command walks the tree and will call fill-paragraph on every paragraph or

Re: org-(un)fill-buffer

2024-01-10 Thread Psionic K
> You may instead just run No. That will have to be run manually on every element and every line of every list. I suppose let's just not talk about it further and I'll submit a patch so there's no confusion. On Wed, Jan 10, 2024 at 9:31 PM Ihor Radchenko wrote: > > Ps

Re: [PATCH] Unindentation fixup for code blocks

2024-01-10 Thread Psionic K
Had I not already found another way to correct the behavior, this would have been a dead-end I would have had to round trip. I'm presuming tests don't get their own changelog entries. Is that correct? From 965b60f58512b009778b7b5279394bf01d407c3f Mon Sep 17 00:00:00 2001 From: Psionik

org-(un)fill-buffer

2024-01-10 Thread Psionic K
I wrote up a small addition to the unfill package, which is very convenient for switching hard newlines out in favor of tools like visual-line-mode and adaptive-wrap. The command unfilled every list and paragraph in the entire buffer. PR is here: https://github.com/purcell/unfill/pull/11#pullrequ

[PATCH] Unindentation fixup for code blocks

2024-01-10 Thread Psionic K
expressions that relied on current-column, the behavior is fixed. There are several behaviors I only just found, so I don't expect a lot of precision in my fix, but the patch I came up with follows: >From 858077f0d2a7f4cd8699948229c2965f0c6bb0a1 Mon Sep 17 00:00:00 2001 From: Psionik K &

Link translation & relative path export_file_name

2023-10-26 Thread Psionic K
When using an +#export_file_name directive, is it possible to have links translated to match the directory offset of the target? I came across this while working on a documentation generation scheme for https://github.com/positron-solutions/elisp-repo-kit The links in the org document are correct

Re: Feature request: export form feed as page break

2023-10-21 Thread Jambunathan K
uncle who wants to help you (and interact with you) in an unstructured setting ... Jambunathan K. On 21/10/23 13:12, Marvin Gülker wrote: Dear list, I am creating training material for the education of German law students, which usually consists of a case story on one or two pages, followed

Re: [Pre-PATCH] Overhaul of the LaTeX preview system

2023-05-03 Thread K. Chousos
Hello Timothy. First of all, thank you for your contribution. I use your fork for some days now and I can verify that it is working correctly. I have only faced the following problems: 1. When a snippet contains a mistake, it correctly turns red, but no error message is shown when I hover my

Re: [Pre-PATCH] Overhaul of the LaTeX preview system

2023-05-03 Thread K. Chousos
Hello Timothy. First of all, thank you for your contribution. I use your fork for some days now and I can verify that it is working correctly. I have only faced the following problems: 1. When a snippet contains a mistake, it correctly turns red, but no error message is shown when I hover m

Re: How to force markup without spaces

2022-07-26 Thread K
On Tue, 2022-07-26 at 13:30 +0700, Max Nikulin wrote: > I have not tested it, but I expect you can use > - export filter that removes zero-width spaces at the last export > stage. > I assume that your documents do not contain them besides markup > workaround > - #+latex_header: \DeclareUnicodeChar

Re: How to force markup without spaces

2022-07-25 Thread K K
On 2022-07-26 Tue. 09:23 +0700,Max Nikulin wrote: > However the suggestion was namely to use U+200B ZERO WIDTH SPACE and > it > is actually implemented since `org-emphasis-regexp-components' > currently > contains [:space:]. > ... > K, could you, please, clarify what i

Re: How to force markup without spaces

2022-07-25 Thread K
Hello everyone, I am a chinese user and also came across this problem. Bastin once wrote this almost a decade ago: > More precisely this can be included when we decide to drop support > of Emacs 22. > > Does anyone know what is the current backward compatibility state > of major native Emacs

Re: How to force markup without spaces

2022-07-25 Thread K
> Bastin once wrote this almost a decade ago: Sorry for the misspelling, the name is Bastien, not Bastin. The thread and post I am mentioning is at https://list.orgmode.org/orgmode/87bodxy77m@bzg.ath.cx/

Re: How to force markup without spaces

2022-07-25 Thread K
Hello everyone, I am a chinese user and also came across this problem. Bastin once wrote this almost a decade ago: > More precisely this can be included when we decide to drop support > of Emacs 22. > > Does anyone know what is the current backward compatibility state > of major native Emacs

Bug: campany-capf throwing an error in org-mode, while entering header args [9.4.6 (9.4.6-12-gdcc3a8-elpaplus @ /home/mypc/.emacs.d/elpa/org-plus-contrib-20210809/)]

2021-08-19 Thread C K
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. --

Re: Smart processing of http(s) links

2020-06-29 Thread Bonface M. K.
sed >>> differently than any other link, one example - if it is a PR or a >>> Github Issue, I'd like it to fetch summary(title) of it and create a >>> link that looks like this: >>> >>> [[https://github.com/user/repo/issues/3899][This issue needs to b

[O] A summary with weekly processed actions using org-todo

2016-12-13 Thread Yann K.
Hi all, My life is relying on orgmode, from a personal standpoint (orgmode is faster at reminding me pending actions to fix my house than my wife) and to organize my actions at work pushing my mutt mails in org-mode as tasks... all this works great. Special thanks to the team for this superb work.

Re: [O] C-c ! org-time-stamp-inactive ?

2016-03-10 Thread K
Nicolas Goaziou nicolasgoaziou.fr> writes: > > Hello, > > K limist.com> writes: > > > Kyle Meyer kyleam.com> writes: > > > >> > >> Hello, > >> > >> Luke Crook balooga.com> writes: > >> > >> &g

Re: [O] C-c ! org-time-stamp-inactive ?

2016-03-09 Thread K
with my setup? > > The default binding hasn't been changed in Org. > I've run into the same problem, with both Org 8.3.4 and MELPA version 20160307, the usual C-c ! doesn't work anymore for inserting inactive timestamp. If there's been no change to the default binding, any suggestions on how to debug this please? Thanks! K

Re: [O] Small bug? org-narrow-to-subtree and open file link

2015-03-06 Thread James K . Lin
Igor Sosa Mayor gmail.com> writes: > > James K. Lin yahoo.com> writes: > > > org-narrow-to-subtree creates a subtree buffer. Your org-return call within > > that new subtree buffer command operates on the base buffer. Many of Org's > > link navigation

Re: [O] Small bug? org-narrow-to-subtree and open file link

2015-03-06 Thread James K . Lin
Igor Sosa Mayor gmail.com> writes: > > Hi, > > maybe this is a small bug or something wrong in my config... > > But: if I use org-narrow-to-subtree and then use org-return to open a > file link the narrowed function get lost and I get the whole buffer > again. This happens at least if I get a

Re: [O] emails written in Org Mode

2014-07-09 Thread Noorul Islam K M
Ken Mankoff writes: > Hi Thorsten, On a recent thread you wrote: > >> ... *outorg-edit-buffer* (where I write my message-mode email in full >> org-mode). > > I already write emails in emacs. I'm interested in being able to compose > emails using Org Mode. I see you use gnus. I use mu4e[1]. I wo

Re: [O] [RFC] Creole-style / Support for **emphasis**__within__**a word**

2014-03-24 Thread Jambunathan K
Nicolas Goaziou writes: > Good luck. Got my answer. The rest are just details.

[O] ATTN: Users of ODT exporter

2014-03-21 Thread Jambunathan K
ATTN: Users of ODT exporter If you want to talk to me wrt exporter, please add a note here: http://www.emacswiki.org/emacs/Jambunathan_K I am leaving this list. I WILL NEVER MAKE an assignment to Emacs. i.e. The development that happens on my repository will NEVER hit the Emacs trunk.

Re: [O] Is anyone spending money for Org-mode?

2014-03-15 Thread Jambunathan K
If I were you, I will segregate the funds as though the contributor - developer or otherwise - will receive it. Then, I will approach each contributor with, This is your fair share. Please receive it. If the contributor declines, I will ask the contributor "How do you think I should

Re: [O] Is anyone spending money for Org-mode?

2014-03-13 Thread Jambunathan K
Carsten Dominik writes: > I would like to pass donations Undoubtedly, to Nicolas Goaziou.

Re: [O] FW: How to load .el file during startup and execute its commands (Win7/org8)

2014-03-12 Thread Jambunathan K
M writes: > have to load my settings file manually (open, eval-buffer, close) at > each startup... By hand, do M-x load-file RET path-to-file RET Now after you have done this, do M-x list-command-history RET And copy-paste the relevant portion to your .emacs. That is all. No need to m

Re: [O] Howto: different faces for "begin_src" and "results"

2014-03-10 Thread Jambunathan K
Miguel Ruiz writes: > I was wondering if it's possible to have different faces for > "#+begin_src/#+end_src" and "results" so distinguishing the blocks is > easier. Put cursor on the character whose colour you want to change and do M-x cusotmize-face

Re: [O] org-odt-export-to-odt: tables: column and row spacing: configure

2014-03-07 Thread Jambunathan K
http://lists.gnu.org/archive/html/emacs-orgmode/2014-01/txtXYCqBy8St9.txt Uwe Brauer writes: > Hello > > I use org-odt-export-to-odt quite a bit. How can I configure it in order > to set a different column and row spacing for tables? The default one is to > large > for my taste, > > Thanks >

Re: [O] org-odt-export-to-odt: tables: column and row spacing: configure

2014-03-07 Thread Jambunathan K
If you want "optimized" column widths, I am afraid LibreOffice doesn't honor the XML markup. See http://lists.gnu.org/archive/html/emacs-orgmode/2014-01/msg01203.html See http://lists.gnu.org/archive/html/emacs-orgmode/2014-02/msg00380.html Uwe Brauer writes: > Hello > > I use org-odt-export

Re: [O] [RFC] Creole-style / Support for **emphasis**__within__**a word**

2014-03-04 Thread Jambunathan K
Jambunathan K writes: > (with-eval-after-load 'org > (setcar org-emphasis-regexp-components "^\\n") > (setcar (cdr org-emphasis-regexp-components) "^\\n") > (customize-save-variable 'org-emphasis-alist org-emphasis-alist)) A small correction ...

[O] [RFC] Creole-style / Support for **emphasis**__within__**a word**

2014-03-04 Thread Jambunathan K
t <:t H:3 \n:nil ^:t arch:headline #+OPTIONS: author:nil c:nil creator:comment d:(not "LOGBOOK") date:nil #+OPTIONS: e:t email:nil f:t inline:t num:nil p:nil pri:nil prop:nil #+OPTIONS: stat:t tags:t tasks:t tex:t timestamp:t toc:nil todo:t |:t #+TITLE: a #+DATE: <2014-03-04

[O] [RFC] Creole-style / Support for **emphasis**__within__**a word**

2014-03-04 Thread Jambunathan K
il p:nil pri:nil prop:nil #+OPTIONS: stat:t tags:t tasks:t tex:t timestamp:t toc:nil todo:t |:t #+TITLE: a #+DATE: <2014-03-04 Tue> #+AUTHOR: Jambunathan K #+EMAIL: kjambunathan@debian-6.05 #+DESCRIPTION: #+KEYWORDS: #+LANGUAGE: en #+SELECT_TAGS: export #+EXCLUDE_TAGS: noexport #+CREATOR: Emacs 24.

[O] [RFC] Creole-style / Support for **emphasis**__within__**a word**

2014-03-04 Thread Jambunathan K
dline #+OPTIONS: author:nil c:nil creator:comment d:(not "LOGBOOK") date:nil #+OPTIONS: e:t email:nil f:t inline:t num:nil p:nil pri:nil prop:nil #+OPTIONS: stat:t tags:t tasks:t tex:t timestamp:t toc:nil todo:t |:t #+TITLE: a #+DATE: <2014-03-04 Tue> #+AUTHOR: Jambunathan K #+EMAIL: k

Re: [O] Tables with line wrapping?

2014-02-22 Thread Jambunathan K
Peter Davis writes: > I'm using org-mode to prepare a document that will ultimately be > exported to PDF. Unfortunately, I need to include a table whose contents > will wrap as needed. You can export to PDF via ODT. Use list tables. See the links at the end of the following post. https://

[O] bug#16734: Default value org-odt-data-dir (in Emacs) makes no sense

2014-02-18 Thread Jambunathan K
See these posts. http://permalink.gmane.org/gmane.emacs.orgmode/81330 http://permalink.gmane.org/gmane.emacs.orgmode/81364 If Org is run from Vanilla Emacs then setting then setting that to `org-odt-data-dir' to nil should work (I think). The primary consumer of `org-odt-data-dir' is a

Re: [O] tricky odt export needs

2014-02-14 Thread Jambunathan K
Jambunathan K writes: > In the pdf version of Emacs info manuals one typically sees all three of > a Section number AND a Description AND a Page number, something like: > > See Section 3.1 [Tropical Storms], page 24. > > In Org context, I am wondering whether there is su

Re: [O] org-odt table with borders on all sides

2014-02-10 Thread Jambunathan K
rajat mukherjee writes: > org-odt table with borders on all sides Try one of this |---+---+---| | < | | > | | a | b | c | | d | e | f | | g | h | i | |---+---+---| or #+ATTR_ODT: :style "GriddedTable" | a | b | c | | d | e | f | | g | h | i | With the first version above, the vertical ru

Re: [O] export tables to html and odt, table borders

2014-02-08 Thread Jambunathan K
Uwe Brauer writes: > Is there anything similar for the odt exporter? 1. What SPECIFICALLY do you want? 2. How many tables do you have in your document? 3. What aspects do you want to be uniform across your tables? 4. What aspects you want changed on a per-table basis? If you want glosses or an

Re: [O] Need extra text in ODT export of headers

2014-02-08 Thread Jambunathan K
IONS: e:t email:nil f:t inline:t num:t p:nil pri:nil prop:nil #+OPTIONS: stat:t tags:t tasks:t tex:t timestamp:t toc:t todo:t |:t #+TITLE: test #+DATE: <2014-02-09 Sun> #+AUTHOR: Jambunathan K #+EMAIL: kjambunat...@gmail.com #+DESCRIPTION: #+KEYWORDS: #+LANGUAGE: en #+SELECT_TAGS: export #+EXC

Re: [O] Need extra text in ODT export of headers

2014-02-03 Thread Jambunathan K
Dan Griswold writes: > The only downside right now seems to be that I have to do the outline > numbering for each file in the manuscript. But there are only 9 of > them. You just need to create a opendocument template file and have all the org file use it. See (info "(org) Applying custom s

Re: [O] [ANN] ELPA package for ODT and JabRef exporters

2014-01-29 Thread Jambunathan K
Aric Gregson writes: > Jambunathan, > > I have tried to install this. I even created a blank .emacs file as you > suggested. Everything appears to be fine with the exception of > >>C-h v org-odt-styles-dir >>C-h v org-odt-schema-dir > > These do not appear as options for me. I'm

[O] [bug] Code snippets are not getting numbered

2014-01-28 Thread Jambunathan K
Nicolas Code snippets are not getting numbered... Also take a look at `org-export-resolve-coderef'. The below example is from (info "(org) Literal examples") --8<---cut here---start->8--- #+BEGIN_SRC emacs-lisp -n -r (save-excursion (ref:sc)

Re: [O] No title in org-export-as-odt

2014-01-27 Thread Jambunathan K
Brady Trainor writes: > Miguel Ruiz yahoo.es> writes: > >> > > Any hint to get rid of the title in a org-export-as-odt If you are seeing `org-export-as-odt' then you are using old Org (< 8.0). Old exporters are no longer maintained. So you upgrade to the latest Org (org > 8.0) via M-x list-pa

Re: [O] Which `odt-content' variable should I use? Why are there two?

2014-01-27 Thread Jambunathan K
Brady Trainor writes: > I was browsing the customize group org-export-odt. The old exporter and the new exporters share the same custom group. So you are seeing the old and new variables in the custom buffer. (IMO this is a bug.) --

Re: [O] [ANN] ELPA package for ODT and JabRef exporters

2014-01-27 Thread Jambunathan K
This message SUPERSEDES instructions in the parent post (at http://lists.gnu.org/archive/html/emacs-orgmode/2014-01/msg01134.html) Elevator Pitch == I fixed few bugs in ELPA tarball (Thanks Benjamin). Adding the following URL to http://repo.or.cz/w/org-mode/org-kjn.git/blob_pla

Re: [O] Aligned glosses in orgmode (for export to odt/doc)

2014-01-24 Thread Jambunathan K
Jambunathan K writes: > Benjamin Slade writes: > >> One potential solution would be an orgmode setup which produces >> borderless tables with an "optimal width" column setting. I don't know >> how to do this in orgmode though (or if it can be done curr

Re: [O] odt exporter on mixed org setup

2014-01-23 Thread Jambunathan K
Achim Gratz writes: > That's the result of using Emacs' build system, not Org's. Someone has to fix it... It should either be nil or (expand-file-name "./org/" data-directory) If that path is wrong, the ODT exporter is really not usable. I think nil may be a good idea.

Re: [O] Citations and references in ODT

2014-01-23 Thread Jambunathan K
Jambunathan K writes: > Try out the org-odt-* ELPA package and let me know how things go. See http://permalink.gmane.org/gmane.emacs.orgmode/81347

Re: [O] Citations and references in ODT

2014-01-23 Thread Jambunathan K
Try out the org-odt-* ELPA package and let me know how things go. Aric Gregson writes: > --On January 19, 2014 11:16:53 AM +0530 Jambunathan K > wrote: > >> Are you still stuck here or you made some repairs and stuck elsewhere. > ... >> IMO, starting from scratch (i.

Re: [O] Aligned glosses in orgmode (for export to odt/doc)

2014-01-23 Thread Jambunathan K
Benjamin Slade writes: > Can anyone suggest how this (or some other solution to producing > interlinear glosses) might be implemented in an orgmode->odt/doc/docx > setup? One potential solution would be an orgmode setup which produces > borderless tables with an "optimal width" column setting. I

[O] [ANN] ELPA package for ODT and JabRef exporters

2014-01-23 Thread Jambunathan K
I have prepared an ELPA package org-odt-*.tar for easy distribution of bug fixes from private git repository [fn:1]. The package contains both ODT exporter and JabRef exporter. You need to make sure that you are using 1. org > 8.0 2. Emacs > 24.3.50 --

Re: [O] Including Tables and Figures in TOC for org-odt-export

2014-01-23 Thread Jambunathan K
Rajat Mukherjee writes: > Hello Org-mode users, > Can any body direct me as to how to include list of tables and figures in the > toc when exporting to odt from orgmode. Org cannot generate TOC of tables and figures. You need to use LibreOffice to insert Index of Table and Figures (by hand).

Re: [O] odt exporter on mixed org setup

2014-01-22 Thread Jambunathan K
Achim Gratz writes: > Bzzt. Wrong. I have my reservations. With stock Emacs Snapshot (i.e., without any separate Org installation - git or elpa) at Bzr version 116124, at line 16, I am seeing ;;;###autoload (defvar org-odt-data-dir "/usr/share/emacs/etc/org" "The location of ODT

Re: [O] Aligned glosses in orgmode (for export to odt/doc)

2014-01-22 Thread Jambunathan K
Benjamin Slade writes: > One potential solution would be an orgmode setup which produces > borderless tables with an "optimal width" column setting. I don't know > how to do this in orgmode though (or if it can be done currently). This feature is available only in my private repo. --

Re: [O] orgstruct-mode taking over C-c C-f

2014-01-21 Thread Jambunathan K
Eric Abrahamsen writes: > Debugger entered--Lisp error: (void-function set-transient-map) New function in snapshot builds. ChangeLog says 2013-12-23 Chong Yidong * subr.el (set-transient-map): Rename from set-temporary-overlay-map. Doc fix.

Re: [O] orgstruct-mode taking over C-c C-f

2014-01-21 Thread Jambunathan K
Eric Abrahamsen writes: > Debugger entered--Lisp error: (void-function set-transient-map) New function in snapshot builds. From the ChangeLog 2013-12-23 Chong Yidong * subr.el (set-transient-map): Rename from set-temporary-overlay-map. Doc fix.

Re: [O] How to write medical journal articles with org-mode

2014-01-20 Thread Jambunathan K
regcl writes: > org > latex > pandoc > docx ? Too many moving parts. Each part coming from different manufacturers. The components will rub against each other and the resulting heat may vaporize the lubricant. Pick a workflow that has minimum dependencies - even if that means throwing Emacs

Re: [O] How to write medical journal articles with org-mode

2014-01-20 Thread Jambunathan K
regcl writes: > I am looking for advice regarding how to write medical journal > articles using org-mode. > > My primary motivations are the desire to ... automate the flow of data > from computation to publication, avoid clerical errors, speed up the > conversion of computational results to manu

Re: [O] Citations and references in ODT

2014-01-18 Thread Jambunathan K
Aric Gregson writes: > From http://permalink.gmane.org/gmane.emacs.orgmode/80832 > OpenDocument export failed: Symbol's function definition is void: > org-element-cache-reset > I also receive this error the first time that I try to open an org > file. I can open the file if I try another time.

Re: [O] odt exporter on mixed org setup

2014-01-18 Thread Jambunathan K
Rustom Mody writes: > On second thoughts Added few more lines, Sundays after Harvest season are the best :-) Don't disturb it So long as it works Scribble the notes somewhere Tuck it in a safe place So that, When times are bad And things go awry Revisit the memo

Re: [O] odt exporter on mixed org setup

2014-01-18 Thread Jambunathan K
Rustom Mody writes: > On second thoughts Don't disturb it So long as it works Scribble the notes somewhere Tuck it in a safe place (So that) When times are bad And things go awry Revisit the memories (And) Set things right again.

Re: [O] odt exporter on mixed org setup

2014-01-18 Thread Jambunathan K
Rustom Mody writes: > Currently I have a setq on org-mode-hook I don't run "make install", I just do "make". Here is what I have in .emacs. DO NOT do an explicit (require 'ox-backend). Instead customize `org-export-backends' and the ODT exporter there. Here is the sequence I have in my .emac

Re: [O] odt exporter on mixed org setup

2014-01-16 Thread Jambunathan K
Rustom Mody writes: > org-odt-data-dir is coming in bound to /usr/share/emacs/etc/org (which > is non-existent) Open a bug against the packager. (ox-odt.el is an exception. It is uncommon for Emacs libraries to come with auxiliary support files). The distributors need to make sure 1. Style f

Re: [O] odt exporter on mixed org setup

2014-01-16 Thread Jambunathan K
Rustom Mody writes: > I could check that org-odt-data-dir is coming in bound to > /usr/share/emacs/etc/org (which is non-existent) before the defvar in > ox-odt.el, so that defvar is not happening > And changing the prefix in local.mk does not seem to do anything Don't worry about the make file

Re: [O] odt exporter on mixed org setup

2014-01-16 Thread Jambunathan K
Rustom Mody writes: > Ended with: ox-odt cannot find factory style files You need (setq org-odt-data-dir "~/src/org-mode/etc/") Modify the path. If the *Messages* say that it is not able to find the styles dir, it really means that it is not able to find the styles files. > Checked that

Re: [O] No ODT export option

2014-01-14 Thread Jambunathan K
Debian lags quite a bit (from few months to years). It is difficult to say what version they are packaging. The best and easiest way to install latest Org would be to via GNU ELPA or Org ELPA. See http://orgmode.org/elpa.html. M-x list-packages Once you insall the package, restart Emacs a

Re: [O] Org Export to ODT Problem Files

2014-01-14 Thread Jambunathan K
Aric Gregson writes: >>> 4. Figure and table references are by section, sort of like old >>> fashioned latex. > > For me, I am not writing a book or anything very long, just > manuscripts. Thus, I would prefer just to label each figure in order and > each table in order. I would therefore get F

Re: [O] Citations and references in ODT

2014-01-14 Thread Jambunathan K
Aric Gregson writes: > OpenDocument export failed: Symbol's function definition is void: > org-element-cache-reset You have some installation issues. Try the following commands and try to address any inconsistencies in the various paths. C-h v org-version M-x find-library org-loaddefs

Re: [O] Citations and references in ODT

2014-01-14 Thread Jambunathan K
Aric Gregson writes: > Ken Mankoff writes: > >> I find the ODT export very useful. Working on another document imported >> from LaTeX I have a lot of \citep{} and \citet{} in addition to \cite{}. Is >> it possible for ox-jabref.el to support this even if it does not >> distinguish between the T

Re: [O] Citations and references in ODT

2014-01-14 Thread Jambunathan K
ible for ox-jabref.el to support this even if it > does not distinguish between the T and P? > > I edited the line near the bottom with the regex and changed > > (value (∧ (string-match "cite{\\(.*?\\)}" latex-frag) > > to > > (value (∧ (string-match "cite?{\\(.*?\\)}" latex-frag) > > But it did not help. > > -k.

Re: [O] Citations and references in ODT

2014-01-11 Thread Jambunathan K
ing you could do is this 1. Download org-*.tar file with wget or firefox. 2. Untar it. 3. Replace ox-odt.el, the style files and copy over the ox-jabref.el file. 4. Re-create the tar file (with the new files). 5. Do M-x package-install-file to install the new elpa. > Any hints about where I took a wrong step will be appreciated. > > Thanks, > > -k.

Re: [O] Org Export to ODT Problem Files

2014-01-11 Thread Jambunathan K
> I'm slow at learning the machinery behind Open Document Format Oh, OK. If you say so.

Re: [O] Citations and references in ODT

2014-01-10 Thread Jambunathan K
Aric writes: Ken Mankoff gmail.com> writes: ox-odt.el supports citation via ox-jabref.el. Use my private files for JabRef support === JabRef support is NOT part of Org distribution. It is pa

Re: [O] Citations and references in ODT

2014-01-10 Thread Jambunathan K
Aric writes: Ken Mankoff gmail.com> writes: ox-odt.el supports citation via ox-jabref.el. Use my private files for JabRef support === JabRef support is NOT part of Org distribution. It is pa

Re: [O] Org Export to ODT Problem Files

2014-01-10 Thread Jambunathan K
e/html/emacs-orgmode/2013-10/msg00873.html Jambunathan K. Git Repo: http://repo.or.cz/w/org-mode/org-kjn.git

Re: [O] Org Export to ODT Problem Files

2014-01-10 Thread Jambunathan K
Comparison is nice. Using pandoc to do org->odt is definitely substandard. Aric writes: > Thank you very much for the upgrade notice. The export to ODT from org-mode > works very well now. There are pluses and minuses it seems between pandoc and > org export. > > Org export -> > 1. Include

Re: [O] Colorizing 'emacs-lisp' when it is exported?

2013-12-28 Thread Jambunathan K
Sharon Kimble writes: > Re: Colorizing 'emacs-lisp' when it is exported? Search for htmlize or htmlfontify in the Org-mode and Emacs manuals. > For once, google has drawn a blank, unfortunately! Emacs is self-documenting. If you are serious about using Emacs you will ditch google (and even E

Re: [O] tricky odt export needs

2013-12-20 Thread Jambunathan K
I will respond to other items as I visit them. Meanwhile, I would like to add the following note for discussion. Christian Moe writes: > When headings are not numbered in export (#+options: num:nil), current > ODT export outputs a cross-reference with a descriptive text equal to > the heading

Re: [O] Warning (initialization): Your `load-path' seems to contain your `.emacs.d' directory

2013-12-20 Thread Jambunathan K
Paul Harper writes: > "Warning (initialization): Your `load-path' seems to contain > your `.emacs.d' directory: /home/username/.emacs.d/ > This is likely to cause problems... > Consider using a subdirectory instead, e.g.: > /home/username/.emacs.d/lisp" (I know nothing about starter kit) On

Re: [O] tricky odt export needs

2013-12-19 Thread Jambunathan K
Christian Moe writes: > You can do cross-references with ordinary links. Have a look at the > manual section 4.2, "Internal links". However, what you get out of the > box is textual references to e.g. section headings, not page > references. You can change that for each reference individually by

Re: [O] Bug: Bad ODT files when including multiple images [7.9.3f (release_7.9.3f-17-g7524ef /usr/share/emacs/24.3/lisp/org/)]

2013-12-18 Thread Jambunathan K
The fix is available in private repository: http://repo.or.cz/w/org-mode/org-kjn.git As far as schema validation with .rnc files go, draw:name is an optional attribute of draw:frame. So, I am not sure why LibreOffice is insisting on draw:name to exist and be unique. Due to the above issue,

Re: [O] Bug: Bad ODT files when including multiple images [7.9.3f (release_7.9.3f-17-g7524ef @ /usr/share/emacs/24.3/lisp/org/)]

2013-12-17 Thread Jambunathan K
ix, atleast a workaround - in another day. Jambunathan K.

Re: [O] new odt-exporter: problems with formatting in captions

2013-12-16 Thread Jambunathan K
Wrt items (1) and (2), I am planning to remove the support for short captions. (The caption going as part of table:name or draw:name) as part of fix for http://lists.gnu.org/archive/html/emacs-orgmode/2013-12/msg00100.html The fix is not ready yet. I am just feeling lazy after having not looke

  1   2   3   4   5   6   7   8   9   10   >