Re: [Orgmode] Using \ref instead of \hyperref in LaTeX export?

2010-10-15 Thread Indraneel Majumdar
Maybe use a hook like the following.. It's for cref, please modify to your liking: (defun creflink() "Change all solitary [[]] links to [[target][\cref]] links" (regex-replace "\\[\\[\\([^:\[]+?\\)\\]\\]" "[[\\1][cref{\\1}]]") ) (add-hook 'org-export-preprocess-hook 'creflink) Indranee

Re: [Orgmode] Header levels and section numbering > 3, in LaTeX export

2010-10-08 Thread Indraneel Majumdar
I couldn't get easylist to understand the \star symbol that orgmode uses. Do you know how to do that? No. You might have seen the footnote in the easylist documentation (on p. 2) which says: "You might not be happy with the symbols and maybe you'd like to use another one, or simply have your

Re: [Orgmode] Header levels and section numbering > 3, in LaTeX export

2010-10-06 Thread Indraneel Majumdar
Thanks Scot, exactlt what I was looking for, and I was actually deliberating on the Tractacus! I couldn't get easylist to understand the \star symbol that orgmode uses. Do you know how to do that? And also to skip the first 3 stars in a level4 heading (if I want to retain latex's default top 3

Re: [Orgmode] Header levels and section numbering > 3, in LaTeX export

2010-10-05 Thread Indraneel Majumdar
Hi, If you're 4 levels down, it'll be a sub sub sub section, same as a paragraph * Section ** Sub section *** Sub Sub section Paragraph * Sub paragraph H:5 will give you the levels but you have to enable numbering explicitly with \setcounter{secnumdepth}{5} paragraph is actually a s

Re: [Orgmode] Re: [PATCH] Compiling multiple times the LaTeX output

2010-10-05 Thread Indraneel Majumdar
texi2dvi is also on my minimal MikTex system, I'd certainly love a patch that uses it instead of a shell script (although I also have cygwin too).. On 2010-10-05 20:00, Matthew Leifer wrote: Hi, I don't know if you are aware, but there is a utility called texi2dvi that figures out how many

Re: [Orgmode] Latex exporter bug or feature?

2010-10-03 Thread Indraneel Majumdar
ection*{%s}")) ... and make sure it gets added into the existing list of classes properly. i.e correctly enclosed in parentheses. This is untested. Org-mode seems to hold pretty tightly to proper tree structure. I think you'll have to achieve what you want by some means other tha

Re: [Orgmode] Re: Omit top level heading in latex export?

2010-10-03 Thread Indraneel Majumdar
I fixed my lisp. Just to archive the solution, here's my new defun: (defun regex-replace (regex string) (point-to-register 'rrr) (goto-char (point-min)) (while (re-search-forward regex nil t) (replace-match string)) (jump-to-register 'rrr)) On 2010-10-03 23:01, Ind

Re: [Orgmode] Re: Omit top level heading in latex export?

2010-10-03 Thread Indraneel Majumdar
"Make all targets invisible" (regex-replace "\\(<<.+?>>\\) " "\\1(INVISIBLE) ") ) (add-hook 'org-export-first-hook 'invisibletag) Indraneel On 2010-10-03 22:21, Matt Lundin wrote: Indraneel Majumdar writes: On 2010-10-03 20:57, suvayu a

Re: [Orgmode] Omit top level heading in latex export?

2010-10-03 Thread Indraneel Majumdar
On 2010-10-03 21:12, suvayu ali wrote: On 3 October 2010 08:31, Indraneel Majumdar wrote: On 2010-10-03 20:57, suvayu ali wrote: On 3 October 2010 06:31, Indraneel Majumdar wrote: Hi, I'm running into a problem with latex export. I have several essays under a top level heading &q

Re: [Orgmode] Omit top level heading in latex export?

2010-10-03 Thread Indraneel Majumdar
On 2010-10-03 20:57, suvayu ali wrote: On 3 October 2010 06:31, Indraneel Majumdar wrote: Hi, I'm running into a problem with latex export. I have several essays under a top level heading "Essays". How can I export say only one essay without the top level heading "Ess

