Re: [O] Why navigating in Org mode is so slow in overview mode?

2015-06-18 Thread Qiang Fang
I found it linum mode that slows all things down. Thank you for the help! Qiang On Wed, Jun 17, 2015 at 3:51 AM, Nicolas Goaziou wrote: > Hello, > > Q writes: > > > I am view this file > > http://doc.norang.ca/org-mode.org > > > > It's a prettey long document, when it all folded up, navigating

Re: [O] why org capture finalise asks for deleting bookmarks every time

2015-06-19 Thread Qiang Fang
Hi Kyle, Indeed bookmark-save-flag is 1 and org-capture-bookmark is t. I changed bookmark-save-flag to t and everything is working perfectly. Thank you! Qiang On Fri, Jun 19, 2015 at 3:14 PM, Kyle Meyer wrote: > Q wrote: > > When I finished typing in a capture buffer, I hit C-c C-c, > > this i

[O] Some qeustions on odt styles with org mode odt export

2016-08-11 Thread Qiang Fang
Hello everyone, I want to use org mode as an alternative to libreoffice. I have a few questions: 1 how to create a two columns section In org mode, creating a two_columns page style and use #+ATTR_ODT: :style "two_columns" can produce a two column document, but org mode doesn't seem to have

[O] how to modify caption styles in odt file exported with org-odt-export-to-odt

2016-09-18 Thread Qiang Fang
Hello everyone, My work requires me to use libreoffice. I have several questions using org mode with libreoffice. 1 How to remove colon seperator in figure caption in odt files exported from org mode? 2 How to change equation numbering to latex style, like e=mc2 (Equation 1-1) I am trying to ge

[O] Request on modification of org-element.el

2018-11-22 Thread Qiang Fang
Hello everyone, I am a user of kjambunathan's org-mode-ox-odt. The odt exporter needs some changed in the upstream org mode. Can you please kindly review the request? Thank you so much! diff --cc lisp/org-element.el index cdb574e17,f7498fbd1..0 --- a/lisp/org-element.el +++ b/lisp/org-ele

Re: [O] Request on modification of org-element.el

2018-11-23 Thread Qiang Fang
le-row table-cell) (underline ,@standard-set) (verse-block ,@standard-set))) On Fri, Nov 23, 2018 at 2:32 PM Nicolas Goaziou wrote: > Hello, > > Qiang Fang writes: > > > I am a user of kjambunathan's org-mode-ox-odt. The odt exporter needs > some >

Re: [O] Request on modification of org-element.el

2018-11-23 Thread Qiang Fang
s. Library is file ~/.emacs.d/elpa/org-9.1.14/org.elc Library is file ~/.emacs.d/elpa/ox-odt-9.1.14.145/ox-odt.elc After you export an Org file to ODT, look at your *Messages* buffer and ensure that the ODT exporter *uses` style and schema files from the ELPA package. On Fri, Nov 23, 2018 at

[O] Bug in ox.el

2017-09-12 Thread Qiang Fang
The original issue is at https://github.com/kjambunathan/org-mode-ox-odt/issues/25 "org-export-table-cell-alignment uses org-export-data to infer cookies of some columns. I think, it should use other mechanisms like org-element-interpret-data (may be)." The odt exporter is really useful, it repla

[O] Git repo for org-odt-export

2017-09-12 Thread Qiang Fang
Anyone trying to hack ox-odt can definitely get help here: https://github.com/kjambunathan/org-mode-ox-odt/ James Harkins writes: > On Sat, 09 Sep 2017 05:06:24 -0400 James Harkins > wrote > I guess next I'm going to try to hack ox-odt.el...

Re: [O] Bug in ox.el

2017-09-13 Thread Qiang Fang
On 9/13/17, Eric S Fraga wrote: > On Wednesday, 13 Sep 2017 at 09:26, Qiang Fang wrote: >> The original issue is at >> https://github.com/kjambunathan/org-mode-ox-odt/issues/25 >> >> "org-export-table-cell-alignment uses org-export-data to infer cookies >>

Re: [O] Bug in ox.el

2017-09-13 Thread Qiang Fang
if we can include it in the official org-mode. Can anyone tell me whether if my approach will work: The author of ox-odt gives me his code as a gift, and it becomes mine, the I can do everything with it, right? On 9/13/17, Nicolas Goaziou wrote: > Hello, > > Qiang Fang writes:

[O] Org table: how to reference part of the rows

2017-12-16 Thread Qiang Fang
The last column is the ratio between column b and a, the last row is the sum of each row, the second formula only applies from the second row to the row before last row. The table that doesn't work is: | | a | b | ratio | | | 0.797 | 0.780 || | |

Re: [O] Org table: how to reference part of the rows

2017-12-17 Thread Qiang Fang
I solved my problem by specifying the column range #+tblfm: @2$4..@-2$4 = ($3 / $2) * 100 On Sun, Dec 17, 2017 at 11:53 PM, Eric S Fraga wrote: > On Saturday, 16 Dec 2017 at 19:24, Qiang Fang wrote: > > The last column is the ratio between column b and a, the last row is > >