Re: Possibility to copy text outside EMACS and send it to orgmode document

2021-01-06 Thread Juan Manuel Macías
useful. > Thanks! I don't know if it is exactly what you are looking for, but maybe you might be interested in this extension for chrome and firefox that uses org-protocol: https://github.com/sprig/org-capture-extension Regards, Juan Manuel

Re: Inserting LaTex expressions using a filter fails

2021-01-06 Thread Juan Manuel Macías
iff and propose the patch here in the list, opening a new thread, that includes in the mail subject something like "[patch] etc" Regards, Juan Manuel

Re: Inserting LaTex expressions using a filter fails

2021-01-06 Thread Juan Manuel Macías
on. You're right. I think an addition could be proposed in the documentation: for example, a footnote in the section `Defining filters for individual files', since by default the variable `org-export-allow-bind-keywords' has value nil. Regards, Juan Manuel

Re: Inserting LaTex expressions using a filter fails

2021-01-06 Thread Juan Manuel Macías
Mart van de Wege writes: > Thanks! > > But see my answer to Nick Dokos on the list, that does not do anything > either. Try putting this variable in your .emacs with non-nil value: (setq org-export-allow-bind-keywords t) Regards, Juan Manuel

Re: Inserting LaTex expressions using a filter fails

2021-01-05 Thread Juan Manuel Macías
" text))) > #+END_SRC You must add a double escape character to the backslash: ... (replace-regexp-in-string "½" "sfrac{1}{2}" text))) ... Regards, Juan Manuel

Re: [PATCH] A proposal to add LaTeX attributes to verse blocks

2021-01-03 Thread Juan Manuel Macías
Hi Timothy, TEC writes: > Hi Juan, > > Thanks for your patch. > > This looks like a fairly sensible addition. Two comments from me: > > 1. I'm not sure that "options" is a good name for arbitrary LaTeX which >is included inside the verse blo

Re: Org to ConTeXt exporter?

2020-12-29 Thread Juan Manuel Macías
to have an alternative to LaTeX in Org. But I don't know if it would be something feasible in the short term, beyond the concept... Regards, Juan Manuel

Re: [tip] Export subfigures to LaTeX (and HTML)

2020-12-29 Thread Juan Manuel Macías
hat includes a rudimentary Lisp interpreter: https://www.ctan.org/pkg/lisp-on-tex. It's interesting, and you can do some things with it, but I think it's an abandoned project. The TeX ecosystem has moved to Lua with LuaTeX and LuaMetaTeX, but a LispTeX would have been wonderful! ;-) Regards, Juan Manuel

Re: Org to ConTeXt exporter?

2020-12-28 Thread Juan Manuel Macías
uses ox-md as a backend for defining the new ox-markua exporter. Thank you very much for the link. As soon as I have some time I will study your code Regards, Juan Manuel

Re: Org to ConTeXt exporter?

2020-12-28 Thread Juan Manuel Macías
ion grammars to capture it all, irrespective of direction ... mmm > time Yes, time is the problem: I think TODO lists were invented to have a foot of mud in the future :-) Regards, Juan Manuel

Re: Org to ConTeXt exporter?

2020-12-28 Thread Juan Manuel Macías
nTeXt, studying the code of the other exporters, but for time and work reasons I left the project abandoned. If you finally write that tutorial, I could also translate it into Spanish to spread it out among Spanish-speaking Org users. Regards, Juan Manuel > Best,

Org to ConTeXt exporter?

2020-12-28 Thread Juan Manuel Macías
typesetting, for example) that LaTeX lacks (for now) and has a more monolithic structure, that is, it does not need to be extended through packages as in LaTeX. Regards, Juan Manuel

Re: Bug: Tildes in URL impact visible link text [9.3 (release_9.3 @ /usr/share/emacs/27.1/lisp/org/)]

2020-12-27 Thread Juan Manuel Macías
rds, Juan Manuel

Re: A way to avoid unwanted new lines when using paragraph quotes?

2020-12-27 Thread Juan Manuel Macías
p :exports results :results none (defun my-filter-html (text backend info) (when (org-export-derived-backend-p backend 'html) (replace-regexp-in-string "" "" text))) #+end_src Regards, Juan Manuel

Re: Bug: Tildes in URL impact visible link text [9.3 (release_9.3 @ /usr/share/emacs/27.1/lisp/org/)]

2020-12-27 Thread Juan Manuel Macías
spurious characters. Regards Juan Manuel Chris Hunt writes: > I'm trying to create a link in an org file with this URL: > > > https://console.aws.amazon.com/cloudwatch/home?region=us-east-1#metricsV2:graph=~(view~'timeSeries~stacked~false~metrics~(~(~'CWAgent~'backup_time~'h

Re: A way to avoid unwanted new lines when using paragraph quotes?

2020-12-27 Thread Juan Manuel Macías
1", "Test 2", et al? A solution could be to 'force' a homogeneous space between all the items of the list by modifying the 'margin' property (https://www.w3schools.com/cssref/pr_margin.asp). For example: #+HTML_HEAD: li{margin: 15px;} Regards, Juan Manuel

[tip] Export subfigures to LaTeX (and HTML)

2020-12-25 Thread Juan Manuel Macías
#+begin_src org ,#+CAPTION: Lorem impsum dolor ,#+ATTR_LaTeX: :options \centering ,#+begin_figure @@html:@@ [[subfig:img1.jpg][Caption of img1 >(width=.3\textwidth) >{300px}]] [[subfig:img2.jpg][Caption of img2 >(width=.3\textwidth) >{300px}]] @@html: @@ [[subfig:img3.jpg][Caption of img3 >(width=.6\textwidth) >{600px}]] @@html:Lorem ipsum dolor@@ ,#+end_figure #+end_src As you can see, it is not the panacea, and you have to apply some direct format... Happy holidays Juan Manuel

Re: *strong* markup not honored at boundary of macro input during HTML export

2020-12-23 Thread Juan Manuel Macías
ecede or follow them. An emergency cure ;-) Regards, Juan Manuel m27315 writes: > Worked like a charm.  Thanks, Juan! > > On 2020-12-23 9:22 AM, Juan Manuel Macías wrote: >> quote (eval (concat "@@html:@@" "\u200B" $1 >> "\u200B" "@@html:@@")) >

Re: *strong* markup not honored at boundary of macro input during HTML export

2020-12-23 Thread Juan Manuel Macías
Hello, a possible dirty solution could be defining the macro with two Unicode zero-width spaces (u+200b): #+MACRO: quote (eval (concat "@@html:@@" "\u200B" $1 "\u200B" "@@html:@@")) Regards, Juan Manuel m27315 writes: > Resending a

[TIP] Export to LaTeX and HTML with a watermark

2020-12-22 Thread Juan Manuel Macías
cement macro: #+begin_src org ,#+MACRO: wmark (eval (if (org-string-nw-p $1)(my-watermark $1)(my-watermark))) #+end_src And finally, an example: #+begin_src org {{{wmark(Top secret!)}}} Lorem ipsum dolor sit amet, consectetuer adipiscing elit. accumsan nisl. (...) #+end_src Regards, Juan Manuel

Displaying verse numbers within a verse block

2020-12-20 Thread Juan Manuel Macías
, and I'm not a professional programmer either, so the code can be improved for sure ;-) https://gitlab.com/maciaschain/org-verse-num Regards, Juan Manuel

[PATCH] A proposal to add LaTeX attributes to verse blocks

2020-12-17 Thread Juan Manuel Macías
(replace-regexp-in-string @@ -3524,7 +3536,7 @@ contextual information." info) ;; Insert footnote definitions, if any, after the environment, so ;; the special formatting above is not applied to them. - (org-latex--delayed-footnotes-definitions verse-block info))) + (org-latex--delayed-footnotes-definitions verse-block info #+end_src Regards, Juan Manuel

[Small suggestion] on exporting verse blocks to LaTeX and vertical spaces

2020-12-15 Thread Juan Manuel Macías
uot; #+end_src ? (On the other hand, I also think that vertical spaces between groups of lines in verse blocks should always be exported to any format as a single fixed space, regardless of how many empty lines there are). Regards, Juan Manuel

Re: #+include and org-export-before-processing-hook

2020-12-13 Thread Juan Manuel Macías
ring: " *This is run before include keywords and macros are expanded* and Babel code blocks executed, on a copy of the original buffer being exported. Visibility and narrowing are preserved. Point is at the beginning of the buffer. Regards, Juan Manuel

Accessing a DLNA server through an Org link

2020-12-10 Thread Juan Manuel Macías
ut I wonder if anyone knows of any package or library to be able to do this (accessing a dlna server) in a more emacs/org-centric way ... Regards, Juan Manuel

Re: Bug: Footnotes on Headers and LaTeX export [9.3 (release_9.3 @ /usr/share/emacs/27.1/lisp/org/)]

2020-12-09 Thread Juan Manuel Macías
You're welcome ;-) Charis Michelakis writes: > Thank you :) > > On 12/9/20 5:06 PM, Juan Manuel Macías wrote: >> Hello, >> >> Charis Michelakis writes: >> >>> There is a potential bug regarging how footnotes on headers are >>> converte

Re: Bug: Footnotes on Headers and LaTeX export [9.3 (release_9.3 @ /usr/share/emacs/27.1/lisp/org/)]

2020-12-09 Thread Juan Manuel Macías
tion[Header1]{Header1\footnote{Lorem ipsum}} Regards, Juan Manuel

Re: Footnote definition within a verse block has spurious line breaks when exported to LaTeX

2020-12-05 Thread Juan Manuel Macías
Hello, Nicolas Goaziou writes: > This is hopefully fixed in master branch. Let me knows if it works for > you. Thank you, Nicolas. I've tried it and it works perfectly. I see that \footnotemark\footnotetext is used now, same as in tables. I think it's a great solution. Best, Juan Manuel

Footnote definition within a verse block has spurious line breaks when exported to LaTeX

2020-12-01 Thread Juan Manuel Macías
"\\([ \t]*\\)?[ \t]*\n" "\n" (preserve-footnote-definition-in-verse-block contents) nil t) nil t) nil t)) info)) #+end_src Best, Juan Manuel

org-thtml - static html site in pure org + Emacs

2020-04-25 Thread Juan José García-Ripoll
It only requires emacs. The example requires a recent version of org-mode. The stock one seems to have a problem resolving file: links in files that have been #+include'd. Cheers, -- Juan José García Ripoll http://juanjose.garciaripoll.com http://quinfog.hbar.es

Bug: org-publish-sitemap messes absolute sitemap paths [9.3.6 (9.3.6-25-g685b2c-elpa @ c:/Users/juanj/OneDrive/Library/Emacs/elpa-26/org-20200316/)]

2020-04-18 Thread Juan José García Ripoll
\316\"\206..\306\317\"!\".\320\321\n\211\205<.\322\323\n\"#\210\324\325 \203K.\326 \327Q\202L.\330\331\f\332\f\333\260\334\335\f\336\f\337\260.\340\341\f\342\f\343\260.\344 \203o.\345 \346Q\202p.\330\347\n\203.\350\322\323\n\"\351Q\202\200.\330\347.\352\353\354\260.,\207"

Re: OrgNV - alternative to deft

2020-03-23 Thread Juan José García-Ripoll
> I've got over 3,000 files taking up over 64 MB and it's still quite > fast. ... your work proves that using grep is not such a bad idea after all because of available memory and SSD's, as you say in the PDF. -- Juan José García Ripoll Quantum Information and Foundations Group http://q

OrgNV - alternative to deft

2020-03-23 Thread Juan José García-Ripoll
ch welcome. This is the first such "interactive" project I start with Emacs and I am unfamiliar with the programming conventions. http://juanjose.garciaripoll.com/blog/orgnv-navigate-notes-with-grep/index.html Cheers -- Juan José García Ripoll Quantum Information and Foundations Group ht

Bug: Macros are not replaced in table.el tables. [9.3 (9.3-elpa @ /Users/jlizarraga/.emacs.d/elpa/org-20191203/)]

2019-12-16 Thread Juan Lizarraga Cubillos
Ut enim ad ... | +-+-+ Many thanks Juan Emacs : GNU Emacs 26.3 (build 1, x86_64-apple-darwin18.2.0, NS appkit-1671.20 Version 10.14.3 (Build 18D109)) of 2019-09-02 Package: Org mode version 9.3 (9.3-elpa @ /Users/jlizarraga/.emacs.d/elpa/org-20191203/) cur

Re: [O] horizontal rules in table confuse org-table-iterate

2019-01-07 Thread Juan Pechiar
Hi Hendrik, Everything above the first hline is considered a table heading, and is therefore not included in calculations. This is explained in the docs: https://orgmode.org/manual/Updating-the-table.html On Mon, Jan 07, 2019 at 04:23:01PM +0100, Hendrik Tews wrote: > org-table-iterate does not

Re: [O] Export attributes for babel blocks

2017-10-02 Thread Juan Amiguet
cut here---end--->8--- Kind regards. -- Juan Amiguet Vercher Practising theorist All-round geek Polyglot polymath +41(0)774867913 On Mon, Oct 2, 2017 at 12:26 PM, Eric S Fraga <esfli...@gmail.com> wrote: > On Monday, 2 Oct 2017 at 08:46, Juan Ami

Re: [O] Export attributes for babel blocks

2017-10-02 Thread Juan Amiguet
and has no extra information for latex to pick up and format correctly. Kind regards. -- Juan Amiguet Vercher Practising theorist All-round geek Polyglot polymath +41(0)774867913 On Mon, Oct 2, 2017 at 9:05 AM, Thomas S. Dye <t...@tsdye.com> wrote: > Aloha Juan Amiguet, > > Juan

[O] Export attributes for babel blocks

2017-10-02 Thread Juan Amiguet
dvance. -- Juan Amiguet Vercher Practising theorist All-round geek Polyglot polymath +41(0)774867913

Re: [O] negating a filetag on an entry?

2016-07-15 Thread Juan Pechiar
On Fri, Jul 15, 2016 at 08:20:58AM -0400, John Kitchin wrote: > If I use a line like: > > #+FILETAGS: f16-06625 > > and I want a headline in the file to not have that tag, is that possible? There is a hack by David Maus to remove redundant (already inherited) tags from a heading:

Re: [O] What is the symbol/glyph that ... ?

2015-06-20 Thread Juan Pechiar
I (capital letter i) is bound to org-agenda-clock-in. You can check binding in your installation via describe-function: C-h f org-agenda-clock-in In the agenda buffer, you can check what is I bound to: C-h k I .j. On Sat, Jun 20, 2015 at 06:30:17AM +0100, Sharon Kimble wrote: What is

[O] Maxima code blocks does not work in windows revisited

2014-07-10 Thread Juan Alvaro Fuentes
skills are not very good, to say the least, and sending a patch is one more problem so I write this email if this can help anybody to makemaxima code blocks work in windows. Thanks, Juan Alvaro

Re: [O] Filter in Captured Column View

2014-03-18 Thread Juan Pechiar
Hi Mats, You can add :skip-empty-rows t to the columnview header, so that rows with no Status property will not show. This, however, will also hide the Release headers. Workaround is to add a dummy 'Status' property to these. Doc here: http://orgmode.org/manual/Capturing-column-view.html

Re: [O] Writing your book with orgmode and publishing it on Leanpub

2014-02-24 Thread Juan Reyero
/wallyqs/yet-another-jekyll-org-template https://github.com/eggcaker/jekyll-org/blob/master/convert.rb#L30 Thank you for the pointer. Best, jm On Mon, Feb 24, 2014 at 4:24 AM, Juan Reyero joa...@gmail.com wrote: Greetings, I've solved a couple of bugs in the Leanpub[1] markdown exporter[2

[O] Writing your book with orgmode and publishing it on Leanpub

2014-02-23 Thread Juan Reyero
Greetings, I've solved a couple of bugs in the Leanpub[1] markdown exporter[2] (cross-links within the book using ids were not working, and footnotes containing a colon neither). As far as I can tell using Orgmode and Leanpub to publish books is now quite feasible, and produces rather nice

Re: [O] [ANN] Markdown exporter for leanpub.com

2014-01-28 Thread Juan Reyero
Hi Bastien, On Tue, Jan 28, 2014 at 10:02 AM, Bastien b...@gnu.org wrote: If you make progress about this, I guess a lot of people would enjoy it. Thanks in advance! Cool. I've taken it a bit further, and it now supports my whole book[1], including latex formulas, cross links, code and

[O] [ANN] Markdown exporter for leanpub.com

2014-01-25 Thread Juan Reyero
Greetings, I have written a small markdown exporter that improves over the default one for publication with http://leanpub.com. In particular, it separates code from its output, and it handles footnotes properly. It's a very limited one-morning hack, but I thought it might be of interest to

[O] Org-Capture template overwriting headlines!?

2013-10-01 Thread Juan Alberto Sanchez
Hello everyone, I recently wrote a few org-capture template for myself and I just notice a strange issue with the captures. when I record a capturer if there was already something of the same level where the file+headline is inserting it overwrites the previews entry of the same level. For

Re: [O] advice needed: how do you guys sync org files between devices?

2013-07-02 Thread Juan G .
Xebar Saram zeltakc at gmail.com writes: Alan, a unison guide focused on org would be great as some of the guys mentioned. As an example, I use the following ~/.unison/Org.prf file to sync files between Org folders on a Debian Linux laptop and an Android phone: # Unison preferences label =

[O] Moving org-jekyll to org-mode 8.0

2013-05-18 Thread Juan Reyero
Greetings, Org-jekyll is a simple way to export jekyll blog posts from org-mode. Docs: http://juanreyero.com/open/org-jekyll/index.html Code: https://github.com/juanre/org-jekyll I have merged Jianing Yang's patch for 8.0 compatibility in org-jekyll, done some more small updates, and set as

Re: [O] Agenda bug: 'now' is on the wrong day

2012-12-27 Thread Juan Pechiar
Huy, please check your setting for org-extend-today-until: The hour when your day really ends. Must be an integer. This has influence for the following applications: - When switching the agenda to today. It it is still earlier than the time given here, the day recognized as TODAY

Re: [O] Multiline #+MACRO:

2012-12-03 Thread Juan Pechiar
On Mon, Dec 03, 2012 at 08:28:26PM +0100, Benny Simonsen wrote: I would like to make a multiline macro that contains somethiing like this: #+ATTR_HTML: class=centerimg file:./gallery/$1 is it possible, and how? Hi, \n inside a macro definition gets expanded as a new-line. So you can

[O] [BUG] org-agenda-goto-today from end of agenda buffer fails / OS-X only

2012-09-28 Thread Juan Pechiar
A very minor bug when jumping to today from agenda buffer, on Emacs for OS-X. To reproduce: On the weekly agenda buffer (C-c a a): - switch to a week other than the current week (e.g. press 'f') - go to the end of the buffer ('M-') - call org-agenda-goto-today (press '.') This operation

Re: [O] Condition Case Before First Headline

2012-08-22 Thread Juan Pechiar
I can reproduce this (latest git version) if the clocktable declaration lies before the first heading. Minimal example: bla bla #+BEGIN: clocktable :maxlevel 7 :block yesterday :scope tree1 #+END: bla bla * heading1 :LOGBOOK:

Re: [O] Tab to indent plain lists

2012-08-15 Thread Juan Pechiar
Hi Christopher, M-right and M-left on item 1.1 will promote / demote it, just as with headings. http://orgmode.org/manual/Plain-lists.html#Plain-lists Regards, .j. On Wed, Aug 15, 2012 at 05:49:52PM -0400, Christopher J. White wrote: I take miscellaneous meeting notes using plain lists. It's

Re: [O] agenda: why are tags enclosed with two :?

2012-07-18 Thread Juan Pechiar
The empty tag '::' means that your TODO 12345 has no tags. The :habit: tag was inherited from a parent heading. .j. On Wed, Jul 18, 2012 at 02:25:54PM -0400, mrigetitd...@safe-mail.net wrote: This is an except of my agenda: 14 days-agenda (W29-W31): Wednesday 18 July 2012 TODO 12345

Re: [O] [bug] spreadsheet does not replace some fields

2012-06-20 Thread Juan Pechiar
On Wed, Jun 20, 2012 at 02:26:42PM +0200, Michael Brand wrote: Isn't there a nasty spreadsheet bug? I'm quite confused that it has not been discovered yet so I start to doubt on my reliability. Hi, Michael. This is a feature, not a bug. From the manual (section 3.5.6 Column Formulas): If

Re: [O] Scheduling: Finishing a task 'Yesterday' OR Repeat on the same day

2012-06-17 Thread Juan Pechiar
On Sun, Jun 17, 2012 at 08:12:19PM -0400, William LÉCHELLE wrote: org-mode thinks I finished it for 'today' because it's after 0AM and schedules it for 'tomorrow'. This way, I'll forget it for one day. Is there a simple day to say: I finished this task yesterday without me having to

Re: [O] Converting table to properties

2012-06-06 Thread Juan Pechiar
On Wed, Jun 06, 2012 at 05:55:52PM +0530, Vikas Rawal wrote: I have a table under each of several headlines in an org file. Each table has a row of column labels and a row of data. I would like to convert the table into properties, with labels coming from first row and values of properties

Re: [O] relative row reference in table formula

2012-03-01 Thread Juan Pechiar
Hi Osiris, On Thu, Mar 01, 2012 at 11:01:39AM -0300, OSiUX wrote: is possible to define the reference to the last row of the following @II+$3, to avoid having to change the number of row (@4$3)? in this example does not calculate: | date | item |cost |

Re: [O] Export individual clock entries to HTML?

2012-03-01 Thread Juan Pechiar
On Thu, Mar 01, 2012 at 12:10:16PM -0500, Jesse W. Wilson wrote: After a year and a half with paper notebooks, I've decided to return to org-mode. :) One thing I could never figure out, though, is how to get org-export-as-html to export individual clock entries. The clock summary tables are

[O] Pushing *.org.gpg file to MobileOrg without prompting for the password

2012-02-09 Thread Juan Carlos Coruña
)) (setq org-mobile-files (cons ~/Dropbox/org/mysecrets.org.gpg (org-agenda-files))) (run-at-time 15 min (* 30 60) 'org-mobile-push) (add-hook 'kill-emacs-hook 'org-mobile-push) (setq epa-armor t) -- Juan Carlos Coruña: Magento, Python, Zope, Plone, Navision. http://oggers-blog.blogspot.com

Re: [O] custom agenda command with function doesn't work

2012-01-20 Thread Juan Queipo de Llano Moya
El 20/01/12 17:02, Bastien escribió: Hi Juan, Juan Queipo de Llano Moyajque...@ietcc.csic.es writes: If I define a custom agenda command like (without using the command): (q Tasks by member ((tags-todo +Resp=\Me\) (tags-todo +Resp= \Pablo\) (tags-todo +Resp=\Miguel\) (tags-todo +Resp

[O] custom agenda command with function doesn't work

2012-01-19 Thread Juan Queipo de Llano Moya
anyone help me. I'm sorry if this is dumb. Thanks -- *Juan Queipo de Llano Moya* Instituto de Ciencias de la Construcción Eduardo Torroja - CSIC c/ Serrano Galvache, 4 28033 MADRID jque...@ietcc.csic.es mailto:jque...@ietcc.csic.es Tel: 91 302 04 40 ext. 202

Re: [O] fast navigation

2011-12-15 Thread Juan Pechiar
Hi, Have a look at org-goto (C-c C-j) http://orgmode.org/manual/Motion.html#index-org_002dgoto-83 And also completion features (eg. iswitchb emulation) http://orgmode.org/manual/Completion.html#Completion Regards, .j. On Thu, Dec 15, 2011 at 05:39:41PM +0400, sergio wrote: Is it

Re: [O] [BUG] LaTeX subtree export gives spurious unbalanced begin/end_%s blocks error

2011-12-12 Thread Juan Pechiar
I have the same problem. It occurs on a 2nd pass through org-export-blocks-preprocess (in org-exp-blocks.el). 1st pass runs OK, 2nd pass gets the error condition. 1st pass processes the following: (buffer-substring match-start (point-max)) - #+begin_src emacs-lisp\n (message \Hello,

Re: [O] org table spreadsheet problem

2011-11-28 Thread Juan Pechiar
Hi, Please check the following thread on a similar problem: http://thread.gmane.org/gmane.emacs.orgmode/29877/focus=29920 There is a definition for 'vsumif' function you can use to add conditionally. Regards, .j. On Mon, Nov 28, 2011 at 03:32:05PM +0800, qkbey...@gmail.com wrote: hi,all.

Re: [O] feature request for org-store-log-note

2011-09-27 Thread Juan Pechiar
Hi John, Please check the variable org-log-states-order-reversed Documentation: Non-nil means the latest state note will be directly after heading. When nil, the state change notes will be ordered according to time. Regards, .j. On Tue, Sep 27, 2011 at 08:51:27PM -0400, John J Foerch

Re: [O] deadline :: schedualed :: or-later

2011-08-29 Thread Juan Pechiar
Hi Michael, Please check the purpose of SCHEDULED in org-mode: http://orgmode.org/manual/Deadlines-and-scheduling.html It is exactly what you mean by starting at a day or later. For a fixed date, just drop a timestamp inside a heading. Regards, .j. On Mon, Aug 29, 2011 at 01:38:26PM

[O] Automatically build lists of links to related articles

2011-08-19 Thread Juan Reyero
Greetings, I write articles in their own page, with a main heading as the title. I've written a function that builds a table with links to other articles that share tags with the heading under which the table is built (and that share the same language, assuming that the :lang: property is set).  

Re: [O] How to uniformly configure multiple org files

2011-08-05 Thread Juan Pechiar
Hi Darlan, Please check #SETUPFILE http://orgmode.org/manual/In_002dbuffer-settings.html Regards, .j. On Fri, Aug 05, 2011 at 02:54:30PM -0300, Darlan Cavalcante Moreira wrote: In each org file I usually put several configuration lines such as #+STARTUP, #+OPTIONS, #+LINK, etc. Is there

Re: [O] Crashing bug in spreadsheet

2011-07-22 Thread Juan Pechiar
Hi, '@II..@III' means all rows between the second and third h-lines. In your case, this is the same vsum(), so you get a circular reference. Try @I..@II instead Regards, .j. On Fri, Jul 22, 2011 at 06:48:36PM +, ken.willi...@thomsonreuters.com wrote: Hi, I had the following text in a

Re: [O] disable org-decrypt: auto-save-mode may cause leakage

2011-07-14 Thread Juan Pechiar
On Thu, Jul 14, 2011 at 02:22:32PM +0200, Karl Voit wrote: How can I auto-answer the question from the subject line with «n» (per default) any time it is asked? Hi Karl, You can customize this behaviour via org-crypt-disable-auto-save You probably have it set to 'ask'. Options exist for

Re: [O] [babel] using #+call for inline results

2011-06-22 Thread Juan Pechiar
Hi, The documentation for #+call is rather confusing: It is also possible to evaluate named code blocks from anywhere in an Org-mode buffer or an Org-mode table. #+call (or synonymously #+function or #+lob) lines can be used to remotely execute code blocks... Because aparently #+call

Re: [O] HTML5 presentations

2011-06-15 Thread Juan Pechiar
On Wed, Jun 15, 2011 at 07:19:46PM +0100, Eric S Fraga wrote: What browser(s) are people using for this? Conkeror doesn't work well at all and iceweasel (aka firefox) 3.5.19 sort of works. Hi, Opera 11 (OSX) seems to work OK, only that slides start to appear shifted the higher the slide

Re: [O] Export option for hiding TODO keyword

2011-05-12 Thread Juan Pechiar
Hi, Doesn't this option do what you want? #+OPTIONS: todo:nil Just tested it, and it works. Regards, .j. On Thu, May 12, 2011 at 10:27:20PM +0200, Sebastien Vauban wrote: I did not find a way to hide the TODO keywords from the headings, on export. Though, I think it would make sense in

Re: [O] turn headline(s) into plain list?

2011-05-06 Thread Juan Pechiar
Hi, 'C-c -' may help to some extent: Cycle the entire list level through the different itemize/enumerate bullets (‘-’, ‘+’, ‘*’, ‘1.’, ‘1)’) or a subset of them, depending on org-plain-list-ordered- item-terminator, the type of list, and its position17. With a numeric prefix argument N,

Re: [O] Org table with long lines visibility

2011-05-04 Thread Juan Pechiar
If you're running Emacs on a graphic environment, there is a mouse tooltip showing the whole cell contentes when you hover over a truncated cell. Regards, .j. On Wed, May 04, 2011 at 06:48:56PM +0100, Johnny wrote: I have a table with ridiculously long lines, so I have limited them by putting

Re: [O] DITAA and Unicode characters [babel]

2011-04-25 Thread Juan Pechiar
On Mon, Apr 25, 2011 at 01:13:41PM -0600, Eric Schulte wrote: I just pushed up a change to ob-ditaa which adds a new header argument, namely :java through which options can be passed to the java command. With that patch the following should work #+begin_src ditaa :file ... :cmdline -e utf-8

[O] DITAA and Unicode characters [babel]

2011-04-24 Thread Juan Pechiar
Hi, Out of the box, ob-ditaa does not work with non-ascii characters. I looked into the problem in order to answer a user request on StackOverflow (yes, there are org-mode questions posted there instead of here!).

Re: [O] Parsing org files with python

2011-04-23 Thread Juan Pechiar
NEO (No Emacs Org) has just been announced: http://lists.gnu.org/archive/html/emacs-orgmode/2011-04/msg00598.html Regards, .j. On Sat, Apr 23, 2011 at 05:29:24PM +0200, Georges Racinet wrote: Now the question : are you aware of a python library to parse org files ? The ultimate goal would

Re: [O] Apply custom CSS class to headings in HTML export?

2011-03-31 Thread Juan Pechiar
You can add custom styles via properties: In order to add styles to a subtree, use the :HTML_CONTAINER_CLASS: property to assign a class to the tree. In order to specify CSS styles for a particular headline, you can use the id specified in a :CUSTOM_ID: property.

Re: [O] hide #+ lines?

2011-03-19 Thread Juan Pechiar
Hi, If you are referring to directives such as export templates, etc., these can in general be placed anywhere in the document. For example, inside a COMMENT'ed heading at the end of the document, with folded view as default. You can also have all that in another file and use #+setupfile or

Re: [O] Delete in emacs on OS X

2011-03-10 Thread Juan Pechiar
Doing F1-k on backspace (delete key) gives: DEL (translated from backspace) runs the command delete-backward-char And with delete (Fn-delete) it says: DEL (translated from kp-delete) runs the command delete-backward-char So both are mapped to DEL. You can fix this with

Re: [O] Change default size of images?

2011-03-08 Thread Juan Pechiar
Add something like this together with your export headers: #+BIND: org-export-latex-image-default-option width=0.9\\textwidth,height=0.7\\textheight,keepaspectratio The general rule for +BIND is to provide LISP variables and values (See 12.2 Export Options in Org manual). You may need to

Re: [Orgmode] Help with translating the new variable `org-clock-clocktable-language-setup'

