[O] How to input | in org tables

2014-11-14 Thread etimecowboy

Hello,

I want have a org table that contains symbole | in a table element. Org 
parses | as a field separator and add a new column. Is there any escape 
method from this.


example:

| 1 | 2 | 3 |
| a | b | | |

Cheers,

Alan



Re: [O] How can I continue my code listing in Beamer slides?

2014-02-27 Thread etimecowboy

Dear Alan,

Thanks for your reply.

Your solution works on the results part, but makes my source code part 
unprocessed by listing package. I mean there are no syntax highlights 
for the source code.


Is there any solution for it?

Cheers,
etimecowboy

On 2014/2/27 7:10, Alan Schmitt wrote:

etimecowboy etimecow...@gmail.com writes:


Hi everyone,

I have a question about beamer export in org.

I have some code to be put in my slides. The problem is that one slide
(or one column block) does not have enough space for it. How can I split
it into two slides or several column blocks? Please help me with it.

etimecowboy

This is what I recently did to have the result of an evaluation (a
fancy verbatim block) on two slides:

--8---cut here---start-8---
#+latex_header: \usepackage{multicol}

#+BEGIN_LaTeX
\begin{multicols}{2}
#+END_LaTeX

#+results: huffman_res

#+BEGIN_LaTeX
\end{multicols}
#+END_LaTeX
--8---cut here---end---8---

Hope this helps,

Alan





Re: [O] How can I continue my code listing in Beamer slides?

2014-02-27 Thread etimecowboy

Yes you are right. It is a problem of listing package other than org.

etimecowboy

On 2014/2/27 10:59, Alan Schmitt wrote:

etimecowboy etimecow...@gmail.com writes:


Your solution works on the results part, but makes my source code part
unprocessed by listing package. I mean there are no syntax highlights
for the source code.

I don't know. A first step would be to find out how to do a multicolumn
listing in LaTeX using the listings package. Then you can try to get
this output from org.

Alan





[O] How can I continue my code listing in Beamer slides?

2014-02-26 Thread etimecowboy

Hi everyone,

I have a question about beamer export in org.

I have some code to be put in my slides. The problem is that one slide 
(or one column block) does not have enough space for it. How can I split 
it into two slides or several column blocks? Please help me with it.


etimecowboy




[O] How to make a tag-todo search within a time range

2011-07-26 Thread etimecowboy

Hi everyone,

Need some help with the searching in the Agenda View.

For example, I want to search the scheduled TODO items with the work 
tag in the past 3 days. I thought the searching string was:


+work+SCHEDULED\today\+SCHEDULED=\today-3d\,

but failed to get the right output. Anyone could help?

Alan



Re: [Orgmode] Re: org-babel matlab example

2010-09-15 Thread etimecowboy
Hi everyone,

It seems that my org used the Octave program to evaluate my Matlab code 
block/generate figures, not Matlab itself. I found this when comparing the 
exported figure by org with the figure generated by Matlab. I also found that I 
cannot use org-babel on an Windows PC which has Matlab installed, but not 
Octave.

Could someone show me how to use Matlab program to evaluate Matlab code blocks 
in org files in both Linux and Windows OS? Maybe it should be some settings in 
my .emacs file?

Thanks again.
  
-

etimecow...@gmail.com

  _.,,._
