I am new to beamer . I am looking for a traditional circular bullet instead of the sideways triangle: is this possible given I am using pandoc preamble? It seems like none of the document level LaTeX directives can be used when pandoc is employed.
---
title: Tensorflow
documentclass: beamer
colortheme: boadilla
fonttheme: structurebold
header-includes:
- \setsansfont{Roboto}
- \setbeamertemplate{itemize items}[circle]
output:
highlight: tango
rmarkdown::html_document:
theme: lumen
fig_caption: yes
---
This is being run by
pandoc -s -t beamer --toc-depth=5 --toc --pdf-engine xelatex -o paper2.pdf p2.md
Update I added the header-includes with 2 beamer directives: however it had no effect.


boadillais a theme, not a colour theme. – samcarter_is_at_topanswers.xyz Mar 18 '19 at 09:32