* [BUG] export to latex breaks
@ 2010-08-26 19:17 Puneeth
2010-08-27 7:31 ` Carsten Dominik
0 siblings, 1 reply; 2+ messages in thread
From: Puneeth @ 2010-08-26 19:17 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 1610 bytes --]
Hi All,
I'm on Org-mode version 7.01trans (release_7.01h.205.ge3d2)
The LaTeX export of document test.org breaks. The headings Day 1 and
Day 2 and content under them is not visible.
[I have org-odd-levels-only set]
Git bisect says -
bb0a1f190be361ce1d717d79d411b88406d74c33 is the first bad commit
commit bb0a1f190be361ce1d717d79d411b88406d74c33
Author: Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>
Date: Tue Jul 27 20:04:42 2010 +0000
The patch below fixes the problem partially. Export of test.org
works. But, export of test2.org breaks. The subheading Day 2 does not
show up. [test2.org produces the same output without applying the
patch, too. I'm do not think that is an acceptable output.]
HTH,
Puneeth
-------------------------------------------------------------------------
PARTIAL FIX
-------------------------------------------------------------------------
diff --git a/lisp/org-latex.el b/lisp/org-latex.el
index 4f27f42..6bc6f71 100644
--- a/lisp/org-latex.el
+++ b/lisp/org-latex.el
@@ -966,10 +966,10 @@ If ODD Is non-nil, assume subcontent only
contains odd sections."
(number-to-string (+ (if odd 4 2) level))
",\\}\\) \\(.*\\)$")
nil t)
- (setq nstars (1- (- (match-end 1) (match-beginning 1))))
+ (setq nstars (- (match-end 1) (match-beginning 1)))
(setq new-level (if odd
- (/ (+ 3 nstars) 2);; not entirely sure why +3!
- nstars)))
+ (- nstars 2)
+ (1- nstars))))
(if nstars
(org-export-latex-parse-global new-level odd)
nil) ; subcontent is nil
-------------------------------------------------------------------------
[-- Attachment #2: test.org --]
[-- Type: application/octet-stream, Size: 557 bytes --]
#+TITLE: diary
#+DESCRIPTION:
#+KEYWORDS:
#+LANGUAGE: en
#+OPTIONS: H:3 num:t toc:t \n:nil @:t ::t |:t ^:t -:t f:t *:t <:t
#+OPTIONS: TeX:t LaTeX:t skip:nil d:nil todo:t pri:nil tags:not-in-toc
#+INFOJS_OPT: view:nil toc:nil ltoc:t mouse:underline buttons:0 path:http://orgmode.org/org-info.js
#+LINK_UP:
#+LINK_HOME:
#+XSLT:
* Diary
Some random content here
*** Day 1
1. Hello, World
2. Goodbye, World
***** Morning 1
Random
***** Night 1
More Random
*** Day 2
* Hello, World
* Org-mode
* Emacs
[-- Attachment #3: test2.org --]
[-- Type: application/octet-stream, Size: 563 bytes --]
#+TITLE: diary
#+DESCRIPTION:
#+KEYWORDS:
#+LANGUAGE: en
#+OPTIONS: H:3 num:t toc:t \n:nil @:t ::t |:t ^:t -:t f:t *:t <:t
#+OPTIONS: TeX:t LaTeX:t skip:nil d:nil todo:t pri:nil tags:not-in-toc
#+INFOJS_OPT: view:nil toc:nil ltoc:t mouse:underline buttons:0 path:http://orgmode.org/org-info.js
#+LINK_UP:
#+LINK_HOME:
#+XSLT:
* Diary
Some random content here
***** Day 1
1. Hello, World
2. Goodbye, World
***** Morning 1
Random
***** Night 1
More Random
*** Day 2
* Hello, World
* Org-mode
* Emacs
[-- Attachment #4: Type: text/plain, Size: 201 bytes --]
_______________________________________________
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
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [BUG] export to latex breaks
2010-08-26 19:17 [BUG] export to latex breaks Puneeth
@ 2010-08-27 7:31 ` Carsten Dominik
0 siblings, 0 replies; 2+ messages in thread
From: Carsten Dominik @ 2010-08-27 7:31 UTC (permalink / raw)
To: Puneeth; +Cc: emacs-orgmode
Hi,
On Aug 26, 2010, at 9:17 PM, Puneeth wrote:
> Hi All,
>
> I'm on Org-mode version 7.01trans (release_7.01h.205.ge3d2)
> The LaTeX export of document test.org breaks. The headings Day 1 and
> Day 2 and content under them is not visible.
> [I have org-odd-levels-only set]
>
> Git bisect says -
>
> bb0a1f190be361ce1d717d79d411b88406d74c33 is the first bad commit
> commit bb0a1f190be361ce1d717d79d411b88406d74c33
> Author: Stephen Eglen <S.J.Eglen@damtp.cam.ac.uk>
> Date: Tue Jul 27 20:04:42 2010 +0000
I have for now reverted Stephen's patch. Maybe you can work
on a patch that will eventually work fully correctly.
- Carsten
>
> The patch below fixes the problem partially. Export of test.org
> works. But, export of test2.org breaks. The subheading Day 2 does not
> show up. [test2.org produces the same output without applying the
> patch, too. I'm do not think that is an acceptable output.]
>
> HTH,
> Puneeth
>
> -------------------------------------------------------------------------
> PARTIAL FIX
> -------------------------------------------------------------------------
> diff --git a/lisp/org-latex.el b/lisp/org-latex.el
> index 4f27f42..6bc6f71 100644
> --- a/lisp/org-latex.el
> +++ b/lisp/org-latex.el
> @@ -966,10 +966,10 @@ If ODD Is non-nil, assume subcontent only
> contains odd sections."
> (number-to-string (+ (if odd 4 2) level))
> ",\\}\\) \\(.*\\)$")
> nil t)
> - (setq nstars (1- (- (match-end 1) (match-beginning 1))))
> + (setq nstars (- (match-end 1) (match-beginning 1)))
> (setq new-level (if odd
> - (/ (+ 3 nstars) 2);; not entirely sure why +3!
> - nstars)))
> + (- nstars 2)
> + (1- nstars))))
> (if nstars
> (org-export-latex-parse-global new-level odd)
> nil) ; subcontent is nil
> -------------------------------------------------------------------------
> <test.org><test2.org>_______________________________________________
> 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
- Carsten
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-08-27 7:31 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-26 19:17 [BUG] export to latex breaks Puneeth
2010-08-27 7:31 ` Carsten Dominik
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).