Re: [O] LaTeX (not Beamer) export options

2017-12-18 Thread Ken Mankoff
Hi Eric,

On 2017-12-15 at 12:12, Eric S Fraga  wrote:
> On Thursday, 14 Dec 2017 at 18:05, Ken Mankoff wrote:
>> Is there an easy way to specify #+LATEX_HEADER options that will not
>> be used when exporting to Beamer?
>
> #+latex_header: \ifx\frametitle\undefined\usepackage{somepackage}\fi
>
> which seems to work.  \usepackage{somepackage} is what you actually want
> when not using beamer.  Replace with your own stuff.  You can make it
> more readable by doing:
>
> # only for LaTeX and not beamer
> #+latex_header: \ifx\frametitle\undefined
> #+latex_header: \usepackage{somepackage}
> #+latex_header: \usepackage{another}
> #+latex_header: \fi

Thanks for this solution. Unless there is a more formal solution, or until 
someone implements #+LATEX_ONLY_HEADER, this works well. Thank you!

  -k.



Re: [O] LaTeX (not Beamer) export options

2017-12-15 Thread Eric S Fraga
On Thursday, 14 Dec 2017 at 18:05, Ken Mankoff wrote:
> Hi Org List,
>
> Is there an easy way to specify #+LATEX_HEADER options that will not
> be used when exporting to Beamer? I can do the opposite
> -#+BEAMER_HEADER lines are not exported to LaTeX. But I have some
> LaTeX config options that are getting in the way when exporting to
> Beamer.

Hopefully somebody else will answer with a proper org solution but, in
the absence of anything else, you could wrap the LaTeX code in the
latex_header with an \if looking for something that is unique to beamer
and only include the code if not beamer.  Something along the lines of

#+latex_header: \ifx\frametitle\undefined\usepackage{somepackage}\fi

which seems to work.  \usepackage{somepackage} is what you actually want
when not using beamer.  Replace with your own stuff.  You can make it
more readable by doing:

# only for LaTeX and not beamer
#+latex_header: \ifx\frametitle\undefined
#+latex_header: \usepackage{somepackage}
#+latex_header: \usepackage{another}
#+latex_header: \fi


HTH,
eric

-- 
Eric S Fraga via Emacs 27.0.50, Org release_9.1.4-214-ge8b71b


signature.asc
Description: PGP signature


[O] LaTeX (not Beamer) export options

2017-12-14 Thread Ken Mankoff
Hi Org List,

Is there an easy way to specify #+LATEX_HEADER options that will not be used 
when exporting to Beamer? I can do the opposite - #+BEAMER_HEADER lines are not 
exported to LaTeX. But I have some LaTeX config options that are getting in the 
way when exporting to Beamer.

Thanks,

  -k.