Re: [O] Make org-fill-paragraph behave as Emacs 26.1 fill-paragraph

2018-06-17 Thread Vicente Vera
Nice, thanks. The 'next' branch will be merged with 'master' for Org 9.2 release? El jue, jun 14, 2018 16:07, Nicolas Goaziou escribió: > Hello, > > Vicente Vera writes: > > > Since Emacs 26.1 ‘fill-paragraph’ doesn't change the buffer contents > > if no filling

[O] Make org-fill-paragraph behave as Emacs 26.1 fill-paragraph

2018-06-01 Thread Vicente Vera
Hi. Since Emacs 26.1 ‘fill-paragraph’ doesn't change the buffer contents if no filling is needed on the current paragraph. It would be nice if ‘org-fill-paragraph’ worked the same way. Not a very relevant change to make, really, but still. Just to avoid those pesky false-positive asteriks!

Re: [O] "Minimal" LaTeX export

2017-12-16 Thread Vicente Vera
That is amazing. Thank you very much! Yes, that's a good idea (include files); will look into it. El dic 16, 2017 2:46 PM, "Berry, Charles" <ccbe...@ucsd.edu> escribió: > On Dec 16, 2017, at 8:48 AM, Vicente Vera <vicente...@gmail.com> wrote: > > I'm try

[O] "Minimal" LaTeX export

2017-12-16 Thread Vicente Vera
Hello I'm trying to export a simple document to a LaTeX buffer, but just the main content, without a preamble nor the "document" environment. The main objective is to export several Org documents which are parts of a larger LaTeX report. These parts are then included by means of the "input"

Re: [O] exporting markdown with tables

2017-06-04 Thread Vicente Vera
iting. > > Thanks! > -pd > > On Sat, Jun 3, 2017, at 12:31 PM, Vicente Vera wrote: >> There are several Markdown "forks" which have different sets of features. >> >> AFAIK the markdown exporter in Org is based upon John Gruber's >> Markdown, which does

Re: [O] exporting markdown with tables

2017-06-03 Thread Vicente Vera
There are several Markdown "forks" which have different sets of features. AFAIK the markdown exporter in Org is based upon John Gruber's Markdown, which does not include a syntax for tables. Thus all tables in Org documents get exported as HTML. A workaround is to wrap your Org tables as:

[O] Git repository error

2017-05-25 Thread Vicente Vera
Hi. For a while i've been getting this error upon running 'make up0' from my local Org repository: fatal: read error: Connection reset by peer

Re: [O] Complex conversion of text to org table

2017-03-13 Thread Vicente Vera
e sugar | > | 1 | teaspoon| baking powder | > | 1/2 | teaspoon| baking soda | > | 1/2 | teaspoon| salt | > | 1 | | egg | > | 2 | tablespoons | butter melted | > | | | cooking spray |

Re: [O] Complex conversion of text to org table

2017-03-12 Thread Vicente Vera
Hello. In this case Org splits into columns everytime it sees a space, so "baking soda" ends up in two columns. A brute force solution: replace the spaces between words that shouldn't be put into separated columns with an underscore: 1_cup all-purpose_flour Convert it to an Org table and then do

Re: [O] resize org-table when exporting to latex

2017-02-28 Thread Vicente Vera
This requires some LaTeX plumbing work. A few tricks: First, use tabularx as suggested to stretch the columns automatically as the size of the table changes. - Use a smaller font size, such as :font \scriptsize - Enlarge the table horizontally (for example: :width 0.8\paperheight) - Put the page

Re: [O] Strings converted to numbers in Org table?

2017-02-27 Thread Vicente Vera
. 2017-02-27 17:33 GMT+00:00 Nicolas Goaziou <m...@nicolasgoaziou.fr>: > Hello, > > Vicente Vera <vicente...@gmail.com> writes: > > > It would be useful to have a header argument to prevent this > > conversion. Probably somebody else has had the same issu

Re: [O] Strings converted to numbers in Org table?

