First, thank you so much for this package. I realize it's a work in progress, but it's already a big help. Very impressive. I want to mention a few Beamer/LaTeX conversion issues. (I would think Beamer conversion would be a popular use once the package is released.) The first two seem like things that might be addressed in the package. The third might be more a user issue, I'm not sure.
-
convert_pptx generates --- preceding every slide heading. Is this necessary? When producing LaTeX output, this generates YAML warnings and for some reason it interferes with graphics generation: I get an "unknown graphics extension: pdf" error until I delete all the three dashes (except for the YAML header of course).
-
There are always compilation errors generated by unicode in the files I'm dealing with. It appears that a workaround is to include the following in the YAML header:
output:
beamer_presentation:
latex_engine: xelatex
header-includes:
- \usepackage{fontspec}
- The variety of graphics formats is an issue for LaTeX. For LaTeX output I use
unoconv to convert everything either to pdf or png and then use sed to convert all graphic references in the Rmd file to that format.
First, thank you so much for this package. I realize it's a work in progress, but it's already a big help. Very impressive. I want to mention a few Beamer/LaTeX conversion issues. (I would think Beamer conversion would be a popular use once the package is released.) The first two seem like things that might be addressed in the package. The third might be more a user issue, I'm not sure.
convert_pptxgenerates---preceding every slide heading. Is this necessary? When producing LaTeX output, this generates YAML warnings and for some reason it interferes with graphics generation: I get an "unknown graphics extension: pdf" error until I delete all the three dashes (except for the YAML header of course).There are always compilation errors generated by unicode in the files I'm dealing with. It appears that a workaround is to include the following in the YAML header:
unoconvto convert everything either to pdf or png and then usesedto convert all graphic references in the Rmd file to that format.