* export beamer
@ 2010-05-04 8:09 Rares Pop
2010-05-04 12:47 ` Erik Butz
0 siblings, 1 reply; 6+ messages in thread
From: Rares Pop @ 2010-05-04 8:09 UTC (permalink / raw)
To: emacs-orgmode
[-- Attachment #1.1: Type: text/plain, Size: 361 bytes --]
Hi all,
i'm using emacs-23.1 and org-mode 6.35i and trying to export as PDF the
beamer document from the Beamer tutorial
http://orgmode.org/worg/org-tutorials/org-beamer.php
but i get the following error:
*org-export-latex-set-initial-vars: No definition for class `beamer' in
`org-export-latex-classes'*
Can you please help me on this front?
Thanks,
Rares
[-- Attachment #1.2: Type: text/html, Size: 550 bytes --]
[-- Attachment #2: 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 [flat|nested] 6+ messages in thread
* Re: export beamer
2010-05-04 8:09 export beamer Rares Pop
@ 2010-05-04 12:47 ` Erik Butz
2010-05-04 13:18 ` Rares Pop
0 siblings, 1 reply; 6+ messages in thread
From: Erik Butz @ 2010-05-04 12:47 UTC (permalink / raw)
To: Rares Pop; +Cc: emacs-orgmode
Hi Rares,
I had a similar problem recently which was cured by including
(require 'org-latex)
in my .emacs file. Does this help in your case?
Cheers,
Erik
On Tue, May 4, 2010 at 10:09 AM, Rares Pop <rares.pop@gmail.com> wrote:
> Hi all,
>
> i'm using emacs-23.1 and org-mode 6.35i and trying to export as PDF the
> beamer document from the Beamer tutorial
> http://orgmode.org/worg/org-tutorials/org-beamer.php
> but i get the following error:
>
> org-export-latex-set-initial-vars: No definition for class `beamer' in
> `org-export-latex-classes'
>
> Can you please help me on this front?
>
> Thanks,
> Rares
>
> _______________________________________________
> 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 [flat|nested] 6+ messages in thread
* Re: export beamer
2010-05-04 12:47 ` Erik Butz
@ 2010-05-04 13:18 ` Rares Pop
2010-05-04 14:38 ` Erik Butz
2010-05-04 15:15 ` Eric S Fraga
0 siblings, 2 replies; 6+ messages in thread
From: Rares Pop @ 2010-05-04 13:18 UTC (permalink / raw)
To: Erik Butz; +Cc: emacs-orgmode
[-- Attachment #1.1: Type: text/plain, Size: 1335 bytes --]
It's not working.
I'm getting the following error when exporting to PDF:
! LaTeX Error: File `wrapfig.sty' not found.
Type X to quit or <RETURN> to proceed,
or enter new name. (Default extension: sty)
Enter file name:
! Emergency stop.
<read *>
l.11 \usepackage
{soul}^^M
*** (cannot \read from terminal in nonstop modes)
Thanks,
Rares
On Tue, May 4, 2010 at 3:47 PM, Erik Butz <erik.butz@googlemail.com> wrote:
> Hi Rares,
>
> I had a similar problem recently which was cured by including
>
> (require 'org-latex)
>
> in my .emacs file. Does this help in your case?
>
> Cheers,
>
> Erik
>
> On Tue, May 4, 2010 at 10:09 AM, Rares Pop <rares.pop@gmail.com> wrote:
> > Hi all,
> >
> > i'm using emacs-23.1 and org-mode 6.35i and trying to export as PDF the
> > beamer document from the Beamer tutorial
> > http://orgmode.org/worg/org-tutorials/org-beamer.php
> > but i get the following error:
> >
> > org-export-latex-set-initial-vars: No definition for class `beamer' in
> > `org-export-latex-classes'
> >
> > Can you please help me on this front?
> >
> > Thanks,
> > Rares
> >
> > _______________________________________________
> > 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
> >
> >
>
[-- Attachment #1.2: Type: text/html, Size: 2252 bytes --]
[-- Attachment #2: 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 [flat|nested] 6+ messages in thread
* Re: export beamer
2010-05-04 13:18 ` Rares Pop
@ 2010-05-04 14:38 ` Erik Butz
2010-05-05 7:32 ` Rares Pop
2010-05-04 15:15 ` Eric S Fraga
1 sibling, 1 reply; 6+ messages in thread
From: Erik Butz @ 2010-05-04 14:38 UTC (permalink / raw)
To: Rares Pop; +Cc: emacs-orgmode
Hi Rares,
actually it seems that it IS working. The error you are getting now is
a latex error saying that you are missing a package (wrapfig). You
probably need to update your latex installation with that package. The
way you do this, depends on the distribution you're using. On
ubuntu/debian you could do:
apt-cache search wrapfig
which would give:
texlive-latex-extra - TeX Live: LaTeX supplementary packages
which would then be the package that you're missing.
Cheers,
Erik
On Tue, May 4, 2010 at 3:18 PM, Rares Pop <rares.pop@gmail.com> wrote:
> It's not working.
>
> I'm getting the following error when exporting to PDF:
>
> ! LaTeX Error: File `wrapfig.sty' not found.
>
> Type X to quit or <RETURN> to proceed,
> or enter new name. (Default extension: sty)
>
> Enter file name:
> ! Emergency stop.
> <read *>
>
> l.11 \usepackage
> {soul}^^M
> *** (cannot \read from terminal in nonstop modes)
>
> Thanks,
> Rares
>
> On Tue, May 4, 2010 at 3:47 PM, Erik Butz <erik.butz@googlemail.com> wrote:
>>
>> Hi Rares,
>>
>> I had a similar problem recently which was cured by including
>>
>> (require 'org-latex)
>>
>> in my .emacs file. Does this help in your case?
>>
>> Cheers,
>>
>> Erik
>>
>> On Tue, May 4, 2010 at 10:09 AM, Rares Pop <rares.pop@gmail.com> wrote:
>> > Hi all,
>> >
>> > i'm using emacs-23.1 and org-mode 6.35i and trying to export as PDF the
>> > beamer document from the Beamer tutorial
>> > http://orgmode.org/worg/org-tutorials/org-beamer.php
>> > but i get the following error:
>> >
>> > org-export-latex-set-initial-vars: No definition for class `beamer' in
>> > `org-export-latex-classes'
>> >
>> > Can you please help me on this front?
>> >
>> > Thanks,
>> > Rares
>> >
>> > _______________________________________________
>> > 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 [flat|nested] 6+ messages in thread
* Re: export beamer
2010-05-04 13:18 ` Rares Pop
2010-05-04 14:38 ` Erik Butz
@ 2010-05-04 15:15 ` Eric S Fraga
1 sibling, 0 replies; 6+ messages in thread
From: Eric S Fraga @ 2010-05-04 15:15 UTC (permalink / raw)
To: Rares Pop; +Cc: emacs-orgmode
[-- Attachment #1: Type: text/plain, Size: 749 bytes --]
On Tue, 4 May 2010 16:18:40 +0300, Rares Pop <rares.pop@gmail.com> wrote:
>
> It's not working.
>
> I'm getting the following error when exporting to PDF:
>
> ! LaTeX Error: File `wrapfig.sty' not found.
>
> Type X to quit or <RETURN> to proceed,
> or enter new name. (Default extension: sty)
>
> Enter file name:
> ! Emergency stop.
> <read *>
>
> l.11 \usepackage
> {soul}^^M
> *** (cannot \read from terminal in nonstop modes)
>
> Thanks,
> Rares
This sounds like you have an incomplete latex installation. It's not
a problem with org per se. What system are you on and what TeX system
do you have installed?
You can play around with the latex code directly by exporting your org
file to latex (C-c C-e l).
HTH,
eric
[-- Attachment #2: Type: text/plain, Size: 295 bytes --]
--
MC . -.. --- - ..-. .-. .- --. .- .- - ..- -.-. .-.. .- -.-. ..- -.-
NL Professor Eric S Fraga, UCL, http://www.homepages.ucl.ac.uk/~ucecesf/
PG Fingerprint: 8F5C 279D 3907 E14A 5C29 570D C891 93D8 FFFC F67D
BF >++++++++++[>++++++++++>+++++++++++[<]>-]>++.>++++.<-----.++++++.------.
[-- Attachment #3: 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 [flat|nested] 6+ messages in thread
* Re: export beamer
2010-05-04 14:38 ` Erik Butz
@ 2010-05-05 7:32 ` Rares Pop
0 siblings, 0 replies; 6+ messages in thread
From: Rares Pop @ 2010-05-05 7:32 UTC (permalink / raw)
To: Erik Butz; +Cc: emacs-orgmode
[-- Attachment #1.1: Type: text/plain, Size: 2520 bytes --]
Thanks Erik,
that was the problem. As a summary, I fixed my initial problem by
- adding (require 'org-latex) to my .emacs configuration file
- installing the *texlive-latex-extra* package for the LaTeX
supplementary packages
Case closed.
Thanks again,
Rares
P.S. Good spotting Erik, I'm using ubuntu :)
On Tue, May 4, 2010 at 5:38 PM, Erik Butz <erik.butz@googlemail.com> wrote:
> Hi Rares,
>
> actually it seems that it IS working. The error you are getting now is
> a latex error saying that you are missing a package (wrapfig). You
> probably need to update your latex installation with that package. The
> way you do this, depends on the distribution you're using. On
> ubuntu/debian you could do:
> apt-cache search wrapfig
>
> which would give:
> texlive-latex-extra - TeX Live: LaTeX supplementary packages
>
> which would then be the package that you're missing.
>
>
> Cheers,
>
> Erik
>
>
> On Tue, May 4, 2010 at 3:18 PM, Rares Pop <rares.pop@gmail.com> wrote:
> > It's not working.
> >
> > I'm getting the following error when exporting to PDF:
> >
> > ! LaTeX Error: File `wrapfig.sty' not found.
> >
> > Type X to quit or <RETURN> to proceed,
> > or enter new name. (Default extension: sty)
> >
> > Enter file name:
> > ! Emergency stop.
> > <read *>
> >
> > l.11 \usepackage
> > {soul}^^M
> > *** (cannot \read from terminal in nonstop modes)
> >
> > Thanks,
> > Rares
> >
> > On Tue, May 4, 2010 at 3:47 PM, Erik Butz <erik.butz@googlemail.com>
> wrote:
> >>
> >> Hi Rares,
> >>
> >> I had a similar problem recently which was cured by including
> >>
> >> (require 'org-latex)
> >>
> >> in my .emacs file. Does this help in your case?
> >>
> >> Cheers,
> >>
> >> Erik
> >>
> >> On Tue, May 4, 2010 at 10:09 AM, Rares Pop <rares.pop@gmail.com> wrote:
> >> > Hi all,
> >> >
> >> > i'm using emacs-23.1 and org-mode 6.35i and trying to export as PDF
> the
> >> > beamer document from the Beamer tutorial
> >> > http://orgmode.org/worg/org-tutorials/org-beamer.php
> >> > but i get the following error:
> >> >
> >> > org-export-latex-set-initial-vars: No definition for class `beamer' in
> >> > `org-export-latex-classes'
> >> >
> >> > Can you please help me on this front?
> >> >
> >> > Thanks,
> >> > Rares
> >> >
> >> > _______________________________________________
> >> > 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
> >> >
> >> >
> >
> >
>
[-- Attachment #1.2: Type: text/html, Size: 4037 bytes --]
[-- Attachment #2: 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 [flat|nested] 6+ messages in thread
end of thread, other threads:[~2010-05-05 7:33 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-04 8:09 export beamer Rares Pop
2010-05-04 12:47 ` Erik Butz
2010-05-04 13:18 ` Rares Pop
2010-05-04 14:38 ` Erik Butz
2010-05-05 7:32 ` Rares Pop
2010-05-04 15:15 ` Eric S Fraga
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).