I am trying to merge two presentations in one, but the figures were handled quite differently and I am not sure to compile everything.
1st presentation: contains xfig figures (with special characters $\exists$) that I used to export in pstex and compile with Tex/Dvi option of TeXShop.
2nd presentation: contains jpeg pictures and tikz generated figures, that I normally compile with the Pdflatex option.
I have been trying to export xfig to pdftex instead but using the following preamble I get an option clash for graphicx.
Code: Select all
\documentclass[xcolor=pst]{beamer}
\mode<presentation>
{
\usetheme{default}
\usecolortheme{rose}
\setbeamercovered{transparent}
}
\usepackage[pdftex]{graphicx}
\usepackage{amsmath, amsthm, amsfonts, xspace, stmaryrd}
\usepackage[english]{babel}
\usepackage{hyperref}
\usepackage{verbatim,multirow}
\usepackage{booktabs}
\usepackage{marvosym,geometry}
\usepackage{colortbl}
\usepackage{wasysym}
\usepackage{tikz}
\usetikzlibrary{backgrounds,shapes,arrows,positioning,calc,snakes,fit,automata}
\usepgflibrary{decorations.markings}
\usepackage{gn-logic14}
\usepackage{amsmath, epsfig,verbatim, amsfonts, amssymb,latexsym,amsthm}
\definecolor{JungleGreen}{cmyk}{0.99,0,0.52,0}
\definecolor{SeaGreen}{cmyk}{0.69,0,0.50,0}
\definecolor{Green}{cmyk}{.6,0,1,.4}
\definecolor{ForestGreen}{cmyk}{0.91,0,0.88,0.12}
\definecolor{PineGreen}{cmyk}{0.92,0,0.59,0.25}
\newcommand{\prop}{\textsc{prop}}
\newcommand{\textRed}[1]{\textcolor{red}{#1}}
Thanks for reading!