2011-02-15 Thread Juan Pechiar
Spanish: (es Archivo N Fecha y hora Tarea Tiempo TODO Tiempo total Tiempo archivo) I hope the TODO coincidence doesn't send org-mode into orbit. On Sun, Feb 13, 2011 at 02:03:49PM +0100, Bastien wrote: I've pushed a fix which introduces a new custom variable

Re: [Orgmode] Merging .org files

2011-01-30 Thread Juan Pechiar
Hola Pere, I'd suggest creating a master document with #includes of all your Orgmode files, and then export this master document as org-mode. http://orgmode.org/manual/Include-files.html#Include-files There is a :minlevel attribute to automatically demote included org-mode files. Saludos, .j.

Re: [Orgmode] Re: Project management Dynamic block per tag + [Babel]

2011-01-19 Thread Juan Reyero
On Thu, Dec 16, 2010 at 1:19 PM, Francesco Pizzolante f...@missioncriticalit.com wrote: Another option is to use a babel block and org-map-entries to spit out a simple list of tasks for each person: I've played a little with the code you've sent and here's what I end up with:

Re: [Orgmode] Blogging from org-mode

2011-01-17 Thread Juan Reyero
On Sun, Jan 16, 2011 at 9:57 PM, Tom Breton (Tehom) te...@panix.com wrote: Some months back I contributed improvements to org-html. My intent was to make it easy to post org files as blog posts. So this is a sort of delayed announcement. There are two packages that post to blogs from