.:'`:.
  .'  `.
 .'`.
 :  :
 `.'`':'`'`/'
  `.   \  |   /   ,'
\   \ |  /   /
 `\_..,,.._/'
  {`'-,_`'-}
  {`'-,_`'-}
  {`'-,_`'-}
   `YY'
 ~^^~

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] image size in html export

2010-09-15 Thread etimecowboy
From: Eric S Fraga ucec...@ucl.ac.uk
Subject: Re: [Orgmode] image size in html export
Date: Mon, 13 Sep 2010 09:01:24 +0100

 On Mon, 13 Sep 2010 07:01:24 +0100 (BST), etimecowboy 
 etimecow...@googlemail.com wrote:
 
 Hi everyone,
 
 Does anybody know how to set the size of an in-line image when
 exporting html? I know that org can set that when exporting latex
 (with #+ATTR_LaTeX: width=), but could not find a similar way when
 exporting html. Thanks for the help.
 
 The following
 
 : #+attr_html: width=50%
 : [[./image.png]]
 
 for instance, works just fine for me.  This is with up-to-date org.

It works for me too! Thanks a lot.

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] image size in html export

2010-09-13 Thread etimecowboy
Hi everyone,

Does anybody know how to set the size of an in-line image when exporting html? 
I know that org can set that when exporting latex (with #+ATTR_LaTeX: width=), 
but could not find a similar way when exporting html. Thanks for the help.
 
-

etimecow...@gmail.com

  _.,,._
.:'`:.
  .'  `.
 .'`.
 :  :
 `.'`':'`'`/'
  `.   \  |   /   ,'
\   \ |  /   /
 `\_..,,.._/'
  {`'-,_`'-}
  {`'-,_`'-}
  {`'-,_`'-}
   `YY'
 ~^^~

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: org-babel matlab example

2010-09-12 Thread etimecowboy
From: Dan Davison davi...@stats.ox.ac.uk
Subject: Re: org-babel matlab example
Date: Sat, 11 Sep 2010 12:23:17 -0400

 Dan Davison davi...@stats.ox.ac.uk writes:
 
 etimecowboy etimecow...@googlemail.com writes:

 Hi everybody,

 I am learning to use org-babel to evaluate in-line Matlab code block,
 but I cannot make it works when I press the C-c C-c, nor C-c C-v
 e.

 What happens when you try C-c C-c or C-c C-v e ? There is an issue with
 matlab and octave: they return the value of the last /unassigned/
 computation
 
 A better way to say this is: they return the value of the special
 variable ans. So whatever you do, at the end of the block you need to
 ensure that ans has the value that you want returned.
 
 I've updated the Worg page on Matlab and Octave:
 
 http://orgmode.org/worg/org-contrib/babel/languages/ob-doc-octave-matlab.php
 
 Dan
 
 
, so simply ending the code block with a variable name x is
 not enough. Could you try one of the following schemes please, and let
 us know if that solves it:

 #+begin_src matlab :exports results
 n = [1:10];
 x = 5*n+4;
 ans = x
 #+end_src

 #+begin_src matlab :exports results
 n = [1:10];
 x = 5*n+4;
 x + 0
 #+end_src


 The export of code works, but the results was not there. My in-line code is 
 like this:

 There was a little typo in your original block: the keyword is
 :exports with an s.

 Dan


 #+begin_src matlab :export results
 n = [1:10];
 x = 5*n+4;
 x
 #+end_src

 Is there someone can provide me a working example? Thanks a lot.


 -

 etimecow...@gmail.com

   _.,,._
 .:'`:.
   .'  `.
  .'`.
  :  :
  `.'`':'`'`/'
   `.   \  |   /   ,'
 \   \ |  /   /
  `\_..,,.._/'
   {`'-,_`'-}
   {`'-,_`'-}
   {`'-,_`'-}
`YY'
  ~^^~

 ___
 Emacs-orgmode mailing list
 Please use `Reply All' to send replies to the list.
 Emacs-orgmode@gnu.org
 http://lists.gnu.org/mailman/listinfo/emacs-orgmode

 ___
 Emacs-orgmode mailing list
 Please use `Reply All' to send replies to the list.
 Emacs-orgmode@gnu.org
 http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Dear Dan,

I have checked the Worg page you updated and tried your example. It works! The 
ans variable is the secret! Thanks a lot. I suggest org should provide some 
examples in its user's guide, not only on the topic of Babel but also Table, 
Hyperlink, Picture, and etc.

-

etimecow...@gmail.com

  _.,,._
.:'`:.
  .'  `.
 .'`.
 :  :
 `.'`':'`'`/'
  `.   \  |   /   ,'
\   \ |  /   /
 `\_..,,.._/'
  {`'-,_`'-}
  {`'-,_`'-}
  {`'-,_`'-}
   `YY'
 ~^^~

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] org-babel matlab example

2010-09-11 Thread etimecowboy
Hi everybody,

I am learning to use org-babel to evaluate in-line Matlab code block, but I 
cannot make it works when I press the C-c C-c, nor C-c C-v e. The export of 
code works, but the results was not there. My in-line code is like this:

#+begin_src matlab :export results
n = [1:10];
x = 5*n+4;
x
#+end_src

Is there someone can provide me a working example? Thanks a lot.


-

etimecow...@gmail.com

  _.,,._
.:'`:.
  .'  `.
 .'`.
 :  :
 `.'`':'`'`/'
  `.   \  |   /   ,'
\   \ |  /   /
 `\_..,,.._/'
  {`'-,_`'-}
  {`'-,_`'-}
  {`'-,_`'-}
   `YY'
 ~^^~

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode