Changing the bullet list symbol in beamer when used from pandoc
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.
beamer pandoc
add a comment |
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.
beamer pandoc
boadilla
is a theme, not a colour theme.
– samcarter
Mar 18 at 9:32
1
Can you make a minimal working example (MWE)?
– samcarter
Mar 18 at 9:32
See also tex.stackexchange.com/questions/280568/…
– John Kormylo
Mar 18 at 16:29
add a comment |
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.
beamer pandoc
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.
beamer pandoc
beamer pandoc
edited Mar 18 at 8:42
javadba
asked Mar 18 at 8:13
javadbajavadba
1407
1407
boadilla
is a theme, not a colour theme.
– samcarter
Mar 18 at 9:32
1
Can you make a minimal working example (MWE)?
– samcarter
Mar 18 at 9:32
See also tex.stackexchange.com/questions/280568/…
– John Kormylo
Mar 18 at 16:29
add a comment |
boadilla
is a theme, not a colour theme.
– samcarter
Mar 18 at 9:32
1
Can you make a minimal working example (MWE)?
– samcarter
Mar 18 at 9:32
See also tex.stackexchange.com/questions/280568/…
– John Kormylo
Mar 18 at 16:29
boadilla
is a theme, not a colour theme.– samcarter
Mar 18 at 9:32
boadilla
is a theme, not a colour theme.– samcarter
Mar 18 at 9:32
1
1
Can you make a minimal working example (MWE)?
– samcarter
Mar 18 at 9:32
Can you make a minimal working example (MWE)?
– samcarter
Mar 18 at 9:32
See also tex.stackexchange.com/questions/280568/…
– John Kormylo
Mar 18 at 16:29
See also tex.stackexchange.com/questions/280568/…
– John Kormylo
Mar 18 at 16:29
add a comment |
1 Answer
1
active
oldest
votes
The LaTeX code in your example is not correctly escaped, if you put it in the YAML block. You can fix that by creating a new file, which contains all the code, you want to add to the preamble and call pandoc with -H filename
.
test.md
---
title: Test
documentclass: beamer
---
- One
- One and a half
- Two
header.incl
setbeamertemplate{itemize items}[circle]
Call pandoc:
$ pandoc test.md -H header.incl --pdf-engine=xelatex -o test.pdf
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f480038%2fchanging-the-bullet-list-symbol-in-beamer-when-used-from-pandoc%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
The LaTeX code in your example is not correctly escaped, if you put it in the YAML block. You can fix that by creating a new file, which contains all the code, you want to add to the preamble and call pandoc with -H filename
.
test.md
---
title: Test
documentclass: beamer
---
- One
- One and a half
- Two
header.incl
setbeamertemplate{itemize items}[circle]
Call pandoc:
$ pandoc test.md -H header.incl --pdf-engine=xelatex -o test.pdf
add a comment |
The LaTeX code in your example is not correctly escaped, if you put it in the YAML block. You can fix that by creating a new file, which contains all the code, you want to add to the preamble and call pandoc with -H filename
.
test.md
---
title: Test
documentclass: beamer
---
- One
- One and a half
- Two
header.incl
setbeamertemplate{itemize items}[circle]
Call pandoc:
$ pandoc test.md -H header.incl --pdf-engine=xelatex -o test.pdf
add a comment |
The LaTeX code in your example is not correctly escaped, if you put it in the YAML block. You can fix that by creating a new file, which contains all the code, you want to add to the preamble and call pandoc with -H filename
.
test.md
---
title: Test
documentclass: beamer
---
- One
- One and a half
- Two
header.incl
setbeamertemplate{itemize items}[circle]
Call pandoc:
$ pandoc test.md -H header.incl --pdf-engine=xelatex -o test.pdf
The LaTeX code in your example is not correctly escaped, if you put it in the YAML block. You can fix that by creating a new file, which contains all the code, you want to add to the preamble and call pandoc with -H filename
.
test.md
---
title: Test
documentclass: beamer
---
- One
- One and a half
- Two
header.incl
setbeamertemplate{itemize items}[circle]
Call pandoc:
$ pandoc test.md -H header.incl --pdf-engine=xelatex -o test.pdf
answered Mar 18 at 9:48
DG'DG'
11.1k21846
11.1k21846
add a comment |
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f480038%2fchanging-the-bullet-list-symbol-in-beamer-when-used-from-pandoc%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
boadilla
is a theme, not a colour theme.– samcarter
Mar 18 at 9:32
1
Can you make a minimal working example (MWE)?
– samcarter
Mar 18 at 9:32
See also tex.stackexchange.com/questions/280568/…
– John Kormylo
Mar 18 at 16:29