2017-02-27 Thread Vicente Vera
ll)) ;; Override default behavior (fset 'org-babel-read 'test-other-org-babel-read) #+END_SRC It would be useful to have a header argument to prevent this conversion. Probably somebody else has had the same issue? 2017-02-27 13:49 GMT+00:00 Vicente Vera <vicente...@gmail.com>: > Pr

Re: [O] Strings converted to numbers in Org table?

2017-02-27 Thread Vicente Vera
hed. 2017-02-24 1:40 GMT+00:00 Vicente Vera <vicente...@gmail.com>: > Hello. I'm trying to get an Org table from an R data frame but data is > lost in the process. > > Here is a MWE. Note that: > > - In R every value is a string. "var2" contains no numbers (is a

[O] Strings converted to numbers in Org table?

2017-02-23 Thread Vicente Vera
Hello. I'm trying to get an Org table from an R data frame but data is lost in the process. Here is a MWE. Note that: - In R every value is a string. "var2" contains no numbers (is a character vector). - Upon conversion to a table Org removes the zero from "var2" last value.

Re: [O] Exporting blocks of text completely verbatim

2017-02-09 Thread Vicente Vera
ASCII/Latin-1/UTF-8 export") This doesn't seem to be related to verbatim text. 2017-02-09 19:19 GMT+00:00 Charles C. Berry <ccbe...@ucsd.edu>: > On Thu, 9 Feb 2017, Vicente Vera wrote: > > Hello. This discussion >> https://lists.gnu.org/archive/html/emacs-orgmode/2017

Re: [O] Exporting blocks of text completely verbatim

2017-02-09 Thread Vicente Vera
PLE > > what you want? > > John > > --- > Professor John Kitchin > Doherty Hall A207F > Department of Chemical Engineering > Carnegie Mellon University > Pittsburgh, PA 15213 > 412-268-7803 > @johnkitchin > http://kitchingroup.c

[O] Exporting blocks of text completely verbatim

2017-02-09 Thread Vicente Vera
Hello. This discussion https://lists.gnu.org/archive/html/emacs-orgmode/2017-02/msg00163.html points out that Org tables are converted to HTML tables when exporting through "ox-md". Leaving Markdown-related issues aside, I've stumbled upon this problem a while back. It is suggested that wrapping

Re: [O] org-babel-capitalize-example-region-markers

2017-01-27 Thread Vicente Vera
Nice, thank you. 2017-01-27 1:12 GMT+00:00 Kyle Meyer : > Kyle Meyer writes: > > [...] > > > Here's a patch. I'll apply it to master in a day or two if there are no > > objections. > > Applied with 9c111f63 (with :version changed from 25.2 to 26.1). > > -- >

[O] org-babel-capitalize-example-region-markers

2017-01-24 Thread Vicente Vera
Hello. Just noticed that example block headings wrapping code evaluation results appear downcased (arrows added): #+RESULTS: #+begin_example <= ... some result... #+end_example <= In ob-core.el, line 2438 there's a "hidden" variable that controls wether the headings appear upcased:

Re: [O] Issues when compiling Org master from source in GNU Emacs 25.0.50.1

