Re: [O] How to avoid \title{} and \date{} in latex export

2019-04-11 Thread Flavio Leonardo Cavalcanti de Moura
Thank you very much for all answer and advices! Best regards, Flávio On Thu, Apr 11, 2019 at 4:32 PM Jeremie Juste wrote: > > Hello Flavio, > > I believe you meant > > #+OPTIONS:date:nil title:nil > > Notice the "s" at the end of option > > Hope this helps, > > Jeremie > > Flavio Leonardo

Re: [O] How to avoid \title{} and \date{} in latex export

2019-04-11 Thread Jeremie Juste
Hello Flavio, I believe you meant #+OPTIONS:date:nil title:nil Notice the "s" at the end of option Hope this helps, Jeremie Flavio Leonardo Cavalcanti de Moura writes: > Hello, > > My org file uses a latex class that, after exporting, is in conflict with > the lines \date{} and

[O] How to avoid \title{} and \date{} in latex export

2019-04-11 Thread Flavio Leonardo Cavalcanti de Moura
Hello, My org file uses a latex class that, after exporting, is in conflict with the lines \date{} and \title{} automatically generated by orgmode latex export. I already tried the following headings for the org file: 1. #+TITLE: #+DATE: 2. #+TITLE: #+option: date:nil 3. #+option: title:nil

Re: [O] How to avoid \title{} and \date{} in latex export

2019-04-11 Thread Georgios Kaklamanos
Hi, +1 for not supporting Elsevier. Nonetheless, if you *have* to use this template, or if you encounter similar issues with another one, I've used the following workaround in the past: - export just the body of the article (hitting C-b at the export frame) - input that at your tex file using

Re: [O] How to avoid \title{} and \date{} in latex export

2019-04-10 Thread Nick Dokos
Flavio Leonardo Cavalcanti de Moura writes: > Hi Jilius,  > > Thank you very much for your reply. It is a good idea, but the latex > class I am using (entcs) has its own \title and \date, and by > renewing the command I overwrite both...  > > I am removing these lines by hand from the tex file

Re: [O] How to avoid \title{} and \date{} in latex export

2019-04-10 Thread Leslie Watter
Hi Flavio, If you export the whole file directly #+TITLE: should solve your problem. But if you export the subsection only, you'll better add the following to your properties drawer: --- * My Section :PROPERTIES: :EXPORT_FILE_NAME: my-filename-that-has-a-different-name-than-the-section.pdf

Re: [O] How to avoid \title{} and \date{} in latex export

2019-04-10 Thread Flavio Leonardo Cavalcanti de Moura
Hi Jilius, Thank you very much for your reply. It is a good idea, but the latex class I am using (entcs) has its own \title and \date, and by renewing the command I overwrite both... I am removing these lines by hand from the tex file generated by the export engine... but it is not nice. Any

Re: [O] How to avoid \title{} and \date{} in latex export

2019-04-10 Thread Julius Dittmar
Hi  Flávio, perhaps you could add something like (untested) #+LATEX_HEADER: \renewcommand{\title}[1]{} \renewcommand{\date}[1]{} to your org-file? It's not exactly what you asked for, but it might alleviate your problem. HTH, Julius Am 10.04.19 um 18:10 schrieb Flavio Leonardo Cavalcanti de

[O] How to avoid \title{} and \date{} in latex export

2019-04-10 Thread Flavio Leonardo Cavalcanti de Moura
Hello, My org file uses a latex class that, after exporting, is in conflict with the lines \date{} and \title{} automatically generated by orgmode latex export. I already tried the following headings for the org file: 1. #+TITLE: #+DATE: 2. #+TITLE: #+option: date:nil 3. #+option: title:nil