* subtreep option in export stopped working propery
@ 2015-09-05 5:26 Joon Ro
2015-09-05 5:39 ` Joon Ro
0 siblings, 1 reply; 6+ messages in thread
From: Joon Ro @ 2015-09-05 5:26 UTC (permalink / raw)
To: emacs-orgmode@gnu.org
[-- Attachment #1: Type: text/plain, Size: 717 bytes --]
Hi,
I have been using a link containing elisp:(org-beamer-export-to-pdf nil t) to export the subtree as a beamer pdf. It used to work well, but after a certain update a couple of months ago (I'm using 8.3beta and I regularly update it), it stopped working properly. For example, when I click on the following Beamer link:
* Export Test:PROPERTIES: :EXPORT_FILE_NAME: ./Test:EXPORT_TITLE: Export Test:EXPORT_SUBTREE: [[elisp:(org-beamer-export-to-pdf%20nil%20t)][Beamer]] :END:
Subtree Contents.
I get a tex file with one page with properties written on it.
Again, I used to use this link to generate subtree-only beamer pdf. Also, exporting manually (C-c C-e C-s l P) works well as well.
Best,Joon
[-- Attachment #2: Type: text/html, Size: 1178 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* subtreep option in export stopped working propery
2015-09-05 5:26 subtreep option in export stopped working propery Joon Ro
@ 2015-09-05 5:39 ` Joon Ro
2015-09-05 9:01 ` Nicolas Goaziou
0 siblings, 1 reply; 6+ messages in thread
From: Joon Ro @ 2015-09-05 5:39 UTC (permalink / raw)
To: emacs-orgmode@gnu.org
[-- Attachment #1: Type: text/plain, Size: 731 bytes --]
Hi,
I have been using a link containing elisp:(org-beamer-export-to-pdf nil t) to export the subtree as a beamer pdf. It used to work well, but after a certain update a couple of months ago (I'm using 8.3beta and I regularly update it), it stopped working properly. For example, when I click on the following Beamer link:
* Export Test:PROPERTIES: :EXPORT_FILE_NAME: ./Test:EXPORT_TITLE: Export Test:EXPORT_SUBTREE: [[elisp:(org-beamer-export-to-pdf%20nil%20t)][Beamer]] :END:
Subtree Contents.
I get a tex file with one page with properties written on it.
Again, I used to use this link to generate subtree-only beamer pdf. Also, exporting manually (C-c C-e C-s l P) works well as well.
Best,Joon
[-- Attachment #2: Type: text/html, Size: 1394 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: subtreep option in export stopped working propery
2015-09-05 5:39 ` Joon Ro
@ 2015-09-05 9:01 ` Nicolas Goaziou
2015-09-05 19:34 ` Joon Ro
0 siblings, 1 reply; 6+ messages in thread
From: Nicolas Goaziou @ 2015-09-05 9:01 UTC (permalink / raw)
To: Joon Ro; +Cc: emacs-orgmode@gnu.org
Hello,
Joon Ro <joon.ro@outlook.com> writes:
> I have been using a link containing elisp:(org-beamer-export-to-pdf
> nil t) to export the subtree as a beamer pdf. It used to work well,
> but after a certain update a couple of months ago (I'm using 8.3beta
> and I regularly update it), it stopped working properly. For example,
> when I click on the following Beamer link:
> * Export Test:PROPERTIES: :EXPORT_FILE_NAME: ./Test:EXPORT_TITLE: Export Test:EXPORT_SUBTREE: [[elisp:(org-beamer-export-to-pdf%20nil%20t)][Beamer]] :END:
> Subtree Contents.
>
> I get a tex file with one page with properties written on it.
> Again, I used to use this link to generate subtree-only beamer pdf.
> Also, exporting manually (C-c C-e C-s l P) works well as well.
I cannot reproduce it. Did you (require 'ox-beamer)? You might also try
latest Org.
Regards,
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: subtreep option in export stopped working propery
2015-09-05 9:01 ` Nicolas Goaziou
@ 2015-09-05 19:34 ` Joon Ro
2015-09-05 19:55 ` Joon Ro
0 siblings, 1 reply; 6+ messages in thread
From: Joon Ro @ 2015-09-05 19:34 UTC (permalink / raw)
To: Nicolas Goaziou; +Cc: emacs-orgmode@gnu.org
[-- Attachment #1: Type: text/plain, Size: 1550 bytes --]
> From: mail@nicolasgoaziou.fr
>
> I cannot reproduce it. Did you (require 'ox-beamer)? You might also try
> latest Org.
>
Thank you for the reply. I added require 'ox-beamer to my init file but it did not make any difference. I'm using the lastest Org (8.3beta).
Again, my org file is
* Export Test:PROPERTIES: :EXPORT_FILE_NAME: ./Test:EXPORT_TITLE: Export Test:EXPORT_SUBTREE: [[elisp:(org-beamer-export-to-pdf%20nil%20t)][Beamer]] :END:
Test Contents.
and the tex file I got from clicking on the Beamer link is:
% Created 2015-09-05 Sat 12:31\documentclass[presentation]{beamer}\usepackage[utf8]{inputenc}\usepackage[T1]{fontenc}\usepackage{fixltx2e}\usepackage{graphicx}\usepackage{grffile}\usepackage{longtable}\usepackage{wrapfig}\usepackage{rotating}\usepackage[normalem]{ulem}\usepackage{amsmath}\usepackage{textcomp}\usepackage{amssymb}\usepackage{capt-of}\usepackage{hyperref}\usetheme{default}\date{\today}\title{Export Test}\hypersetup{ pdfauthor={}, pdftitle={Export Test}, pdfkeywords={}, pdfsubject={}, pdfcreator={Emacs 24.5.1 (Org mode 8.3beta)}, pdflang={English}}\begin{document}
\maketitle\begin{frame}{Outline}\tableofcontents\end{frame}
:PROPERTIES: :EXPORT\(_{\text{FILE}}_{\text{NAME}}\): ./Test:EXPORT\(_{\text{TITLE}}\): Export Test:EXPORT\(_{\text{SUBTREE}}\): [[elisp:(org-beamer-export-to-pdf\%20nil\%20t)][Bea\end{document}
You cannot reproduce this? I wonder what is the culprit then. Again, when I manually do this by C-c C-e C-s l P, I get the correct tex file.
Best,Joon
[-- Attachment #2: Type: text/html, Size: 2921 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: subtreep option in export stopped working propery
2015-09-05 19:34 ` Joon Ro
@ 2015-09-05 19:55 ` Joon Ro
2015-09-05 20:28 ` Joon Ro
0 siblings, 1 reply; 6+ messages in thread
From: Joon Ro @ 2015-09-05 19:55 UTC (permalink / raw)
To: Nicolas Goaziou; +Cc: emacs-orgmode@gnu.org
[-- Attachment #1: Type: text/plain, Size: 1922 bytes --]
I got rid of my init file and it exported correctly, so I guess there is something in my init file which was causing this - I will figure it out. Thank you so much.From: joon.ro@outlook.com
To: mail@nicolasgoaziou.fr
Date: Sat, 5 Sep 2015 12:34:24 -0700
CC: emacs-orgmode@gnu.org
Subject: Re: [O] subtreep option in export stopped working propery
> From: mail@nicolasgoaziou.fr
>
> I cannot reproduce it. Did you (require 'ox-beamer)? You might also try
> latest Org.
>
Thank you for the reply. I added require 'ox-beamer to my init file but it did not make any difference. I'm using the lastest Org (8.3beta).
Again, my org file is
* Export Test:PROPERTIES: :EXPORT_FILE_NAME: ./Test:EXPORT_TITLE: Export Test:EXPORT_SUBTREE: [[elisp:(org-beamer-export-to-pdf%20nil%20t)][Beamer]] :END:
Test Contents.
and the tex file I got from clicking on the Beamer link is:
% Created 2015-09-05 Sat 12:31\documentclass[presentation]{beamer}\usepackage[utf8]{inputenc}\usepackage[T1]{fontenc}\usepackage{fixltx2e}\usepackage{graphicx}\usepackage{grffile}\usepackage{longtable}\usepackage{wrapfig}\usepackage{rotating}\usepackage[normalem]{ulem}\usepackage{amsmath}\usepackage{textcomp}\usepackage{amssymb}\usepackage{capt-of}\usepackage{hyperref}\usetheme{default}\date{\today}\title{Export Test}\hypersetup{ pdfauthor={}, pdftitle={Export Test}, pdfkeywords={}, pdfsubject={}, pdfcreator={Emacs 24.5.1 (Org mode 8.3beta)}, pdflang={English}}\begin{document}
\maketitle\begin{frame}{Outline}\tableofcontents\end{frame}
:PROPERTIES: :EXPORT\(_{\text{FILE}}_{\text{NAME}}\): ./Test:EXPORT\(_{\text{TITLE}}\): Export Test:EXPORT\(_{\text{SUBTREE}}\): [[elisp:(org-beamer-export-to-pdf\%20nil\%20t)][Bea\end{document}
You cannot reproduce this? I wonder what is the culprit then. Again, when I manually do this by C-c C-e C-s l P, I get the correct tex file.
Best,Joon
[-- Attachment #2: Type: text/html, Size: 4044 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: subtreep option in export stopped working propery
2015-09-05 19:55 ` Joon Ro
@ 2015-09-05 20:28 ` Joon Ro
0 siblings, 0 replies; 6+ messages in thread
From: Joon Ro @ 2015-09-05 20:28 UTC (permalink / raw)
To: Nicolas Goaziou; +Cc: emacs-orgmode@gnu.org
[-- Attachment #1: Type: text/plain, Size: 2308 bytes --]
I figured it out - the culprit was Evil mode. For some reason, if I click on the link in the normal state, the problem happens, while in emacs state it works.Thanks.
-JoonFrom: joon.ro@outlook.com
To: mail@nicolasgoaziou.fr
CC: emacs-orgmode@gnu.org
Subject: RE: [O] subtreep option in export stopped working propery
Date: Sat, 5 Sep 2015 12:55:08 -0700
I got rid of my init file and it exported correctly, so I guess there is something in my init file which was causing this - I will figure it out. Thank you so much.
From: joon.ro@outlook.com
To: mail@nicolasgoaziou.fr
Date: Sat, 5 Sep 2015 12:34:24 -0700
CC: emacs-orgmode@gnu.org
Subject: Re: [O] subtreep option in export stopped working propery
> From: mail@nicolasgoaziou.fr
>
> I cannot reproduce it. Did you (require 'ox-beamer)? You might also try
> latest Org.
>
Thank you for the reply. I added require 'ox-beamer to my init file but it did not make any difference. I'm using the lastest Org (8.3beta).
Again, my org file is
* Export Test:PROPERTIES: :EXPORT_FILE_NAME: ./Test:EXPORT_TITLE: Export Test:EXPORT_SUBTREE: [[elisp:(org-beamer-export-to-pdf%20nil%20t)][Beamer]] :END:
Test Contents.
and the tex file I got from clicking on the Beamer link is:
% Created 2015-09-05 Sat 12:31\documentclass[presentation]{beamer}\usepackage[utf8]{inputenc}\usepackage[T1]{fontenc}\usepackage{fixltx2e}\usepackage{graphicx}\usepackage{grffile}\usepackage{longtable}\usepackage{wrapfig}\usepackage{rotating}\usepackage[normalem]{ulem}\usepackage{amsmath}\usepackage{textcomp}\usepackage{amssymb}\usepackage{capt-of}\usepackage{hyperref}\usetheme{default}\date{\today}\title{Export Test}\hypersetup{ pdfauthor={}, pdftitle={Export Test}, pdfkeywords={}, pdfsubject={}, pdfcreator={Emacs 24.5.1 (Org mode 8.3beta)}, pdflang={English}}\begin{document}
\maketitle\begin{frame}{Outline}\tableofcontents\end{frame}
:PROPERTIES: :EXPORT\(_{\text{FILE}}_{\text{NAME}}\): ./Test:EXPORT\(_{\text{TITLE}}\): Export Test:EXPORT\(_{\text{SUBTREE}}\): [[elisp:(org-beamer-export-to-pdf\%20nil\%20t)][Bea\end{document}
You cannot reproduce this? I wonder what is the culprit then. Again, when I manually do this by C-c C-e C-s l P, I get the correct tex file.
Best,Joon
[-- Attachment #2: Type: text/html, Size: 4727 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2015-09-05 20:28 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-05 5:26 subtreep option in export stopped working propery Joon Ro
2015-09-05 5:39 ` Joon Ro
2015-09-05 9:01 ` Nicolas Goaziou
2015-09-05 19:34 ` Joon Ro
2015-09-05 19:55 ` Joon Ro
2015-09-05 20:28 ` Joon Ro
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).