2016-01-20 Thread Vicente Vera
Hello Kyle, Thanks for your reply. I see now why `font-lock-fontify-buffer' hasn't been replaced. 2016-01-20 12:28 GMT-03:00 Kyle Meyer <k...@kyleam.com>: > Hi Vicente, > > Vicente Vera <vicente...@gmail.com> writes: > >> Hello >> >> When I started

[O] Issues when compiling Org master from source in GNU Emacs 25.0.50.1

2016-01-20 Thread Vicente Vera
Hello When I started using GNU Emacs compiled from the emacs25 branch two issues come up consistently during Org make routine. These issues are related to changes in the next Emacs version. [...] Compiling /home/user/repositories/org-mode/lisp/org-src.el... In org-src-font-lock-fontify-block:

Re: [O] Trouble with autofill mode

2015-08-02 Thread Vicente Vera
Hello, This StackExchange question might help you out: https://emacs.stackexchange.com/questions/12392/prevent-fill-paragraph-from-breaking-latex-citations-in-org-mode (Only if I got your question right...)

Re: [O] Installing from Git

2015-05-14 Thread Vicente Vera
Hello. This is my Org-from-Git recipe: After you've cloned the repository (master branch), run make and then edit the local.mk file. There you'll find a variable named prefix; change it according to your Emacs installation. In my setup, Emacs files live in /usr/share/emacs/ so I leave prefix

[O] [PATCH] TINYCHANGE Allow attaching SVG images by default in exported ODT documents

2015-04-27 Thread Vicente Vera
Hello list. The patch below changes org-odt-inline-image-rules value, thus allowing exported ODT documents to include SVG images by default. From 991f4add7c644902bd6bcd2a5b9eb01e1ea5ade9 Mon Sep 17 00:00:00 2001 From: Vicente Vera Parra vicente...@gmail.com Date: Mon, 27 Apr 2015 18:02:22 -0300

Re: [O] [release_8.3beta-1062-gce4e64] Error when exporting to ODT

2015-04-23 Thread Vicente Vera
The patch works. Thank you. About 2bdc661fde75ed226b19c802ecd31ce12d2ec7e1, I don't use latexmlmath so can't comment on that.

[O] [release_8.3beta-1062-gce4e64] Error when exporting to ODT

2015-04-22 Thread Vicente Vera
Hello list. Just tried to export an Org file to ODT but this error appeared (taken from the Messages buffer): ... LaTeX to MathML converter not available. Formatting LaTeX using verbatim OpenDocument export failed: Assertion failed: (funcall predicate element info) Tried with a MWE and with a

Re: [O] Error when using org-ctrl-c-ctrl-c to add tags

2015-04-19 Thread Vicente Vera
Worked for me. 2015-04-19 13:05 GMT-03:00 Marc Ihm m...@ihm.name: Okay, this one only tries to fix, what seems broken ... Could someone please check ? best regards Marc diff --git a/lisp/org.el b/lisp/org.el index 24b3a69..8a00847 100755 --- a/lisp/org.el +++ b/lisp/org.el @@

Re: [O] Error when using org-ctrl-c-ctrl-c to add tags

2015-04-19 Thread Vicente Vera
Hello Marc. Yes, upon further inspection it seems the problem is in org-icompleting-read. This function is complaining that org-tags-completion--function---one of its arguments---is not a list. 2015-04-19 11:36 GMT-03:00 Marc Ihm m...@ihm.name: Vicente Vera vicente...@gmail.com writes: Hi

Re: [O] Error when using org-ctrl-c-ctrl-c to add tags

2015-04-18 Thread Vicente Vera
Hi. Don't think there are more details to provide. The error message appears upon pressing C-c C-c (bound to the org-ctrl-c-ctrl-c command) on a headline, doesn't matter which level. It happened in 3 different Org files, one of which was created for testing. Also tried with emacs -q but the error

[O] Error when using org-ctrl-c-ctrl-c to add tags

2015-04-17 Thread Vicente Vera
Hello. This shows up when trying to add tags to a headline with org-ctrl-c-ctrl-c: apply: Wrong type argument: listp, org-tags-completion-function Org-mode version 8.3beta (release_8.3beta-1045-gd8494b @ /usr/local/share/emacs/site-lisp/org/) GNU Emacs 24.5.50.1 (i686-pc-linux-gnu, GTK+ Version

Re: [O] [PATCH] TINYCHANGE Fix some spanish translations in ox.el

2015-04-09 Thread Vicente Vera
Exactly. Since only some entries include the :ascii property I thought it wouldn't hurt to omit them. Here's a more complete patch which includes both :ascii and :html properties: From b7de61bb9d57b1790a7fe97d6e478542e894a9d0 Mon Sep 17 00:00:00 2001 From: Vicente Vera Parra address@hidden Date

[O] [PATCH] TINYCHANGE Fix some spanish translations in ox.el

2015-04-08 Thread Vicente Vera
Sep 17 00:00:00 2001 From: Vicente Vera Parra address@hidden Date: Wed, 8 Apr 2015 21:12:07 -0300 Subject: [PATCH] ox: Fix spanish translations * lisp/ox.el (org-export-dictionary): Fix spanish translations. Also add default spanish translation for Table of Contents. TINYCHANGE --- lisp/ox.el

Re: [O] Tiny typo in exported LaTeX code

2015-04-05 Thread Vicente Vera
Thank you! 2015-04-05 14:05 GMT-03:00 Nicolas Goaziou m...@nicolasgoaziou.fr: Hello, Vicente Vera vicente...@gmail.com writes: Hello. Just now I exported a minimal Org file to LaTeX (no fancy stuff, just a title, two headlines and harmless text) and the date is messed up. The offending

[O] Tiny typo in exported LaTeX code

2015-04-05 Thread Vicente Vera
Hello. Just now I exported a minimal Org file to LaTeX (no fancy stuff, just a title, two headlines and harmless text) and the date is messed up. The offending line is: \date{$\backslash$oday} Org-mode version 8.3beta (release_8.3beta-1003-gfc790f @ /usr/local/share/emacs/site-lisp/org/) GNU

Re: [O] Undocumented command: org-table-blank-field (C-c SPC)

2014-12-03 Thread Vicente Vera
Great, thank you. I'll start looking into how could I send patches (I'm more of a 'clone/pull' Git user). 2014-12-01 13:05 GMT-03:00 Bastien b...@gnu.org: Hi Vicente, Vicente Vera vicente...@gmail.com writes: Hello. I was browsing Emacs StackExchange and found this question: https

Re: [O] Export backends are loaded after code block evaluation

2014-11-24 Thread Vicente Vera
Nope, no harm has been done. Still curious about it though. IMO, there's no reference to 'ox.el' in the babel source files so I don't understand how is this possible. 2014-11-23 13:36 GMT-03:00 Nicolas Goaziou m...@nicolasgoaziou.fr: Hello, Vicente Vera vicente...@gmail.com writes: Hello

Re: [O] Export backends are loaded after code block evaluation

2014-11-24 Thread Vicente Vera
you for your patience. Now I can sleep soundly. 2014-11-24 16:42 GMT-03:00 Nicolas Goaziou m...@nicolasgoaziou.fr: Vicente Vera vicente...@gmail.com writes: Nope, no harm has been done. Still curious about it though. IMO, there's no reference to 'ox.el' in the babel source files so I don't

[O] Export backends are loaded after code block evaluation

2014-11-23 Thread Vicente Vera
Org-mode version 8.3beta (release_8.3beta-584-g3953cb @ /usr/local/share/emacs/site-lisp/org/) GNU Emacs 25.0.50.1 (i686-pc-linux-gnu, GTK+ Version 3.14.4) of 2014-11-17 Hello. Just noticed that after evaluating a code block with C-c C-c (org-babel-execute-src-block?) all export backends stored

[O] Undocumented command: org-table-blank-field (C-c SPC)

2014-11-18 Thread Vicente Vera
Hello. I was browsing Emacs StackExchange and found this question: https://emacs.stackexchange.com/questions/15/how-to-clear-a-cell-in-an-org-mode-table. One of the answers mentions the org-table-blank-field command and that For some reason it's missing from the manual.. I'm using Org

Re: [O] Cannot build documentation (release_8.3beta-155-g82b64d)

2014-08-08 Thread Vicente Vera
I think you're right. It seems TeX Live 2014 installed its own texinfo over the one i got from the debian stable repository, but i'm not 100% sure. Thanks for the help! 2014-08-05 19:37 GMT-04:00 Vicente Vera vicente...@gmail.com: Yes, i had an old makeinfo (4.13) that lives in the debian

Re: [O] Cannot build documentation (release_8.3beta-155-g82b64d)

2014-08-05 Thread Vicente Vera
to preserve. make[1]: *** [org] Error 1 make[1]: Leaving directory `/home/vicente/descarga/org-master-git-20140804/org-mode/doc' make: *** [info] Error 2 2014-08-01 15:43 GMT-04:00 Vicente Vera vicente...@gmail.com: Hello, recently I tried to install the latest development snapshot from Git through

