Pandoc is an open-source, command-line, universal document converter for converting between various markup formats.
-1
votes
2answers
68 views
Figure position in markdown when converting to PDF with knitr and pandoc
I'm trying to control the position of a plot when converting to PDF using knitr and pandoc. My .Rmd file looks this:
# My report
Some text some text some text some text some text some text some text ...
1
vote
0answers
34 views
How do I set pandoc latex template options with knitr's pandoc() function using an embedded pandoc config?
Is it possible to use knitr's pandoc() function with an embedded pandoc config in a markdown file to change the default pandoc latex template options?
For example, if I use the following embedded ...
1
vote
1answer
20 views
Automatic <a> around headings in Pandoc
This Markdown code:
# Introduction
Turns into this HTML code when compiled with Pandoc:
<h1 id="introduction"><a href="#introduction">Introduction</a></h1>
The way I use ...
2
votes
1answer
68 views
Converting Markdown to HTML5 slides via Pandoc through knitr in R
Since version 1.2 knitr has a new function pandoc to convert markdown document to other formats via pandoc directly in R (See here). For example
library(knitr)
pandoc('foo.md', format='html') # HTML
...
2
votes
1answer
59 views
reference knitr chunk in R markdown
I'm using knitr to embed R code within a markdown (.Rmd) file. I'm converting the file to a PDF file with Pandoc. The contents of my .Rmd file looks like this:
Report
...
0
votes
0answers
16 views
Moving title block in Pandoc
I have a Pandoc .md document which contains a standard, 3-line title block as follows:
% title
% author
% date
Pandoc converts this document via LaTeX to a PDF:
pandoc --variable ...
2
votes
1answer
50 views
Pandoc insert appendix after bibliography
I'm using the knitr package and pandoc in R to convert a .Rmd file to a PDF. Pandoc is linked to a .bib file and automatically inserts the bibliography at the end of the PDF
The entries in my .bib ...
2
votes
1answer
40 views
Reduce cell width and font size of table using pandoc.table()
I'm using knitr and pander to make a table in a markdown file. I'm converting the markdown file to a PDF using Pandoc from within R.
This code:
library(knitr)
```{r myTable, echo=FALSE, ...
1
vote
1answer
40 views
centre title in PDF converted from markdown using Pandoc
I'm converting a markdown document to a PDF document using Pandoc from within R. I'm trying to centre the title.
So far, I've tried:
<center># This is my title</center>
and
-># ...
0
votes
1answer
46 views
create function to alter PDF margin width in PDF files using Pandoc
I'm converting a markdown document to a PDF using Pandoc from within R. The default margins of PDFs outputted by Pandoc are too large.
In this post: Set margin size when converting from Markdown to ...
0
votes
0answers
17 views
Auto completion of Pandoc style citations in markdown using TextMate
In TextMate, auto completion of code is achieved by pressing the escape key (on Mac at least). I'm hoping I can also auto complete citations.
I'm writing my text in a markdown document, and using ...
2
votes
1answer
68 views
Why is 'et al' appearing in markdown bibliography?
I'm trying to make a bibliography in markdown. To build the bibliography, I'm using the knitr package and pandoc in R to convert a .Rmd file to a PDF.
The entries in my .bib file look like these, ...
0
votes
0answers
12 views
How to convert a scientific manuscript from Latex to Word using Pandoc? [migrated]
I have a typical scientific manuscript in a latex .tex file, and I need to convert it to MS Word .doc file.
The manuscript includes title page, figures, tables, equations (inline and in their own ...
1
vote
0answers
48 views
how can I display knitR markdown in a pandoc rendered pdf
I wish to show the knitR code in the final PDF together with its execution result.
I did not find yet a working way to fence "tripple-backticks"{r}..."tripple-backticks" blocks in the knitR code and ...
1
vote
0answers
27 views
HTML to Context template using Pandoc and Django: how to avoid calling subprocess too many times?
I'm generating pdfs using the TeX macro package Context. The Context source file is generated using Django templates, and the content is converted from HTML (as stored in the database) to Context's ...
0
votes
1answer
35 views
How to convert HTML to Markdown while retaining non-markdown HTML tags?
I'd like to be able to take an existing HTML snippet and convert it to markdown.
I've tried pandoc for this purpose:
pandoc test.html -o test.md
where test.html looked like this:
Hello
<!-- ...
1
vote
0answers
19 views
Pandoc performs very slowly when referencing large biblatex file
Whenever I have a pandoc markdown file that I am converting to PDF or HTML, and it contains a reference to a large biblatex file (> 100 KB) for citations, the performance is incredibly slow. I end up ...
0
votes
1answer
46 views
Getting some problems with pandoc and mathjax
I'm trying to use pandoc to produce a html slideshow from a markdown file with some latex in it.
The file is here at github.
If I run the following pandoc command:
pandoc -s -t s5 --mathjax ...
2
votes
1answer
41 views
Numbering and referencing images in Pandoc
I would like to add captions such as "Figure 1: Blah Blah" to my images in Pandoc and be able to refer to them like see @Figure1. I am using gpp (a pre-processor) to add captions to my images and do ...
3
votes
1answer
93 views
Is there an option to control output page orientation (using knitr->pander->pandoc->docx)
I am playing with Tal's intro to producing word tables with as little overhead as possible in real world situations. (Please see for reproducible examples there - Thanks, Tal!) In real application, ...
0
votes
2answers
39 views
Linebreaks removed by pandoc
I am using pandoc to translate from html to markdown.
Pandoc is removing linebreak in the results.
Here is the command I am using:
pandoc -f html -t markdown_phpextra myfile.html
Is there any way ...
1
vote
1answer
66 views
pandoc via launchd — getting error: "pdflatex not found. pdflatex is needed for pdf output
I am trying to generate a pdf document from a markdown document every 90 seconds. I have set up a task in launchd to handle this for me. Unfortunately, I am getting an error announcing that pdflatex ...
1
vote
1answer
54 views
Unwanted new lines using python Popen and pandoc to parse html?
I am trying to convert several pieces of html to latex using python and pandoc and I have got stuck with a couple of problems.
To communicate my python script with pandoc I use subprocess.Popen, ...
0
votes
1answer
80 views
Convert html mathjax to markdown with pandoc
I have some html files including mathjax commands.
I would like to translate it into php extra markdown using pandoc.
The problem is that pandoc add "\" before all math commands. For example
...
1
vote
1answer
42 views
Is it possible to write a custom converter for Pandoc?
Is it possible to write a custom output writer for Pandoc?
For example, suppose I want to convert a document:
pandoc -f markdown -t myCustomMarkup asdf.md
Does Pandoc have a way I can specify the ...
3
votes
1answer
114 views
RStudio, knitr, pandoc, Word: how do I get a 'new page' in my docx?
I am using the RStudio, knitr, pandoc, Word combo to get my final results in a docx document.
Occasionally I would like the report to continue on a new page. I can't find the way to achieve this.
...
2
votes
1answer
61 views
How can I change the english captions in pander?
I am using pander to print nicer looking tables via RStudio, knitr, pander, pandoc, Word.
I have a two-page table, to which I would like to add a Spanish caption:
set.caption("LÃmites izquierdo y ...
0
votes
0answers
34 views
pandoc not able to convert a c++ standard latex to any output format
i am trying to convert the following doc to markdown (or any other format using pandoc)
https://github.com/cplusplus/draft
here is how i issue the command
pandoc --from=latex --to=markdown -o ...
3
votes
2answers
146 views
How to set size for local image using knitr for markdown?
I have a local image that I would like to include in an .Rmd file which I will then knit and convert to HTML slides with Pandoc. Per this post, this will insert the local image :
![Image ...
1
vote
1answer
29 views
pandoc mmd_title_block appears not to load
I am new to pandoc and an attempting to use it to convert some simple mmd files to docx. These mmd files contain a mmd style title block in the following form:
Author: Author_name
Title: Title_name ...
0
votes
4answers
80 views
Replacing double backslash and brackets in Python
I am trying to write a script that could convert things like \\[ or \\] to $$ in order to convert a MultiMarkdown document to Pandoc markdown document that could display equations in HTML. I am using ...
0
votes
1answer
132 views
Whole site compilation of markdown/pandoc?
With Sphinx-doc, you can create a bunch of ReStructureText files, with an index.rst file which includes a table of contents and a conf.py that acts as a compilation config. You can then compile the ...
1
vote
3answers
99 views
pandoc image alignment
From the pandoc documentation I know how to insert an image
http://johnmacfarlane.net/pandoc/README.html#images
Now I want to align two images in the same row, how can I do that?
My desired output ...
0
votes
1answer
124 views
knitr + Rmd automate Date on title slide
I would like to have a template of an .Rmd file that I use to make html5 slides. Generally the beginning part of the template is:
% Title
% Name
% Date
I'd like to automatically fill in ...
2
votes
1answer
129 views
Encoding: knitr and child files
I am using Windows 7, R2.15.3 and RStudio 0.97.320 with knitr 1.1. Not sure what my pandoc version is, but I downloaded it a couple of days ago.
sessionInfo()
R version 2.15.3 (2013-03-01)
...
1
vote
1answer
103 views
Setting pandoc to PDF font size smaller than 10pt
Does anyone know how I can change the font size used in pandoc to pdf smaller than 10pt? The docs seem to imply that 10pt is the smallest, but I figure that since it's calling the LateX engine it must ...
2
votes
1answer
261 views
Using table caption on R markdown file using knitr to use in pandoc to convert to pdf
I am wondering if it is possible to use the table captions like figure captions using knitr in .Rmd file ?
I saw options for figure caption but I couldn't see the option for the table caption. I ...
6
votes
1answer
147 views
Creating a title and numbering of sections on pdf while using R markdown with pandoc
I am using the markdown document created by R and I am trying to create the pdf file from the markdown using pandoc. Everything else works fine but I want the title of the document to appear and the ...
1
vote
0answers
70 views
Pandoc and Tables
I have some SAS output in HTML format, and I need to convert it. the output has a table, and I want to be able to keep the table format when I convert it using Pandoc. Any suggestions?
4
votes
2answers
132 views
Slides with Columns in Pandoc
I would like to have code and an image side-by-side in a Beamer slide.
In LaTeX I would do this with columns. I would like to use markdown within the column structure.
\begin{columns}
...
5
votes
1answer
218 views
Is it possible to install pandoc on windows using an R command?
I would like to download and install pandoc on a windows 7 machine, by running a command in R. Is that possible?
(I know I can do this manually, but when I'd show this to students - the more steps I ...
0
votes
0answers
112 views
ordered list (enumerate) doesn't work with default latex template for Pandoc 1.9.4.2 [closed]
I run the following example:
# This is en enumarate test
1. foo
1. bar
1. baz
with the following command:
pandoc test.md --template=default.latex -o test.pdf
And I get this error:
pandoc: Error ...
1
vote
1answer
72 views
Including LaTeX in pandoc preformatted section
I have a section of preformatted code in a pandoc document. This is pseudocode, strictly speaking, and I'd like to include some rendered LaTeX within the preformatted section. For example:
# ...
0
votes
2answers
199 views
R doesn't recognize Pandoc Linux Mint
I asked a related question: check if a program is installed
But am refraining from answering until I've tested the solutions for myself on all three systems. I can get pandoc to work from within R ...
2
votes
3answers
114 views
check if a program is installed
I'm writing a function that uses pandoc in R through the command line. How can I use R to check if pandoc installed (I also assume it would have to be on the path which may be an issue for windows ...
5
votes
4answers
177 views
Create parametric R markdown documentation?
I want to iterate over a list of result-sets in my R markdown file. When I produce the output I want to include some text like headers with the name of the result set.
One hacky solution I have found ...
1
vote
0answers
90 views
pandoc or haskell fails with status code -15 on heroku
I'm running pandoc on heroku by calling it from python, giving it a file I just created and expecting it to generate some output (convert markdown to html/latex).
When I run it locally it all works ...
0
votes
1answer
70 views
Printing Text.Pandoc.writers into ghci : No Show instance
What am I trying to do ?
Print under ghci the association list of formats and writers.
See doc :
writers :: [(String, Writer)]
Association list of formats and writers.
What has been tried
...
1
vote
2answers
203 views
Set double spacing and line numbers when converting from Markdown to PDF with pandoc
I am using markdown & pandoc for scientific writing, I know I can change margins of the final pdf using
Set margin size when converting from Markdown to PDF with pandoc
but very often the ...
4
votes
1answer
210 views
Figure sizes with pandoc conversion from markodown to docx
I type a report with Rmarkdown in Rstudio. When converting it in html with knitr, there is also a markdown file produced by knitr. I convert this file with pandoc as follows :
pandoc -f markdown -t ...
