Try with:
(setq org-babel-use-quick-and-dirty-noweb-expansion t)
This setting is much, much faster, by the way.
On 2/5/14, Eric Schulte wrote:
> Samuel Wales writes:
>
>> hi eric,
>>
>> #+BEGIN_SRC org :results verbatim output :noweb yes :noweb-ref whatever
>> a
>> #+END_SRC
>> # #+BEG
Ah yes, this won't work if your font draws characters at variable
widths. I use Chinese a lot, and some Chinese fonts will still create
misalignment, simply because a Chinese character as drawn as 192% the
width of an ascii character. Dunno how to get around that.
On 02/11/14 10:50 AM, Steffan Ive
Thanks Eric - I've used this patch but I doesn't seem to solve the problem.
I'm working on an earlier suggestion by Michael about the unicode type that
my Tibetan font is. I very much appreciate all this help!
Steffan
On Sun, Feb 9, 2014 at 8:09 PM, Eric Abrahamsen wrote:
> Bastien writes:
>
>
Hi Achim,
* Achim Gratz [10. Feb. 2014]:
> Bastien writes:
>> So C-c : would call org-edit-src-code and C-c C-: would convert the
>> region to fixed-width region.
>
> You cannot enter C-: in some terminals because it would require
> simultaneous processing of shift and control (these terminals ig
Yes! That solved it. Thank you!
On Mon, Feb 10, 2014 at 4:10 AM, Bastien wrote:
> Hi Peter,
>
> Peter Salazar writes:
>
> > However, when I try to export to HTML, I get "Invalid format string"
>
> You need to replace "%" with "%%" in the preamble string.
>
> HTH,
>
> --
> Bastien
>
is possible to use a cell reference to a table
or spreadsheet as a property value?
Example:
* lunch
:PROPERTIES:
:CASH: #lunchtable:@>$2
:END:
#+NAME: lunchtable
| date |cash |
|--+-+
| [2014-02-10 lun] | 16.
perhaps this is possible:
c-c ' -> c-c c-x '
Bastien writes:
> So C-c : would call org-edit-src-code and C-c C-: would convert the
> region to fixed-width region.
You cannot enter C-: in some terminals because it would require
simultaneous processing of shift and control (these terminals ignore
shift while control is pressed).
Regards,
Ach
On Mon, Feb 10, 2014 at 10:43 AM, Nicolas Goaziou wrote:
> Hello,
>
> Bastien writes:
>
>>> So, my proposal would be that if either are present, Org could
>>> (should?) use html image specifications instead of markdown.
>>
>> I'll let Nicolas decide on this.
>
> FWIW, I think it makes sense to sw
Hello,
Alan Schmitt writes:
> Nicolas Goaziou writes:
>
>> It is also possible to do something in-between, i.e., tell Org about
>> a few selected keywords and stuff the others into :options. This is what
>> is done for images. Org knows about :height and :width and uses :options
>> for everythi
Hello,
Bastien writes:
>> So, my proposal would be that if either are present, Org could
>> (should?) use html image specifications instead of markdown.
>
> I'll let Nicolas decide on this.
FWIW, I think it makes sense to switch to HTML when attributes are
given. Though, I don't use Markdown, s
Hello,
Bastien writes:
> I think the whole thread calls for a variable to let the user
> configure the way she wants references to be inserted.
>
> Because \nameref could be useful in LaTeX/Beamer too.
Internal links in Beamer are complicated, because there's no way to know
which slide we're re
Hi,
first of all, please report your Org version with
M-x org-version RET
When installing from ELPA, you need to do it from a fresh Emacs
session, where Org has not been loaded yet.
Then, in your emacs.el, you need to call `package-initialize'
before any Org function is called:
(require 'pac
Hi Bastien,
Am Mon, Feb 10, 2014 at 03:42:59PM +0100, Bastien wrote:
> Well, another semi-wild guess is that maybe the ArchLinux package does
> not take care of creating the proper autoloads.
>
> Go to /usr/share/emacs/site-lisp/org and see if you have an accurate
> org-loaddefs.el (should be ~10
windows and pip/easy_install are funny sometimes.
I often do something like this:
#+BEGIN_SRC python
from setuptools.command import easy_install
easy_install.main( ["-U","requests"] )
#+END_SRC
#+RESULTS:
#+begin_example
Searching for requests
Reading http://pypi.python.org/simple/requests/
Best
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
Hi,
I recently made the jump to install my first ELPA package
because capture wasn't available in Emacs 24.3.1's org-mode,
and installed org 20140130.
Today I tried working with links to Gnus and they failed
("No match - create this as a new heading?"). So I looked
around and tried M-x load-libr
Igor Sosa Mayor writes:
> Thanks again. I have
> (add-to-list 'load-path "/usr/share/emacs/site-lisp/org")
> (add-to-list 'load-path "/usr/share/emacs/site-lisp/org_contrib/lisp")
> (require 'org)
>
> at the very begin of .emacs.el. It does not work. (neither in mu4e nor
> in mail-mode).
Well,
Hi, Nicolas,
> The new regexps still don't look right, as they can match an additional
> dash:
>
> (string-match "---\\([^-]?\\)" "") => 0
>
> I'm not sure about the intent of this regexp, that is whether
> consecutive mdashes or ndashes are allowed or not.
>
> A correct version could be eit
Hi John!
* John Kitchin wrote:
>
> I think you could do this via requests directly. It could be done in emacs:
> https://github.com/tkf/emacs-request
Thanks for the pointer.
I evaluated it and it seems not that good for my requirements
because I need it mainly for documenting stuff/issues/...
Hi Bastien,
Am Mon, Feb 10, 2014 at 09:54:06AM +0100, Bastien wrote:
> Yes. Again, the issue is that, when turn-on-orgstruct++ is called
> within a mu4e buffer, org-mode is not yet loaded from the correct
> location -- otherwise the error would be different.
>
> So: do all what you can do to mak
On Mon, Feb 10, 2014 at 12:06 PM, Bastien wrote:
> Hi Mark,
>
> Mark Janssen writes:
>
> > If I insert a http:// link containing question marks, the verbatim
> > link being inserted in the org document has the question mark
> > escaped.
>
> I can't reproduce this with latest stable or unstable O
On Mon, Feb 10, 2014 at 10:01:38AM +0100, Bastien wrote:
> Hi Adam,
>
> Adam Spiers writes:
>
> > Did any progress ever get made on this
> > front since 2006, and if not, is it ever likely to?
>
> I think this is `org-extend-today-until':
>
> org-extend-today-until is a variable defined in `org.el
Hello,
Bastien writes:
> Somehow this calls for a way to let a backend use several affiliated
> keywords. For example you would have:
>
> #+ATTR_HTML: :width 400px
> #+ATTR_BLOG: :lineno t
Org already provided a syntax to number lines in source blocks. Couldn't
it be used instead?
#+begin_s
Bastien wrote:
> What do you think of `C-c :', as suggested in my reply to Thomas?
I'd favor a common `C-c C-' prefix for all moved key bindings.
Best regards,
Seb
--
Sebastien Vauban
Bastien,
Bastien wrote:
> "Sebastien Vauban" writes:
>> Bastien wrote:
>>> (This one I knew. My own recent discovery was C-h : to directly jump
>>> to the definition of a symbol. Pretty useful.)
>>
>> ╭
>> │ C-h : is undefined
>> ╰
>>
>> on my side. To what is it bound on your side
Hi Mark,
Mark Janssen writes:
> If I insert a http:// link containing question marks, the verbatim
> link being inserted in the org document has the question mark
> escaped.
I can't reproduce this with latest stable or unstable Org version.
What version of Org and Emacs are you using?
M-x org
On Sun, Feb 9, 2014 at 11:07 PM, Mark Janssen wrote:
>
>
>>
> Seems (setq org-url-hexify-p nil) will give me the required behavior.
>
> Mark
>
>
This didn't work, so I investigated a bit further. Because the = sign is
included in org-link-escape-chars, the org-url-hexify-p value will not make
anu
"Sebastien Vauban"
writes:
> Bastien wrote:
>> (This one I knew. My own recent discovery was C-h : to directly jump
>> to the definition of a symbol. Pretty useful.)
>
> ╭
> │ C-h : is undefined
> ╰
>
> on my side. To what is it bound on your side?
find-function
C-h : runs the
Bastien gnu.org> writes:
>
> Hi Rajat,
>
> rajat mukherjee cytel.com> writes:
>
> > Is this possible? Please help.
>
> See the manual:
>
> (info "(Org)Applying custom styles")
>
> Thanks,
>
Thanks Bastien. I have but it seems too trivial for a "custom".
I can get the right border just
Hi Adam,
Adam Spiers wrote:
> I just had an awesome conversation with Sacha about more effective
> daily/weekly reviewing with org-mode :-) One of the things we talked
> about was quantifying the number of tasks (TODO keywords) in any given
> state, as a means of becoming more aware of your progr
Hello Bastien,
Bastien wrote:
> (This one I knew. My own recent discovery was C-h : to directly jump
> to the definition of a symbol. Pretty useful.)
╭
│ C-h : is undefined
╰
on my side. To what is it bound on your side?
Best regards,
Seb
--
Sebastien Vauban
web.de> writes:
> I'm trying to use a custom setup for `org-mode 8.2` on `Windows 7`, but it
>does not work as expected.
Sorry for pushing that, but is very annoying to have to load the file
manually at each startup.
Could anyone tell me if I'm doing something wrong here?
My ´Emacs`version:
Hi Peter,
Peter Salazar writes:
> However, when I try to export to HTML, I get "Invalid format string"
You need to replace "%" with "%%" in the preamble string.
HTH,
--
Bastien
Hi John,
John Hendy writes:
> So, my proposal would be that if either are present, Org could
> (should?) use html image specifications instead of markdown.
I'll let Nicolas decide on this.
In the meantime, I find the attached patch useful.
It uses the file-name instead of [img] when the image
Achim Gratz writes:
> I'd think you need to curl the pinky at least unless you're talking
> about a laptop keyboard with a favorable position for the Ctrl key.
>
> It's really a bad thing if you've developed certain types of RSI and may
> even be impossible if you have coordinative disabilities o
Hi Adam,
Adam Spiers writes:
> Did any progress ever get made on this
> front since 2006, and if not, is it ever likely to?
I think this is `org-extend-today-until':
org-extend-today-until is a variable defined in `org.el'.
Its value is 0
Documentation:
The hour when your day really ends. Mu
Hi Rajat,
rajat mukherjee writes:
> Is this possible? Please help.
See the manual:
(info "(Org)Applying custom styles")
Thanks,
--
Bastien
Karl Voit writes:
> In fact, I never use the original left CTRL key at all. And more or
> less thanks to bad habit, I never use the right CTRL key.
Yep, I'm exactly in the same boat.
--
Bastien
Hi Igor,
Igor Sosa Mayor writes:
> It is not soo important. I just want to get rid of this issue, because
> I tend to use often lists in my emails...
Yes. Again, the issue is that, when turn-on-orgstruct++ is called
within a mu4e buffer, org-mode is not yet loaded from the correct
location --
Hi Robert,
Robert Klein writes:
> I posted the latest three posts on http://www.xyzzy.de using
> ox-blog.
Neat, thanks!
> I can use #+ATTR_HTML, but I wasn't sure about using new attributes,
> e.g. :highlight and :lineno for source blocks. I didn't want to pollute
> ATTR_HTML with things that
I think the whole thread calls for a variable to let the user
configure the way she wants references to be inserted.
Because \nameref could be useful in LaTeX/Beamer too.
And maybe ODT could enjoy such a function too.
Nicolas, what do you think?
--
Bastien
Hi Nick,
Nick Dokos writes:
> ,
> |* Don't bind `C-h' following any prefix character (including `C-c').
> | If you don't bind `C-h', it is automatically available as a help
> | character for listing the subcommands of the prefix character.
> `
>
> That's *very* useful to me
Hi Thomas,
t...@tsdye.com (Thomas S. Dye) writes:
> Bastien writes:
>
>> A few comments on the last three:
>>
>> - " is not a punctuation character, I find C-c " instead of C-c ' good.
>
> Is it true that " is not a punctuation character?
It is a string in both fundamental-mode and org-mode, th
44 matches
Mail list logo