Re: [Orgmode] Block conventions

2011-01-04 Thread Juan Pechiar
The keyboard shortcuts produce lowercase text (e.g. typing e[TAB] for a begin_example). It's not my personal preference, though. Regards, .j. On Tue, Jan 04, 2011 at 02:05:27PM -0500, Jeff Horn wrote: I was wondering whether it is common practice to indicate source code blocks with capital

Re: [Orgmode] How do I insert just a time stamp in a capture template?

2010-12-10 Thread Juan Pechiar
%(sexp) allows to include lisp expressions in a capture template. %(format-time-string %H:%M) should insert the current time. Regards, .j. On Wed, Dec 08, 2010 at 10:08:32PM +, Charles Cave wrote: I use the following template (l Log Time entry (file+datetree c:/charles/My

Re: [Orgmode] export comments in LaTeX ?

2010-11-22 Thread Juan Pechiar
Hi, Maybe you can easily regexp-replace all 'COMMENT' keywords for a tag (like :noexport:). Then there are header options for tags which should be included / excluded on export. #+EXPORT_SELECT_TAGS: Tags that select a tree for export #+EXPORT_EXCLUDE_TAGS: Tags that exclude a tree

Re: [Orgmode] Re: export comments in LaTeX ?

2010-11-22 Thread Juan Pechiar
.j. On Mon, Nov 22, 2010 at 10:53:20PM +0100, e20100633 wrote: Juan Pechiar j...@pechiar.com writes: Maybe you can easily regexp-replace all 'COMMENT' keywords for a tag (like :noexport:). Then there are header options for tags which should be included

Re: [Orgmode] Change DOCTYPE declaration?

2010-11-18 Thread Juan Pechiar
On Thu, Nov 18, 2010 at 10:35:50AM -0500, Uriel Avalos wrote: The only problem is that #+BIND is not working. I tried setting org-export-allow-BIND to t and it still does not work. Ideas? Did you C-c C-c over (any of the) option headers? This is required for org-mode to re-parse all options in

Re: [Orgmode] Change DOCTYPE declaration?

2010-11-17 Thread Juan Pechiar
Hi, The DOCTYPE declaration is hardcoded inside org-html.el You may change it by defining a hook and modifying the generated HTML. Have a look at the following message, where they get rid of the declaration: http://lists.gnu.org/archive/html/emacs-orgmode/2010-06/msg00063.html you may add some

Re: [Orgmode] Change DOCTYPE declaration?

2010-11-17 Thread Juan Pechiar
-specific export option) Juan Pechiar j...@pechiar.com wrote: The DOCTYPE declaration is hardcoded inside org-html.el You may change it by defining a hook and modifying the generated HTML. Have a look at the following message, where they get rid of the declaration: http://lists.gnu.org

Re: [Orgmode] Change DOCTYPE declaration?

2010-11-17 Thread Juan Pechiar
On Wed, Nov 17, 2010 at 05:25:05PM -0500, Nick Dokos wrote: #+BIND: uriel-change-doctype t but a good (if not scalable) solution to the problem. I have a question however: why is it that hooks can't be set using this mechanism? From my limited understanding, the #+BIND directive is for

Re: [Orgmode] proposal for enhanced org-get-priority function

2010-11-15 Thread Juan Pechiar
I'm against feature-itis. Orgmode has been losing some of its elegance to feature requests. And by 'elegance' I mean ease of learning and using and maintaining, and not having to decide between N different ways of achieving something just because so many border-case features exist. The agenda is

Re: [Orgmode] Smart vsum

2010-11-15 Thread Juan Pechiar
| |---+--+---| #+TBLFM: $totalTime = deg(vsum(@-i...@-i)); f2 Is this possible? If yes, how would I do this? ---BeginMessage--- On 9/7/10 2:56 AM, Juan wrote: A very complex way of not adding the extra column: | name | a | b | c | |--++---+---| | foo | 1 | 2 | 3

Re: [Orgmode] [RFI] Using DISQUS on certain pages

2010-11-09 Thread Juan Reyero
On Tue, Nov 9, 2010 at 3:43 AM, Jeff Horn jrhorn...@gmail.com wrote: Suppose I have a project defined (say, org-blog) that I use to generate blog posts, and I want to use Disqus to track comments. Further suppose I don't want to use a templating framework such as jekyll to transform org into

Re: [Orgmode] [RFI] Using DISQUS on certain pages

2010-11-09 Thread Juan Reyero
, it might have changed. But what's there seems to work. The whole setup is kind of tricky, because I wanted to support a multilanguage site that wasn't a nightmare to update, but I think the above covers what you need. Best, jm On Tue, Nov 9, 2010 at 9:01 AM, Juan Reyero joa...@gmail.com wrote

<    4   5   6   7   8   9   10   >