Hello Peter Thanks for your interest in scrlttr2. > Hi, > > Since a few days i use the scrlttr2 org-mode implementation of > Jambunathan. His work was posted in this list: > http://lists.gnu.org/archive/html/emacs-orgmode/2010-09/msg01264.html > http://lists.gnu.org/archive/html/emacs-orgmode/2010-09/msg01266.html > > His 4 .el files are placed in ~/emacs/contrib/scrlttr2 and are loaded > in _emacs (commented out my own configuration). > I then start emacs, open brief.scrlttr2, Ctrl-c Ctrl-e d opens the > attached pdf file. I included the intermediate brief.tex. > > As the pdf shows, there is a for the most blank first page with "none" > from the \maketitle statement. Whatever i do, this statement keeps > getting generated. > > How can I remove this? > From my end, I am seeing that \maketitle is no longer produced. Did you revert the org/scrlttr2 file after adding the following line? ,---- | #+BIND: org-export-latex-title-command "" `---- As an alternative you can also do a C-c C-c on the above line and you will find yourself being questioned with: ,---- | Allow BIND values in this buffer? (y or n) y `---- The generation of above query is controlled by the following variable ,----[ C-h v org-export-allow-BIND RET ] | org-export-allow-BIND is a variable defined in `org-exp.el'. | Its value is confirm | | Documentation: | Non-nil means allow #+BIND to define local variable values for export. | This is a potential security risk, which is why the user must confirm the | use of these lines. | | You can customize this variable. | | [back] `---- You may also want to check that variable. On export to scrlttr2, Org creates a "*Org PDF LaTeX Output*" buffer that contains some errors [1]. Inspite of this a pdf file is produced. The errors are because of extra newlines in \encl and \closing commands. The attached "patch" to org-latex.el removes this extra newline. If there is some interest from maintainer's side I can create a formal patch for org-latex.el[2].