pandoc Questions

4

Solved

I am using this thesis template. It includes the abstract, acknowledgements, list of figures... in the table of contents. According to the university guidelines my TOC should start with Chapter 1 I...
Azaria asked 30/3, 2018 at 11:38

8

Solved

When I use the render{rmarkdown} to produce pdf file from .Rmd file on my Mac, an error message says pandoc: pdflatex not found. pdflatex is needed for pdf output. Error: pandoc document conversio...
Flamethrower asked 27/2, 2014 at 22:30

1

Solved

Is there a way of changing the page orientation for specific segments of a document when using Quarto and rendering to Word? The ideal approach would be something similar to BLOCK_LANDSCAPE_START/B...
Damnify asked 20/9, 2022 at 9:47

2

Solved

When RMarkdown .rmd documents are knitted as PDF, the text body as well as the title, subtitle and headings are rendered in the same LaTeX standard font. When rendering a Quarto .qmd document as PD...
Clementclementas asked 6/9, 2022 at 22:4

2

Solved

I have some embedded HTML in my Markdown (bulleted list within a table). Is there a way to indent my HTML without Pandoc treating it as a verbatim code block?
Deodorize asked 30/8, 2016 at 6:37

3

Solved

How do you left align an entire table in Markdown/Pandoc? I know about different ways of specifying tables and how alignment of columns are done, but I cannot find a way to shift the table from cen...
Kirtle asked 10/1, 2014 at 11:37

12

Solved

I have a problem generating a pdf report from my app shiny which is hosted on a server. the app works fine but when I press the button to download the report, I get this error : pandoc version ...
Lupitalupo asked 10/2, 2015 at 13:13

2

Solved

I'm writing a custom Pandoc template and want it to print a list of authors so that all authors are separated with ", " except for the last author who instead is separated with an "and". Can this b...
Britneybritni asked 20/2, 2017 at 21:47

3

I've been recently criticized of not clearly separating TOC and Affiliation list when creating a PDF from a R Markdown file. My YAML is this one --- title: "title" author: - Name author 1: emai...
Item asked 19/9, 2019 at 8:6

2

Solved

How can I put 2 chunks of code side by side in the output file of RMarkdown or Quarto ? Code library(dplyr) mtcars %>% select(gear) library(dplyr) select(mtcars, gear) Desired layout in the PD...
Carrack asked 29/7, 2022 at 12:32

1

Solved

The Markdown admonition syntax is based on https://python-markdown.github.io/extensions/admonition/: !!! note Important note You should note that the title will be automatically capitalized. The ...
Plicate asked 20/7, 2022 at 9:42

4

Solved

I am thinking about writing my thesis with rmarkdown and latex. I'm getting the hang of how it all works, however, when I try to add a figure (not an R plot) to the text and render it to pdf, the c...
Collectivize asked 26/6, 2015 at 3:22

1

Solved

I'm using quarto's reveal.js implementation. I've been reading the official documentation page on customising themes and I'm relatively familiar with SCSS rules. I've been able to create classes to...
Dorr asked 6/7, 2022 at 14:5

1

Solved

I am trying to add a div around a markdown header in a Lua filter, but the # in front of the title disappear in the output. Header = function(el) if el.level == 1 then local content = el.content ...
Rimini asked 3/7, 2022 at 5:58

2

I have a rmarkdown document that I render regularly with rmarkdown::render It works fine on my computer (Windows) as I have RStudio installed, and it has setup automatically the path to pandoc. H...
Retiform asked 18/11, 2016 at 8:55

8

Solved

I'm generating some odt/docx reports via markdown using knitr and pandoc and am now wondering how you'd go about formating tables. Primarily I'm interested in adding rules (at least top, bottom and...
Philosopher asked 25/7, 2013 at 12:53

1

Solved

In the pandoc introduction to filters the following code is presented as an "example of a Lua filter": return { { Strong = function (elem) return pandoc.SmallCaps(elem.c) end, } } I...
Crore asked 16/6, 2022 at 12:5

1

Solved

I'm trying to develop a pandoc (v2.18) lua custom writer for kramdown. Kramdown uses $$ as delimiter for display and inline math and so my writer looks like: function Writer (doc, opts) local filt...
Outreach asked 8/6, 2022 at 14:39

4

Solved

From reading the documentation Jekyll's template data one might think that the way to access un-rendered content would be page.content; but as far as I can tell, this is providing the content of th...
Chimb asked 31/10, 2012 at 13:37

3

In R Markdown, I want a figure caption with a linked citation in R Markdown native citation style [@ref]. However, when I insert the [@hawking_thermodynamics_1983] snippet at the end into the capti...
Envoi asked 17/12, 2017 at 23:16

5

I have the following document, that I am trying to compile with Rstudio: --- title: shorttitle: author: bibliography: - library.bib output: papaja::apa6_pdf --- ```{r message = FALSE, warning...
Grolier asked 24/4, 2016 at 18:2

3

Solved

I have just upgraded my Macbook Pro OS to El Capitan (v10.11.4). My attempt to export a Markdown file (created using Sublime Text 2, v2.0.2, build 2221) to pdf using pandoc is now failing, and I r...
Verge asked 13/5, 2016 at 10:47

2

Solved

When I am writing a documentation with markdown (in order to process it to HTML with pandoc), I always have one heading of first order (# Heading), which is the document title, and multiple heading...
Biggers asked 19/4, 2017 at 12:55

3

Solved

Consider the following snippet of a PDF generated from pandoc by way of latex. Were you able to identify the hypertext links in there? Neither was I... It turns out that the second Kaplan Meier ...
Phototopography asked 14/11, 2019 at 21:30

3

Solved

I am generating a pdf from a set of Jupyter notebooks. For each .ipynb file, I'm running $ jupyter-nbconvert --to markdown Untitled1.ipynb and then merging them together with: $ pandoc Untitled1.md...
Bowler asked 30/6, 2020 at 8:58

© 2022 - 2024 — McMap. All rights reserved.