Re: [O] Cannot build documentation (release_8.3beta-155-g82b64d)

2014-08-05 Thread Vicente Vera
Vicente Vera vicente...@gmail.com: Hello. Started another clean cloned local repository to try building the documentation again and the errors persist. 'M-x org-version' gives: Org-mode version 8.3beta (release_8.3beta-167-g003edd @ /usr/local/share/emacs/site-lisp/org/). I installed everything

[O] Cannot build documentation (release_8.3beta-155-g82b64d)

2014-08-01 Thread Vicente Vera
Hello, recently I tried to install the latest development snapshot from Git through the following procedure, which has worked for me perfectly until now: - make cleanall - make up0 - make install When the build system gets to creating the documentation (just the info file) these error lines

Re: [O] Installing from git

2014-07-02 Thread Vicente Vera
Thank you for your replies, I think i'm beginning to understand the process. These are the changes I made to local.mk: prefix = /usr/local/share datadir = /usr/local/share/emacs/24.4.50/etc/org (actually, this directory belongs to the built-in Org installation) Then: $ make $ sudo make install

Re: [O] Installing from git

2014-07-01 Thread Vicente Vera
the built-in org-mode installation? 2014-06-30 18:51 GMT-04:00 John Hendy jw.he...@gmail.com: On Mon, Jun 30, 2014 at 5:44 PM, Vicente Vera vicente...@gmail.com wrote: Hello. I'm quite confused with the installation options. Recently started out a Debian base system and compiled Emacs