[Orgmode] Omit top level heading in latex export?

2010-10-03 Thread Indraneel Majumdar
Hi, I'm running into a problem with latex export. I have several essays under a top level heading "Essays". How can I export say only one essay without the top level heading "Essays" also showing up in the output as a "Section"? I want the heading of my essay to be displayed as a latex secti

[Orgmode] Latex exporter bug or feature?

2010-10-03 Thread Indraneel Majumdar
Or am I doing something wrong? With #+OPTIONS H:5 paragraphs are not exported if subsubsection is missing. eg. my orgfile: * Section ** Sub section My paragraph starts here... The paragraph is not exported. The reason I want H:5 is that this is the simplest way to obtain numbe

Re: [Orgmode] table, moving cells

2010-09-30 Thread Indraneel Majumdar
On 2010-09-30 13:21, "Martin G. Skjæveland" wrote: For the seating plan, I ended up with lots of post-it notes on a wall, which worked just fine! :) You might consider using a concept/graph editor like yED (closed source) or Dia or xfig and save the trees and the paint on your wall! _

Re: [Orgmode] problem with label in latex export

2010-09-22 Thread Indraneel Majumdar
re likely /not/ to be a section heading. Putting it at a section heading doesn't hurt, but not having it inline makes for a useless <>. Off course for Latex only, so probably should be in the exporter. Indraneel On 2010-09-22 14:40, Bastien wrote: Hi Indraneel,

Re: [Orgmode] problem with label in latex export

2010-09-21 Thread Indraneel Majumdar
will allow suppressing contents of the target in the output, if target is present inline; i.e. no #+ 2. Add a \phantomsection where ever a <> is located, while exporting to latex. Please let me know if I'm missing something. I'm new to orgmode, and thank you for it. Indrane

[Orgmode] Bug in column view with cookie on item line

2010-09-13 Thread Indraneel Majumdar
With [%] or [/] set to update, the item line gets mangled as soon as TODO is changed to DONE from column view. Here's what it looks like: ** TODO test 1 [/] :PROPERTIES: :Effort: 1 :END: *** T[0/1[0/1[0/1[0/1[0/1[1/1]] <<< MANGLED AGAIN (line was TODO test 1 [/]) :PROPERTIES: :Effort: 1 :END:

[Orgmode] problem with label in latex export

2010-09-10 Thread Indraneel Majumdar
Hi all, I'm having some problems with latex export, can someone help me out? Since orgmode already uses hyperref, is there any reason why \phantomsection is not added before \label by default? How can I enable it? Also, how can I disable <> from printing out the value in the latex output fro

Re: [Orgmode] IP locator

2010-09-09 Thread Indraneel Majumdar
/2010 11:19 PM, Indraneel Majumdar wrote: Hi all, Is there any way of putting in location information automatically, eg. in a Diary or Journal entry? I was thinking of some sort of IP location based service (some web based ones are free, or even google). Or, a connected cellphone with GPS is also a

[Orgmode] IP locator

2010-09-09 Thread Indraneel Majumdar
Hi all, Is there any way of putting in location information automatically, eg. in a Diary or Journal entry? I was thinking of some sort of IP location based service (some web based ones are free, or even google). Or, a connected cellphone with GPS is also a possibility. I can see how the iph

[Orgmode] latex link target name

2010-09-09 Thread Indraneel Majumdar
Hi, I'm trying not to have the target name printed out when exporting to latex, and am having no success at it. My org file: ** section 2 22. [...@start:22] Oh, have to put sometjing here too! 23. nothing here 24. cfqw4cygq3h 25. gvre4vghq3 26. gvq34vh3ch2 27. #+ <> What's all that 28

[Orgmode] Possible BUG in org-wikinodes.el

2010-08-31 Thread Indraneel Majumdar
Hi, Is this a typo? org-find-exact-headling-in-buffer occurs thrice instead of org-find-exact-headline-in-buffer I couldn't get it to work with headling. headline works fine. I'm new to orgmode, and lisp in general, so I may be wrong. Please let me know if I screwed up something (please cc, I'm