Difference between revisions of "LaTeX"

From Hack Sphere Labs Wiki
Jump to: navigation, search
(Created page with "I wanted to write project documents and RFPs on my wiki. I did not like the default print ouput so: pandoc input.txt -f mediawiki -t latex --standalone -o output.tex https:...")
 
 
Line 5: Line 5:
  
 
texmaker is nice for PDF output, but I am willing to bet pandoc will do pdf out.
 
texmaker is nice for PDF output, but I am willing to bet pandoc will do pdf out.
 +
 +
<pre>
 +
 +
To produce a PDF, specify an output file with a .pdf extension:
 +
 +
pandoc test.txt -o test.pdf
 +
 +
</pre>
 +
https://pandoc.org/MANUAL.html#creating-a-pdf

Latest revision as of 09:22, 11 July 2018

I wanted to write project documents and RFPs on my wiki. I did not like the default print ouput so:

pandoc input.txt -f mediawiki -t latex --standalone -o output.tex

https://tex.stackexchange.com/questions/1420/how-to-convert-mediawiki-syntax-to-latex

texmaker is nice for PDF output, but I am willing to bet pandoc will do pdf out.


To produce a PDF, specify an output file with a .pdf extension:

pandoc test.txt -o test.pdf

https://pandoc.org/MANUAL.html#creating-a-pdf