[O] Installing from git

2014-06-30 Thread Vicente Vera
Hello. I'm quite confused with the installation options. Recently started out a Debian base system and compiled Emacs from the bzr repository. That came out fine, so I ran 'make install' and now Emacs 24.4.50 sits in /usr/local/bin, /usr/local/share, etc. I want to install the master branch of

[O] PNG R plots size

2013-12-17 Thread Vicente Vera
Hello. I have a source code block for an R plot with the following header: #+BEGIN_SRC R :results output graphics :file figure1.png :exports results It works, but the default size is too small. When I change the extension to SVG or PDF (i.e. when exporting to LaTeX, but is not what i need right

[O] (idea?) fontification of live code blocks

2013-11-01 Thread Vicente Vera
Hello. I don't know if this has been mentioned before, but it would be nice to have fontified live code blocks, since sometimes it's hard to clearly distinguish---at least at first sight---between regular text and something like, for example, src_R[:session

[O] problem with titles in odt export

2013-10-27 Thread Vicente Vera
Hello. I think there's a problem when exporting to odt format with certain characters in #+TITLE lines. For example, exporting an org file with ñ (ntilde in HTML) or letters with acute accents (aacute, oacute, etc.) in the title---my document is written in spanish---results in a file with no title

Re: [O] latex to png not working

2013-10-14 Thread Vicente Vera
Vicente Vera vicente...@gmail.com Hello. I'm trying to export an Org file with some basic latex code (block with #+BEGIN_SRC latex :file block1.png and tex:dvipng in #+OPTIONS:) but this shows up in the *Messages* buffer: org-babel-exp processing... executing Latex code block (block1

[O] latex to png not working

2013-10-13 Thread Vicente Vera
Hello. I'm trying to export an Org file with some basic latex code (block with #+BEGIN_SRC latex :file block1.png and tex:dvipng in #+OPTIONS:) but this shows up in the *Messages* buffer: org-babel-exp processing... executing Latex code block (block1)... Failed to create dvi file from