Carsten Dominik gmail.com> writes:
>
> That is a feature. How else would you insert an empty line before the
> link.
>
C-q C-j, of course.
It may not be too newbie friendly, I admit. :)
___
Emacs-orgmode mailing list
Remember: use `Reply All
On Sep 26, 2009, at 6:35 AM, PT wrote:
If there is a link at the very beginning of the org file and cursor
is on
the very first character of the link (and, consequently, of the
file) then
Enter doesn't follow the link, it inserts a literal newline instead.
That is a feature. How else wou
I often need to find recently modified entries. I try to timestamp
entries I work on with the active timestamps
(in angular brackets), and use the C-x a L command. This mostly
works, but is imperfect:
- when i use time logging, it inserts "inactive" timestamps that
are not found this way.
Hi,
you could rewrite the formula using vertical sums:
|-+--+--+---|
| No. |P |E | B |
|-+--+--+---|
| 1 | 5000 | 2000 | 3000 |
| 2 | 7000 | 1000 | 9000 |
| 3 | 5000 | 1000 | 13000 |
#+TBLFM: $4=vsum(@-i$...@0$2)-vsum(@-i$...@0$3)
HTH
Andreas
Hey RC,
If you set the value of D2 to 0 what you want will be achieved.
The table would look like this:
|-+--+--+---|
| No. |P |E | B |
|-+--+--+---|
| | | | 0 |
| 1 | 5000 | 2000 | 3000 |
| 2 | 7000 | 1000 | 9000 |
| 3 | 5000
Hi,
On applying the column formula on the table shown below:
|-+--+--+--|
| No. |P |E | B|
|-+--+--+--|
| | | | 0|
| 1 | 5000 | 2000 | |
| 2 | 7000 | 1000 | |
| 3 | 5000 | 1000 |
At Fri, 25 Sep 2009 11:58:01 -0400,
Paul Burkander wrote:
>
> It doesn't seem nice that my thread was hijacked.
>
> Anyway, I solved my original problem, which as you might recall was
> that I got an empty box when I tried to preview.
>
> I installed texlive-latex-extras. It has since worked.
It doesn't seem nice that my thread was hijacked.
Anyway, I solved my original problem, which as you might recall was
that I got an empty box when I tried to preview.
I installed texlive-latex-extras. It has since worked. If that
package is needed, it would be helpful to have it noted in the
do
Hey Dan,
Dan Davison writes:
> Hi Benny,
>
> This looks very interesting and I think it's extremely likely that we'll
> want to include your code -- thanks very much. Having said that, I'm
> being a bit dense: would you mind expanding a bit on what this currently
> does, and what it has the pote
Benjamin Andresen writes:
> Hello,
>
> after seeing org-babel I immediately thought of the eev project by
> Eduardo Ochs (http://angg.twu.net/)
>
> Basically I wanted to do what he does in this video:
> http://angg.twu.net/eev-current/anim/channels.anim.html
>
> So I wrote a small org-babel gnu s
I am trying to use HH:MM time strings from clocktables in a table formula. First
time I've used table formulas, BTW.
When fetching the cells as remote(), I got strange results. The behavior is the
same for regular references, so here's a regular-reference test case:
| 17:36 | 17:36 |
| 19:45 | 19
Nick Dokos wrote:
> Paul Burkander wrote:
>
> > ...
> > Anyway, I solved my original problem, which as you might recall was
> > that I got an empty box when I tried to preview.
> >
> > I installed texlive-latex-extras. It has since worked. If that
> > package is needed, it would be helpful
Paul Burkander wrote:
> It doesn't seem nice that my thread was hijacked.
Sorry - that's indeed annoying when you are left to fend for yourself,
while we all go in a different direction.
>
> Anyway, I solved my original problem, which as you might recall was
> that I got an empty box when I tr
At Thu, 24 Sep 2009 17:43:08 -0400,
Jing Su @ Gmail wrote:
>
> [1 ]
> Dear all,
>
> I realized that under text-mode only 8 colors are available for
> org-faces, in contrast that all colors defined in rgb.txt are available
> in graphic mode.
What does M-x list-colors-display say?
Darlan Cavalcante Moreira wrote:
> How could I miss that?
>
> I used the command customize-variable and I was trying to auto-complete with
> TAB
> something similar to "org-preview" or "org--preview". Now I see that the
> options are in the group Org Latex.
>
> May I suggest that these two va
Nick Dokos hp.com> writes:
> I don't understand why you need open braces in your headlines
> at all - can't you just get rid of them?
Hi Nick. I'm all set, I did remove brackets and underscores from headlines in
this one large document. Now that I know about it, I won't use the characters in
futu
Jeff Kowalczyk wrote:
> Export to pdflatex fails if underscore or unclosed bracket characters are in
> enough headlines.
>
> Thanks,
> Jeff
>
Open braces without the corresponding closing brace on the same line
caused errors before: Carsten fixed one (in an ATTR_LaTeX header iirc),
but I have
Carsten Dominik writes:
> good catch, no, it does not. This will:
>
> perl -ap -e 's/]*>|<\/div>//g' orgoutput.html > simple.html
This works too
perl -ap -e 's@]*>@@g' org-mode.html >/tmp/simple.html
-Bernt
___
Emacs-orgmode mailing list
Remember:
How could I miss that?
I used the command customize-variable and I was trying to auto-complete with TAB
something similar to "org-preview" or "org--preview". Now I see that the
options are in the group Org Latex.
May I suggest that these two variables are mentioned in the documentation of the
or
Hi Giovanni,
good catch, no, it does not. This will:
perl -ap -e 's/]*>|<\/div>//g' orgoutput.html > simple.html
Many divs may be in the same ling because of the /g switch on the
substitution command. It causes the rest of the line after the match
to be parsed again.
- Carsten
On Sep 2
On Sep 25, 2009, at 3:06 PM, Darlan Cavalcante Moreira wrote:
Is there a variable where one can customize the options passed to
dvipng?
I use a high resolution and the generated image is small in the
Emacs buffer and hard to read.
Yes there is. Take a look at org-format-latex-options and
> > If I could get org-mode to export pure html without
> all the tags I think I am done.
> I guess the easiest would be to just post-process the html
> file
> produced by Org. For example with perl (untested):
>
> perl -ap -e 's/]*>//g' orgoutput.html >
> simple.html
>
[OT] comp.perl.group ;
Carsten Dominik writes:
> On Sep 25, 2009, at 2:00 PM, Detlef Steuer wrote:
>
>> Is there a way to get rid of all div tags in exported html?
>
> I guess the easiest would be to just post-process the html file
> produced by Org. For example with perl (untested):
>
> perl -ap -e 's/]*>//g' orgoutp
Is there a variable where one can customize the options passed to dvipng?
I use a high resolution and the generated image is small in the Emacs buffer
and hard to read.
--
Darlan Cavalcante Moreira
darc...@gmail.com
___
Emacs-orgmode mailing list
Reme
-- Ven 25/9/09, Matt Lundin ha scritto:
> Detlef Steuer
> writes:
>
> > If I could get org-mode to export pure html without
> > all the tags
>
> AFAIK, the tags are hard-coded into
> org-export-as-html.
>
> You might try org-export-generic in the contrib directory
> of the git repository.
On Sep 25, 2009, at 2:00 PM, Detlef Steuer wrote:
Hi!
I'm in the process of adapting cmsimple (www.cmsimple.dk) to use our
university's corporate design. Cmsimple in its core is a php script,
which takes _one_
html file and creates the complete layout of a site on the fly while
splitting
Detlef Steuer writes:
> I'm in the process of adapting cmsimple (www.cmsimple.dk) to use our
> university's corporate design. Cmsimple in its core is a php script,
> which takes _one_ html file and creates the complete layout of a site
> on the fly while splitting the file apart at h[123] levels.
Hi!
I'm in the process of adapting cmsimple (www.cmsimple.dk) to use our
university's corporate design. Cmsimple in its core is a php script, which
takes _one_
html file and creates the complete layout of a site on the fly while splitting
the file apart at h[123] levels.
Now I want to create t
Carsten Dominik gmail.com> writes:
>
> Hi Jeff,
>
> may I ask what the practical use case of _{ is?
>
> - Carsten
Hi Carsten,
There's no practical use case ;)
I reported with a test case because it could be that _ and { are not escaped in
clocktable summary in the same way that they are in
Carsten Dominik writes:
> On Sep 25, 2009, at 2:10 AM, Jeff Kowalczyk wrote:
>
> > When the headline count for a pdftolatex export gets to be more than
> > 100 lines, the TOC renders with the headline number directly
> > touching the headline text. More than 1,000, and it starts to overla
At Thu, 24 Sep 2009 10:27:57 +0100, Carsten Dominik wrote:
> On Sep 22, 2009, at 7:30 PM, René wrote:
> > Unfortunately, in this case Emacs doesn't fontify those lines as if
> > they were comments.
>
> It does now.
>
> - Carsten
Carsten, thanks for this. It works perfectly.
But this leads to m
Thank you for fixing this.
On Fri, Sep 25, 2009 at 5:00 PM, Carsten Dominik
wrote:
>
> Yes, this counts as a bug. However, I don't know why you put this in
> context with remember. It has nothing to do with that.
>
Perhaps it recalls remember to my mind because I lean heavily on remember
for
Ian Barton wrote:
I am trying to export a project as php files. I realize that this an
offence against the XHTML Gods, which is probably why I am having a
problem.
The relevant bit of my org-publish-project-alist looks like:
("org-mobile"
:base-directory "~/nfs/firewall/Documents/o
On Sep 24, 2009, at 11:26 PM, Darlan Cavalcante Moreira wrote:
At Fri, 25 Sep 2009 07:08:31 +1000,
Alan E. Davis wrote:
This may not be a bug, but it bugs me alot. When using remember to
store a
note, C-e passes the ellipses. I am using an alternate font for the
ellipses. I live in utte
On Sep 24, 2009, at 10:08 PM, Alan E. Davis wrote:
This may not be a bug, but it bugs me alot.
Yes, this counts as a bug. However, I don't know why you put this in
context with remember. It has nothing to do with that.
The bug is fixed.
- Carsten
When using remember to store a note, C
35 matches
Mail list logo