Changing the bullet list symbol in beamer when used from pandoc












0















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


enter image description here



Update I added the header-includes with 2 beamer directives: however it had no effect.










share|improve this question

























  • 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
















0















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


enter image description here



Update I added the header-includes with 2 beamer directives: however it had no effect.










share|improve this question

























  • 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














0












0








0








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


enter image description here



Update I added the header-includes with 2 beamer directives: however it had no effect.










share|improve this question
















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


enter image description here



Update I added the header-includes with 2 beamer directives: however it had no effect.







beamer pandoc






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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



















  • 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










1 Answer
1






active

oldest

votes


















2














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


enter image description here






share|improve this answer























    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
    });


    }
    });














    draft saved

    draft discarded


















    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









    2














    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


    enter image description here






    share|improve this answer




























      2














      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


      enter image description here






      share|improve this answer


























        2












        2








        2







        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


        enter image description here






        share|improve this answer













        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


        enter image description here







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 18 at 9:48









        DG'DG'

        11.1k21846




        11.1k21846






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Biblatex bibliography style without URLs when DOI exists (in Overleaf with Zotero bibliography)

            ComboBox Display Member on multiple fields

            Is it possible to collect Nectar points via Trainline?