* Custom title page in org-mode @ 2011-12-21 18:17 ` Steve Prud'Homme 2011-12-21 22:15 ` Nick Dokos 0 siblings, 1 reply; 14+ messages in thread From: Steve Prud'Homme @ 2011-12-21 18:17 UTC (permalink / raw) To: Emacs-orgmode Ok so i use emacs for school work. I was trying to make a custom title page because, the default latex custom page do not respect my teacher standard So my org-file look like that : French comment : Exemple de page titre de l'UQAM intégrée dans un fichier.org #+LaTeX_CLASS: report #+LaTeX: \renewcommand{\baselinestretch}{1.5} #+latex_header: \usepackage[french]{babel} #+LaTeX: \begin{document} #+LaTeX:\begin{center} #+LaTeX:\thispagestyle{empty} #+LaTeX:\textbf {Université du Québec à Montréal} \\ #+LaTeX:\vspace*{\fill} #+LaTeX:Travail écrit : Mon métier d'hier à aujourd'hui\\ #+LaTeX:\vspace*{\fill} #+LaTeX:Travail présenté à\\ #+LaTeX:Mme Sophie Grossman\\ #+LaTeX:\vspace*{\fill} #+LaTeX:Dans le cadre du cours\\ #+LaTeX:FPT 1402, groupe 20, Réflexion critique sur le métier, la technique\\ #+LaTeX:\vspace*{\fill} #+LaTeX:Par\\ #+LaTeX:\textbf{Joseph Benoît Steve Prud'Homme}\\ #+LaTeX:PRUS28108006\\ #+LaTeX:\vspace*{\fill} #+LaTeX:Programme\\ #+LaTeX:Baccalauréat d'enseignement en formation professionnelle et technique #+LaTeX:Concentration en formation professionnelle au secondaire\\ #+LaTeX:\vspace*{\fill} #+LaTeX:25 octobre 2010\\ #+LaTeX:\vspace*{\fill} #+LaTeX:\end{center} * Introduction et compréhension de la thématique (...) The problem it is possible to cancel the default latex title page in my org-file. It is possible te place the table of content after the custom title page. I know that is latex question but i want to rest in my .org file and not edit my .tex file. -- Posté par Steve Prud'Homme sprudhom@gmail.com 514 466-3951 ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Custom title page in org-mode 2011-12-21 18:17 ` Custom title page in org-mode Steve Prud'Homme @ 2011-12-21 22:15 ` Nick Dokos 2011-12-21 22:23 ` John Hendy 0 siblings, 1 reply; 14+ messages in thread From: Nick Dokos @ 2011-12-21 22:15 UTC (permalink / raw) To: Steve Prud'Homme; +Cc: nicholas.dokos, Emacs-orgmode Steve Prud'Homme <sprudhom@gmail.com> wrote: > Ok so i use emacs for school work. > I was trying to make a custom title page because, the default latex > custom page do not respect my teacher standard > > So my org-file look like that : > > French comment : Exemple de page titre de l'UQAM int=E9gr=E9e dans un fichi= > er.org > > #+LaTeX_CLASS: report > #+LaTeX: \renewcommand{\baselinestretch}{1.5} > #+latex_header: \usepackage[french]{babel} > #+LaTeX: \begin{document} > #+LaTeX:\begin{center} > #+LaTeX:\thispagestyle{empty} > #+LaTeX:\textbf {Universit=E9 du Qu=E9bec =E0 Montr=E9al} \\ > #+LaTeX:\vspace*{\fill} > #+LaTeX:Travail =E9crit : Mon m=E9tier d'hier =E0 aujourd'hui\\ > #+LaTeX:\vspace*{\fill} > #+LaTeX:Travail pr=E9sent=E9 =E0\\ > #+LaTeX:Mme Sophie Grossman\\ > #+LaTeX:\vspace*{\fill} > #+LaTeX:Dans le cadre du cours\\ > #+LaTeX:FPT 1402, groupe 20, R=E9flexion critique sur le m=E9tier, la techn= > ique\\ > #+LaTeX:\vspace*{\fill} > #+LaTeX:Par\\ > #+LaTeX:\textbf{Joseph Beno=EEt Steve Prud'Homme}\\ > #+LaTeX:PRUS28108006\\ > #+LaTeX:\vspace*{\fill} > #+LaTeX:Programme\\ > #+LaTeX:Baccalaur=E9at d'enseignement en formation professionnelle et techn= > ique > #+LaTeX:Concentration en formation professionnelle au secondaire\\ > #+LaTeX:\vspace*{\fill} > #+LaTeX:25 octobre 2010\\ > #+LaTeX:\vspace*{\fill} > #+LaTeX:\end{center} > > > * Introduction et compr=E9hension de la th=E9matique > (...) > Ugh. > The problem it is possible to cancel the default latex title page in > my org-file. > It is possible te place the table of content after the custom title page. > I know that is latex question but i want to rest in my .org file and > not edit my .tex file. > This is actually not a latex question: the org latex exporter does these things in a standard way. It may be possible to override some or all of this behavior, but I haven't checked because I think there is a better method. If I were you, what I would do is make my own LaTeX class. Start from the one closest to the desired result (probably article), incorporate whatever changes you want from report.cls (in particular, the page breaks you want), make whatever changes you want to the \title, \author etc. macros, save the result as myarticle.cls in the same directory as your org file, and add an entry for it to org-export-latex-classes. Then add a #+LaTeX_CLASS: myarticle to your org file and off you go. In more detail: 1) I copied the official article.cls to myarticle.cls in the current directory with cp $(kpsewhich article.cls) myarticle.cls 2) In myarticle.cls, I changed \@titlepagefalse to \@titlepagetrue in order to get a separate title page, and I added a \newpage at the end of the \tableofcontents macro (btw, report.cls does the latter in a subtler way, but never mind about that) and just for the heck of it, I also changed the baselinestretch - but I think this last is better done in a different way [fn:1]: --8<---------------cut here---------------start------------->8--- $ diff -u $(kpsewhich article.cls) myarticle.cls --- /usr/share/texmf-texlive/tex/latex/base/article.cls 2009-09-28 11:31:27.000000000 -0400 +++ myarticle.cls 2011-12-21 16:50:18.150992695 -0500 @@ -58,7 +58,7 @@ \newcommand\@ptsize{} \newif\if@restonecol \newif\if@titlepage -\@titlepagefalse +\@titlepagetrue \if@compatibility\else \DeclareOption{a4paper} {\setlength\paperheight {297mm}% @@ -123,7 +123,7 @@ \input{size1\@ptsize.clo} \setlength\lineskip{1\p@} \setlength\normallineskip{1\p@} -\renewcommand\baselinestretch{} +\renewcommand\baselinestretch{1.3} \setlength\parskip{0\p@ \@plus \p@} \@lowpenalty 51 \@medpenalty 151 @@ -514,6 +514,7 @@ \@mkboth{% \MakeUppercase\contentsname}{\MakeUppercase\contentsname}}% \@starttoc{toc}% + \newpage% } \newcommand*\l@part[2]{% \ifnum \c@tocdepth >-2\relax --8<---------------cut here---------------end--------------->8--- 3) I added a stanza to org-export-latex-classes (I did that temporarily in my *scratch* buffer, but you can add it to .emacs if you want): --8<---------------cut here---------------start------------->8--- (add-to-list 'org-export-latex-classes '("myarticle" "\\documentclass[11pt]{myarticle}" ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}") ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))) --8<---------------cut here---------------end--------------->8--- 4) I added the LaTeX_CLASS line to my org file: --8<---------------cut here---------------start------------->8--- #+LaTeX_CLASS: myarticle --8<---------------cut here---------------end--------------->8--- That's all that's needed to produce separate title and TOC pages and keep the rest of the article class intact. If you don't like the titlepage format, you can modify it to your heart's content: you will need to figure out the LaTeX part to do that, but that's not as difficult as you might think it is at first sight - and I guarantee that you will have an easier time this way than fighting the org latex exporter, a fight that you will probably lose :-) IMO, of course. Nick Footnotes: [fn:1] Bastien is right that redefining \baselinestretch is better than mucking around with the \baselineskip as I suggested (see e.g. http://www.tex.ac.uk/cgi-bin/texfaq2html?label=linespace ) It's probably even better to do it like this however: --8<---------------cut here---------------start------------->8--- #+LaTeX_HEADER: \usepackage{setspace}\doublespacing --8<---------------cut here---------------end--------------->8--- or --8<---------------cut here---------------start------------->8--- #+LaTeX_HEADER: \usepackage{setspace}\onehalfspacing --8<---------------cut here---------------end--------------->8--- or if you don't like the built-in factors, choose your own: --8<---------------cut here---------------start------------->8--- #+LaTeX_HEADER: \usepackage{setspace}\setstretch{1.3} --8<---------------cut here---------------end--------------->8--- BTW, I think the factors are logarithmic: doublespacing is about 1.66 and onehalfspacing is 1.25 or so (depending on the font size). ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Custom title page in org-mode 2011-12-21 22:15 ` Nick Dokos @ 2011-12-21 22:23 ` John Hendy 2011-12-21 23:25 ` Nick Dokos 0 siblings, 1 reply; 14+ messages in thread From: John Hendy @ 2011-12-21 22:23 UTC (permalink / raw) To: nicholas.dokos; +Cc: Emacs-orgmode, Steve Prud'Homme [-- Attachment #1: Type: text/plain, Size: 2949 bytes --] On Wed, Dec 21, 2011 at 4:15 PM, Nick Dokos <nicholas.dokos@hp.com> wrote: > Steve Prud'Homme <sprudhom@gmail.com> wrote: > > > Ok so i use emacs for school work. > > I was trying to make a custom title page because, the default latex > > custom page do not respect my teacher standard > > > > So my org-file look like that : > > [...] > If I were you, what I would do is make my own LaTeX class. Start from > the one closest to the desired result (probably article), incorporate > whatever changes you want from report.cls (in particular, the page > breaks you want), make whatever changes you want to the \title, \author > etc. macros, save the result as myarticle.cls in the same directory as > your org file, and add an entry for it to org-export-latex-classes. Then > add a > > #+LaTeX_CLASS: myarticle > > [...] > That's all that's needed to produce separate title and TOC pages and > keep the rest of the article class intact. If you don't like the > titlepage format, you can modify it to your heart's content: you will > need to figure out the LaTeX part to do that, but that's not as > difficult as you might think it is at first sight - and I guarantee that > you will have an easier time this way than fighting the org latex > exporter, a fight that you will probably lose :-) IMO, of course. > > I just did this and took a different method. I simply added: --- #+text: \input{./title.tex} --- to the beginning of my document. Then I created a separate .tex file with the title. If something is recurring, maybe it's worth the separate article class file. If not, I think it *might* be simpler to just define a custom title page and do as above. I think I just followed this: http://en.wikibooks.org/wiki/LaTeX/Title_Creation#Custom_Title_Pages Up to you! I can't guarantee this is right; I'm on a work computer and did this on my home one. John > Nick > > Footnotes: > > [fn:1] Bastien is right that redefining \baselinestretch is better than > mucking around with the \baselineskip as I suggested (see > e.g. http://www.tex.ac.uk/cgi-bin/texfaq2html?label=linespace ) > > It's probably even better to do it like this however: > > --8<---------------cut here---------------start------------->8--- > #+LaTeX_HEADER: \usepackage{setspace}\doublespacing > --8<---------------cut here---------------end--------------->8--- > > or > > --8<---------------cut here---------------start------------->8--- > #+LaTeX_HEADER: \usepackage{setspace}\onehalfspacing > --8<---------------cut here---------------end--------------->8--- > > or if you don't like the built-in factors, choose your own: > > --8<---------------cut here---------------start------------->8--- > #+LaTeX_HEADER: \usepackage{setspace}\setstretch{1.3} > --8<---------------cut here---------------end--------------->8--- > > BTW, I think the factors are logarithmic: doublespacing is about 1.66 > and onehalfspacing is 1.25 or so (depending on the font size). > > [-- Attachment #2: Type: text/html, Size: 5200 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Custom title page in org-mode 2011-12-21 22:23 ` John Hendy @ 2011-12-21 23:25 ` Nick Dokos 2011-12-21 23:52 ` Nick Dokos 2011-12-22 2:03 ` John Hendy 0 siblings, 2 replies; 14+ messages in thread From: Nick Dokos @ 2011-12-21 23:25 UTC (permalink / raw) To: John Hendy; +Cc: nicholas.dokos, Emacs-orgmode, Steve Prud'Homme John Hendy <jw.hendy@gmail.com> wrote: > That's all that's needed to produce separate title and TOC pages and > keep the rest of the article class intact. If you don't like the > titlepage format, you can modify it to your heart's content: you will > need to figure out the LaTeX part to do that, but that's not as > difficult as you might think it is at first sight - and I guarantee that > you will have an easier time this way than fighting the org latex > exporter, a fight that you will probably lose :-) IMO, of course. > > I just did this and took a different method. I simply added: > > --- > #+text: \input{./title.tex} > --- > > to the beginning of my document. Then I created a separate .tex file > with the title. If something is recurring, maybe it's worth the > separate article class file. If not, I think it *might* be simpler to > just define a custom title page and do as above. I think I just > followed > this: http://en.wikibooks.org/wiki/LaTeX/Title_Creation#Custom_Title_Pages > > Up to you! I can't guarantee this is right; I'm on a work computer and did this on my home one. > ... but you have to do something (or perhaps *not* do something) in order to convince the org latex exporter not to produce a title page, right? Is it something simple like omitting #+TITLE and #+AUTHOR? Nick ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Custom title page in org-mode 2011-12-21 23:25 ` Nick Dokos @ 2011-12-21 23:52 ` Nick Dokos 2011-12-22 2:03 ` John Hendy 1 sibling, 0 replies; 14+ messages in thread From: Nick Dokos @ 2011-12-21 23:52 UTC (permalink / raw) Cc: nicholas.dokos, emacs-orgmode Nick Dokos <nicholas.dokos@hp.com> wrote: > John Hendy <jw.hendy@gmail.com> wrote: > > > That's all that's needed to produce separate title and TOC pages and > > keep the rest of the article class intact. If you don't like the > > titlepage format, you can modify it to your heart's content: you will > > need to figure out the LaTeX part to do that, but that's not as > > difficult as you might think it is at first sight - and I guarantee that > > you will have an easier time this way than fighting the org latex > > exporter, a fight that you will probably lose :-) IMO, of course. > > > > I just did this and took a different method. I simply added: > > > > --- > > #+text: \input{./title.tex} > > --- > > > > to the beginning of my document. Then I created a separate .tex file > > with the title. If something is recurring, maybe it's worth the > > separate article class file. If not, I think it *might* be simpler to > > just define a custom title page and do as above. I think I just > > followed > > this: http://en.wikibooks.org/wiki/LaTeX/Title_Creation#Custom_Title_Pages > > > > Up to you! I can't guarantee this is right; I'm on a work computer and did this on my home one. > > > > ... but you have to do something (or perhaps *not* do something) in order to convince > the org latex exporter not to produce a title page, right? Is it something simple > like omitting #+TITLE and #+AUTHOR? > One has to either a) explicitly have an empty #+TITLE: or b) set org-export-latex-title-command to "". The in-file setting for the latter is #+BIND: org-export-latex-title-command "" but #+TITLE: is easier :-) Nick PS. BTW, there's plenty o' stuff on the mailing list about such problems: http://thread.gmane.org/gmane.emacs.orgmode/38156 http://thread.gmane.org/gmane.emacs.orgmode/28138 http://thread.gmane.org/gmane.emacs.orgmode/40596 http://thread.gmane.org/gmane.emacs.orgmode/32081 and probably much more... ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Custom title page in org-mode 2011-12-21 23:25 ` Nick Dokos 2011-12-21 23:52 ` Nick Dokos @ 2011-12-22 2:03 ` John Hendy 2011-12-22 3:01 ` Nick Dokos 2011-12-23 12:54 ` Bastien 1 sibling, 2 replies; 14+ messages in thread From: John Hendy @ 2011-12-22 2:03 UTC (permalink / raw) To: nicholas.dokos; +Cc: Emacs-orgmode, Steve Prud'Homme [-- Attachment #1: Type: text/plain, Size: 1914 bytes --] On Wed, Dec 21, 2011 at 5:25 PM, Nick Dokos <nicholas.dokos@hp.com> wrote: > John Hendy <jw.hendy@gmail.com> wrote: > > > That's all that's needed to produce separate title and TOC pages and > > keep the rest of the article class intact. If you don't like the > > titlepage format, you can modify it to your heart's content: you will > > need to figure out the LaTeX part to do that, but that's not as > > difficult as you might think it is at first sight - and I guarantee > that > > you will have an easier time this way than fighting the org latex > > exporter, a fight that you will probably lose :-) IMO, of course. > > > > I just did this and took a different method. I simply added: > > > > --- > > #+text: \input{./title.tex} > > --- > > > > to the beginning of my document. Then I created a separate .tex file > > with the title. If something is recurring, maybe it's worth the > > separate article class file. If not, I think it *might* be simpler to > > just define a custom title page and do as above. I think I just > > followed > > this: > http://en.wikibooks.org/wiki/LaTeX/Title_Creation#Custom_Title_Pages > > > > Up to you! I can't guarantee this is right; I'm on a work computer and > did this on my home one. > > > > ... but you have to do something (or perhaps *not* do something) in order > to convince > the org latex exporter not to produce a title page, right? Is it something > simple > like omitting #+TITLE and #+AUTHOR? > > Good point. Yes. Now that I'm back at home I looked at the document and the header stuff in the document in which I used this technique is: ---- #+OPTIONS: toc:nil TeX:t LaTeX:t H:4 f:t todo:nil num:nil tags:nil #+BIND: org-export-latex-title-command "" #+text: \input{./title-page.tex} * first headline ---- Neat tip about just doing "#+title: "; hadn't realized a blank would do the same as the bind entry! John > Nick > [-- Attachment #2: Type: text/html, Size: 2955 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Custom title page in org-mode 2011-12-22 2:03 ` John Hendy @ 2011-12-22 3:01 ` Nick Dokos 2011-12-23 12:54 ` Bastien 1 sibling, 0 replies; 14+ messages in thread From: Nick Dokos @ 2011-12-22 3:01 UTC (permalink / raw) To: John Hendy; +Cc: nicholas.dokos, Emacs-orgmode, Steve Prud'Homme John Hendy <jw.hendy@gmail.com> wrote: > Neat tip about just doing "#+title: "; hadn't realized a blank would > do the same as the bind entry! > Carsten pointed that out in one of the threads that I referred to in my other email. I hadn't realized it back then and I didn't remember it now until I found that thread. Time to get a new brain... Nick PS. ... and thank goodness for the mailing list archives. ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Custom title page in org-mode 2011-12-22 2:03 ` John Hendy 2011-12-22 3:01 ` Nick Dokos @ 2011-12-23 12:54 ` Bastien 1 sibling, 0 replies; 14+ messages in thread From: Bastien @ 2011-12-23 12:54 UTC (permalink / raw) To: John Hendy; +Cc: nicholas.dokos, Emacs-orgmode, Steve Prud'Homme John Hendy <jw.hendy@gmail.com> writes: > Neat tip about just doing "#+title: "; hadn't realized a blank would > do the same as the bind entry! Thanks -- I've added a FAQ in worg/org-faq.org about this. -- Bastien ^ permalink raw reply [flat|nested] 14+ messages in thread
* Problem orgmode, beamer and macport @ 2012-10-07 18:34 ` Steve Prud'Homme 2012-10-07 22:55 ` Nick Dokos 0 siblings, 1 reply; 14+ messages in thread From: Steve Prud'Homme @ 2012-10-07 18:34 UTC (permalink / raw) To: emacs-orgmode [-- Attachment #1: Type: text/plain, Size: 2707 bytes --] Ok so i've install on my mac : 1. Macport 2. Emacs 24 3. Texlive I want to make presentation with beamer : Tutorial : http://emacs-fu.blogspot.ca/2009/10/writing-presentations-with-org-mode-and.html I've put this on my .emac -- ;; allow for export=>beamer by placing ;; #+LaTeX_CLASS: beamer in org files(unless (boundp 'org-export-latex-classes) (setq org-export-latex-classes nil)) (add-to-list 'org-export-latex-classes ;; beamer class, for presentations '("beamer" "\\documentclass[11pt]{beamer}\n \\mode<{{{beamermode}}}>\n \\usetheme{{{{beamertheme}}}}\n \\usecolortheme{{{{beamercolortheme}}}}\n \\beamertemplateballitem\n \\setbeameroption{show notes} \\usepackage[utf8]{inputenc}\n \\usepackage[T1]{fontenc}\n \\usepackage{hyperref}\n \\usepackage{color} \\usepackage{listings} \\lstset{numbers=none,language=[ISO]C++,tabsize=4, frame=single, basicstyle=\\small, showspaces=false,showstringspaces=false, showtabs=false, keywordstyle=\\color{blue}\\bfseries, commentstyle=\\color{red}, }\n \\usepackage{verbatim}\n \\institute{{{{beamerinstitute}}}}\n \\subject{{{{beamersubject}}}}\n" ("\\section{%s}" . "\\section*{%s}") ("\\begin{frame}[fragile]\\frametitle{%s}" "\\end{frame}" "\\begin{frame}[fragile]\\frametitle{%s}" "\\end{frame}"))) ;; letter class, for formal letters (add-to-list 'org-export-latex-classes '("letter" "\\documentclass[11pt]{letter}\n \\usepackage[utf8]{inputenc}\n \\usepackage[T1]{fontenc}\n \\usepackage{color}" ("\\section{%s}" . "\\section*{%s}") ("\\subsection{%s}" . "\\subsection*{%s}") ("\\subsubsection{%s}" . "\\subsubsection*{%s}") ("\\paragraph{%s}" . "\\paragraph*{%s}") ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))) -- After i've put this in one of my file -- #+LaTeX_CLASS: beamer#+MACRO: BEAMERMODE presentation#+MACRO: BEAMERTHEME Antibes#+MACRO: BEAMERCOLORTHEME lily#+MACRO: BEAMERSUBJECT RMRF#+MACRO: BEAMERINSTITUTE Miskatonic University, Astrology Dept.#+TITLE: Presentation with Org-Mode and Beamer#+AUTHOR: Someone -- Ive do c-e p to produce a pdf This is the after message : -- #+LaTeX_CLASS: beamer#+MACRO: BEAMERMODE presentation#+MACRO: BEAMERTHEME Antibes#+MACRO: BEAMERCOLORTHEME lily#+MACRO: BEAMERSUBJECT RMRF#+MACRO: BEAMERINSTITUTE Miskatonic University, Astrology Dept.#+TITLE: Presentation with Org-Mode and Beamer#+AUTHOR: Someone -- What do i have to do to fix that. Thanks -- Posté par Steve Prud'Homme sprudhom@gmail.com 514 466-3951 [-- Attachment #2: Type: text/html, Size: 4904 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Problem orgmode, beamer and macport 2012-10-07 18:34 ` Problem orgmode, beamer and macport Steve Prud'Homme @ 2012-10-07 22:55 ` Nick Dokos 2012-10-07 23:06 ` Steve Prud'Homme 0 siblings, 1 reply; 14+ messages in thread From: Nick Dokos @ 2012-10-07 22:55 UTC (permalink / raw) To: Steve Prud'Homme; +Cc: emacs-orgmode Steve Prud'Homme <sprudhom@gmail.com> wrote: > ... > > After i've put this in one of my file > > -- > #+LaTeX_CLASS: beamer > #+MACRO: BEAMERMODE presentation > #+MACRO: BEAMERTHEME Antibes > #+MACRO: BEAMERCOLORTHEME lily > #+MACRO: BEAMERSUBJECT RMRF > #+MACRO: BEAMERINSTITUTE Miskatonic University, Astrology Dept. > #+TITLE: Presentation with Org-Mode and Beamer > #+AUTHOR: Someone > -- > Ive do c-e p to produce a pdf > This is the after message : > -- > #+LaTeX_CLASS: beamer > #+MACRO: BEAMERMODE presentation > #+MACRO: BEAMERTHEME Antibes > #+MACRO: BEAMERCOLORTHEME lily > #+MACRO: BEAMERSUBJECT RMRF > #+MACRO: BEAMERINSTITUTE Miskatonic University, Astrology Dept. > #+TITLE: Presentation with Org-Mode and Beamer > #+AUTHOR: Someone > -- > > What do i have to do to fix that. First thing to do is to paste the error message, not the original file, and resend the report. Second thing is to tell us the version of org you are using. FWIW, I processed this through the old exporter and it worked without a problem. I also tried with a minimal .emacs plus the code you posted and that too worked without a problem. Nick Org-mode version 7.9.2 (release_7.9.2-402-ge5e49e @ /home/nick/elisp/org-mode/lisp/) GNU Emacs 24.2.50.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.24.4) of 2012-09-21 ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Problem orgmode, beamer and macport 2012-10-07 22:55 ` Nick Dokos @ 2012-10-07 23:06 ` Steve Prud'Homme 2012-10-07 23:38 ` Nick Dokos 0 siblings, 1 reply; 14+ messages in thread From: Steve Prud'Homme @ 2012-10-07 23:06 UTC (permalink / raw) To: nicholas.dokos; +Cc: emacs-orgmode [-- Attachment #1: Type: text/plain, Size: 13378 bytes --] Oups this is the error : This is pdfTeX, Version 3.1415926-2.4-1.40.13 (TeX Live 2012/MacPorts 2012_4) restricted \write18 enabled. entering extended mode (/Users/sprudhom/Dropbox/STEVE/Projet/PROJET C2000 INFOGRAPHIE MODULE 3/Ressour ce/Notes de cours/C3notes.tex LaTeX2e <2011/06/27> Babel <v3.8m> and hyphenation patterns for english, dumylang, nohyphenation, cz ech, slovak, dutch, ukenglish, usenglishmax, basque, french, german-x-2012-05-3 0, ngerman-x-2012-05-30, german, ngerman, swissgerman, italian, polish, portugu ese, spanish, catalan, galician, loaded. (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamer.cls (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbasercs.sty) Document Class: beamer 2011/09/12 development version 3.20 A class for typesett ing presentations (rcs-revision 70f9d8411e54) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbasemodes.sty (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbasedecode.sty)) (/opt/local/share/texmf-texlive-dist/tex/generic/oberdiek/ifpdf.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbaseoptions.sty (/opt/local/share/texmf-texlive-dist/tex/latex/graphics/keyval.sty)) (/opt/local/share/texmf-texlive-dist/tex/latex/geometry/geometry.sty (/opt/local/share/texmf-texlive-dist/tex/generic/oberdiek/ifvtex.sty) (/opt/local/share/texmf-texlive-dist/tex/generic/ifxetex/ifxetex.sty)) (/opt/local/share/texmf-texlive-dist/tex/latex/base/size11.clo) (/opt/local/share/texmf/tex/latex/pgf/basiclayer/pgfcore.sty (/opt/local/share/texmf-texlive-dist/tex/latex/graphics/graphicx.sty (/opt/local/share/texmf-texlive-dist/tex/latex/graphics/graphics.sty (/opt/local/share/texmf-texlive-dist/tex/latex/graphics/trig.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/latexconfig/graphics.cfg) (/opt/local/share/texmf-texlive-dist/tex/latex/pdftex-def/pdftex.def (/opt/local/share/texmf-texlive-dist/tex/generic/oberdiek/infwarerr.sty) (/opt/local/share/texmf-texlive-dist/tex/generic/oberdiek/ltxcmds.sty)))) (/opt/local/share/texmf/tex/latex/pgf/systemlayer/pgfsys.sty (/opt/local/share/texmf/tex/latex/pgf/utilities/pgfrcs.sty (/opt/local/share/texmf/tex/generic/pgf/utilities/pgfutil-common.tex) (/opt/local/share/texmf/tex/generic/pgf/utilities/pgfutil-latex.def (/opt/local/share/texmf-texlive-dist/tex/latex/ms/everyshi.sty)) (/opt/local/share/texmf/tex/generic/pgf/utilities/pgfrcs.code.tex)) (/opt/local/share/texmf/tex/generic/pgf/systemlayer/pgfsys.code.tex (/opt/local/share/texmf/tex/generic/pgf/utilities/pgfkeys.code.tex (/opt/local/share/texmf/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex)) (/opt/local/share/texmf/tex/generic/pgf/systemlayer/pgf.cfg) (/opt/local/share/texmf/tex/generic/pgf/systemlayer/pgfsys-pdftex.def (/opt/local/share/texmf/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def))) (/opt/local/share/texmf/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex) (/opt/local/share/texmf/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex)) (/opt/local/share/texmf-texlive-dist/tex/latex/xcolor/xcolor.sty (/opt/local/share/texmf-texlive-dist/tex/latex/latexconfig/color.cfg)) (/opt/local/share/texmf/tex/generic/pgf/basiclayer/pgfcore.code.tex (/opt/local/share/texmf/tex/generic/pgf/math/pgfmath.code.tex (/opt/local/share/texmf/tex/generic/pgf/math/pgfmathcalc.code.tex (/opt/local/share/texmf/tex/generic/pgf/math/pgfmathutil.code.tex) (/opt/local/share/texmf/tex/generic/pgf/math/pgfmathparser.code.tex) (/opt/local/share/texmf/tex/generic/pgf/math/pgfmathfunctions.code.tex (/opt/local/share/texmf/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex) (/opt/local/share/texmf/tex/generic/pgf/math/pgfmathfunctions.trigonometric.cod e.tex) (/opt/local/share/texmf/tex/generic/pgf/math/pgfmathfunctions.random.code.tex) (/opt/local/share/texmf/tex/generic/pgf/math/pgfmathfunctions.comparison.code.t ex) (/opt/local/share/texmf/tex/generic/pgf/math/pgfmathfunctions.base.code.tex ) (/opt/local/share/texmf/tex/generic/pgf/math/pgfmathfunctions.round.code.tex) (/opt/local/share/texmf/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex))) (/opt/local/share/texmf/tex/generic/pgf/math/pgfmathfloat.code.tex)) (/opt/local/share/texmf/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex) (/opt/local/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.te x) (/opt/local/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex ) (/opt/local/share/texmf/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex) (/opt/local/share/texmf/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex ) (/opt/local/share/texmf/tex/generic/pgf/basiclayer/pgfcoretransformations.code. tex) (/opt/local/share/texmf/tex/generic/pgf/basiclayer/pgfcorequick.code.tex) (/opt/local/share/texmf/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex) (/opt/local/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.t ex) (/opt/local/share/texmf/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex) (/opt/local/share/texmf/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex) (/opt/local/share/texmf/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex (/opt/local/share/texmf/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex)) (/opt/local/share/texmf/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex) (/opt/local/share/texmf/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex ) (/opt/local/share/texmf/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex)) ) (/opt/local/share/texmf/tex/latex/pgf/utilities/xxcolor.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/hyperref/hyperref.sty (/opt/local/share/texmf-texlive-dist/tex/generic/oberdiek/hobsub-hyperref.sty (/opt/local/share/texmf-texlive-dist/tex/generic/oberdiek/hobsub-generic.sty)) (/opt/local/share/texmf-texlive-dist/tex/latex/oberdiek/kvoptions.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/hyperref/pd1enc.def) (/opt/local/share/texmf-texlive-dist/tex/latex/latexconfig/hyperref.cfg) (/opt/local/share/texmf-texlive-dist/tex/latex/url/url.sty) Package hyperref Message: Stopped early. ) Package hyperref Message: Driver (autodetected): hpdftex. (/opt/local/share/texmf-texlive-dist/tex/latex/hyperref/hpdftex.def (/opt/local/share/texmf-texlive-dist/tex/latex/oberdiek/rerunfilecheck.sty)) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbaserequires.sty (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbasecompatibility.s ty) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbasefont.sty (/opt/local/share/texmf-texlive-dist/tex/latex/amsfonts/amssymb.sty (/opt/local/share/texmf-texlive-dist/tex/latex/amsfonts/amsfonts.sty))) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbasetranslator.sty (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/translator/translator.sty (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/translator/translator-lan guage-mappings.tex))) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbasemisc.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbasetwoscreens.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbaseoverlay.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbasetitle.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbasesection.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbaseframe.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbaseverbatim.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbaseframesize.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbaseframecomponents .sty) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbasecolor.sty ) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbasenotes.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbasetoc.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbasetemplates.sty (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/ beamerbaseauxtemplates.st y (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbaseboxes.sty))) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbaselocalstructure. sty (/opt/local/share/texmf-texlive-dist/tex/latex/tools/enumerate.sty)) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbasenavigation.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbasetheorems.sty (/opt/local/share/texmf-texlive-dist/tex/latex/amsmath/amsmath.sty For additional information on amsmath, use the `?' option. (/opt/local/share/texmf-texlive-dist/tex/latex/amsmath/amstext.sty (/opt/local/share/texmf-texlive-dist/tex/latex/amsmath/amsgen.sty)) (/opt/local/share/texmf-texlive-dist/tex/latex/amsmath/amsbsy.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/amsmath/amsopn.sty)) (/opt/local/share/texmf-texlive-dist/tex/latex/amscls/amsthm.sty)) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/beamerbasethemes.sty)) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/themes/theme/beamerthemed efault.sty (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/themes/font/beamerfontthe medefault.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/themes/color/beamercolort hemedefault.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/themes/inner/beamerinnert hemedefault.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/themes/outer/beameroutert hemedefault.sty))) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/themes/theme/beamerthemeA ntibes.sty (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/themes/outer/beameroutert hemetree.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/themes/color/beamercolort hemewhale.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/themes/color/beamercolort hemeorchid.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/themes/inner/beamerinnert hemerectangles.sty)) (/opt/local/share/texmf-texlive-dist/tex/latex/beamer/themes/color/beamercolort hemelily.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/base/inputenc.sty (/opt/local/share/texmf-texlive-dist/tex/latex/base/utf8.def (/opt/local/share/texmf-texlive-dist/tex/latex/base/t1enc.dfu) (/opt/local/share/texmf-texlive-dist/tex/latex/base/ot1enc.dfu) (/opt/local/share/texmf-texlive-dist/tex/latex/base/omsenc.dfu))) (/opt/local/share/texmf-texlive-dist/tex/latex/base/fontenc.sty (/opt/local/share/texmf-texlive-dist/tex/latex/base/t1enc.def)) (/opt/local/share/texmf-texlive-dist/tex/latex/listings/listings.sty (/opt/local/share/texmf-texlive-dist/tex/latex/listings/lstmisc.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/listings/listings.cfg)) (/opt/local/share/texmf-texlive-dist/tex/latex/listings/lstlang1.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/listings/lstlang1.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/listings/lstmisc.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/tools/verbatim.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/base/fontenc.sty (/opt/local/share/texmf-texlive-dist/tex/latex/base/t1enc.def)) (/opt/local/share/texmf-texlive-dist/tex/latex/base/fixltx2e.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/tools/longtable.sty) (/opt/local/share/texmf-texlive-dist/tex/latex/float/float.sty) ! 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.43 \usepackage {soul}^^M ! ==> Fatal error occurred, no output PDF file produced! Transcript written on "/Users/sprudhom/Dropbox/STEVE/Projet/PROJET C2000 INFOGR APHIE MODULE 3/Ressource/Notes de cours//C3notes.log". 2012/10/7 Nick Dokos <nicholas.dokos@hp.com> > Steve Prud'Homme <sprudhom@gmail.com> wrote: > > > > ... > > > > After i've put this in one of my file > > > > -- > > #+LaTeX_CLASS: beamer > > #+MACRO: BEAMERMODE presentation > > #+MACRO: BEAMERTHEME Antibes > > #+MACRO: BEAMERCOLORTHEME lily > > #+MACRO: BEAMERSUBJECT RMRF > > #+MACRO: BEAMERINSTITUTE Miskatonic University, Astrology Dept. > > #+TITLE: Presentation with Org-Mode and Beamer > > #+AUTHOR: Someone > > -- > > Ive do c-e p to produce a pdf > > This is the after message : > > -- > > #+LaTeX_CLASS: beamer > > #+MACRO: BEAMERMODE presentation > > #+MACRO: BEAMERTHEME Antibes > > #+MACRO: BEAMERCOLORTHEME lily > > #+MACRO: BEAMERSUBJECT RMRF > > #+MACRO: BEAMERINSTITUTE Miskatonic University, Astrology Dept. > > #+TITLE: Presentation with Org-Mode and Beamer > > #+AUTHOR: Someone > > -- > > > > What do i have to do to fix that. > > First thing to do is to paste the error message, not the original file, > and resend the report. > > Second thing is to tell us the version of org you are using. > FWIW, I processed this through the old exporter and it worked without > a problem. I also tried with a minimal .emacs plus the code you posted > and that too worked without a problem. > > Nick > > Org-mode version 7.9.2 (release_7.9.2-402-ge5e49e @ > /home/nick/elisp/org-mode/lisp/) > GNU Emacs 24.2.50.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.24.4) of > 2012-09-21 > > > > > > -- Posté par Steve Prud'Homme sprudhom@gmail.com 514 466-3951 [-- Attachment #2: Type: text/html, Size: 14531 bytes --] ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Problem orgmode, beamer and macport 2012-10-07 23:06 ` Steve Prud'Homme @ 2012-10-07 23:38 ` Nick Dokos 2012-10-07 23:42 ` Nick Dokos 0 siblings, 1 reply; 14+ messages in thread From: Nick Dokos @ 2012-10-07 23:38 UTC (permalink / raw) To: Steve Prud'Homme; +Cc: emacs-orgmode Steve Prud'Homme <sprudhom@gmail.com> wrote: > > ! 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.43 \usepackage > {soul}^^M > ! ==> Fatal error occurred, no output PDF file produced! > Transcript written on "/Users/sprudhom/Dropbox/STEVE/Projet/PROJET C2000 INFOGR > APHIE MODULE 3/Ressource/Notes de cours//C3notes.log". > What OS are you on? If you are on ubuntu (and maybe on debian as well), install the package texlive-latex-extra with sudo apt-get install texlive-latex-extra BTW, I did dpkg -S wrapfig.sty to find out the package containing wrapfig.sty. Other distros of Linux or other OSes will probably have something similar. Nick > 2012/10/7 Nick Dokos <nicholas.dokos@hp.com> > > Steve Prud'Homme <sprudhom@gmail.com> wrote: > > > ... > > > > After i've put this in one of my file > > > > -- > > #+LaTeX_CLASS: beamer > > #+MACRO: BEAMERMODE presentation > > #+MACRO: BEAMERTHEME Antibes > > #+MACRO: BEAMERCOLORTHEME lily > > #+MACRO: BEAMERSUBJECT RMRF > > #+MACRO: BEAMERINSTITUTE Miskatonic University, Astrology Dept. > > #+TITLE: Presentation with Org-Mode and Beamer > > #+AUTHOR: Someone > > -- > > Ive do c-e p to produce a pdf > > This is the after message : > > -- > > #+LaTeX_CLASS: beamer > > #+MACRO: BEAMERMODE presentation > > #+MACRO: BEAMERTHEME Antibes > > #+MACRO: BEAMERCOLORTHEME lily > > #+MACRO: BEAMERSUBJECT RMRF > > #+MACRO: BEAMERINSTITUTE Miskatonic University, Astrology Dept. > > #+TITLE: Presentation with Org-Mode and Beamer > > #+AUTHOR: Someone > > -- > > > > What do i have to do to fix that. > > First thing to do is to paste the error message, not the original file, > and resend the report. > > Second thing is to tell us the version of org you are using. > FWIW, I processed this through the old exporter and it worked without > a problem. I also tried with a minimal .emacs plus the code you posted > and that too worked without a problem. > > Nick > > Org-mode version 7.9.2 (release_7.9.2-402-ge5e49e @ /home/nick/elisp/org-mode/lisp/) > GNU Emacs 24.2.50.1 (x86_64-unknown-linux-gnu, GTK+ Version 2.24.4) of 2012-09-21 > > -- > Posté par Steve Prud'Homme > sprudhom@gmail.com > 514 466-3951 > > > ---------------------------------------------------- > Alternatives: > > ---------------------------------------------------- ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Problem orgmode, beamer and macport 2012-10-07 23:38 ` Nick Dokos @ 2012-10-07 23:42 ` Nick Dokos 2012-10-08 17:08 ` cberry 0 siblings, 1 reply; 14+ messages in thread From: Nick Dokos @ 2012-10-07 23:42 UTC (permalink / raw) To: Steve Prud'Homme, emacs-orgmode Nick Dokos <nicholas.dokos@hp.com> wrote: > Steve Prud'Homme <sprudhom@gmail.com> wrote: > > > > > ! 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.43 \usepackage > > {soul}^^M > > ! ==> Fatal error occurred, no output PDF file produced! > > Transcript written on "/Users/sprudhom/Dropbox/STEVE/Projet/PROJET C2000 INFOGR > > APHIE MODULE 3/Ressource/Notes de cours//C3notes.log". > > > > What OS are you on? NM - I see you are on a Mac. Maybe a Mac user can help with the proper instructions here. Nick ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: Problem orgmode, beamer and macport 2012-10-07 23:42 ` Nick Dokos @ 2012-10-08 17:08 ` cberry 0 siblings, 0 replies; 14+ messages in thread From: cberry @ 2012-10-08 17:08 UTC (permalink / raw) To: emacs-orgmode Nick Dokos <nicholas.dokos@hp.com> writes: > Nick Dokos <nicholas.dokos@hp.com> wrote: > >> Steve Prud'Homme <sprudhom@gmail.com> wrote: >> >> > >> > ! 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.43 \usepackage >> > {soul}^^M >> > ! ==> Fatal error occurred, no output PDF file produced! >> > Transcript written on "/Users/sprudhom/Dropbox/STEVE/Projet/PROJET C2000 INFOGR >> > APHIE MODULE 3/Ressource/Notes de cours//C3notes.log". >> > >> >> What OS are you on? > > NM - I see you are on a Mac. Maybe a Mac user can help > with the proper instructions here. He is using macports I think. so maybe sudo port install texlive-latex-extra will do it. Chuck > > Nick > > > > ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2012-10-08 17:08 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <sprudhom@gmail.com> 2011-12-21 18:17 ` Custom title page in org-mode Steve Prud'Homme 2011-12-21 22:15 ` Nick Dokos 2011-12-21 22:23 ` John Hendy 2011-12-21 23:25 ` Nick Dokos 2011-12-21 23:52 ` Nick Dokos 2011-12-22 2:03 ` John Hendy 2011-12-22 3:01 ` Nick Dokos 2011-12-23 12:54 ` Bastien 2012-10-07 18:34 ` Problem orgmode, beamer and macport Steve Prud'Homme 2012-10-07 22:55 ` Nick Dokos 2012-10-07 23:06 ` Steve Prud'Homme 2012-10-07 23:38 ` Nick Dokos 2012-10-07 23:42 ` Nick Dokos 2012-10-08 17:08 ` cberry
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).