Format to generate .tex, .pdf and .md from?












2














I've used Pandoc to generate .md, .tex, .pdf from .tex and .xhtml files.



In tex I am using BibTeX and in ODT (save-as .xhtml) I am using Zotero to insert my citations.



Currently neither .tex nor .xhtml are consistently good at generating different formats. Obviously using e.g.: LibreOffice to create .pdf works fine, as does pdflatex. However I would like to generate multiple different formats.



One alternative to Pandoc I can consider is LibreOffice/OpenOffice on Linux, where more output formats are supported.



What should I use as my base format, and which converter should I use?










share|improve this question
























  • Hmm, maybe docutils, e.g.: as per this doc
    – A T
    Apr 11 '15 at 8:08
















2














I've used Pandoc to generate .md, .tex, .pdf from .tex and .xhtml files.



In tex I am using BibTeX and in ODT (save-as .xhtml) I am using Zotero to insert my citations.



Currently neither .tex nor .xhtml are consistently good at generating different formats. Obviously using e.g.: LibreOffice to create .pdf works fine, as does pdflatex. However I would like to generate multiple different formats.



One alternative to Pandoc I can consider is LibreOffice/OpenOffice on Linux, where more output formats are supported.



What should I use as my base format, and which converter should I use?










share|improve this question
























  • Hmm, maybe docutils, e.g.: as per this doc
    – A T
    Apr 11 '15 at 8:08














2












2








2


1





I've used Pandoc to generate .md, .tex, .pdf from .tex and .xhtml files.



In tex I am using BibTeX and in ODT (save-as .xhtml) I am using Zotero to insert my citations.



Currently neither .tex nor .xhtml are consistently good at generating different formats. Obviously using e.g.: LibreOffice to create .pdf works fine, as does pdflatex. However I would like to generate multiple different formats.



One alternative to Pandoc I can consider is LibreOffice/OpenOffice on Linux, where more output formats are supported.



What should I use as my base format, and which converter should I use?










share|improve this question















I've used Pandoc to generate .md, .tex, .pdf from .tex and .xhtml files.



In tex I am using BibTeX and in ODT (save-as .xhtml) I am using Zotero to insert my citations.



Currently neither .tex nor .xhtml are consistently good at generating different formats. Obviously using e.g.: LibreOffice to create .pdf works fine, as does pdflatex. However I would like to generate multiple different formats.



One alternative to Pandoc I can consider is LibreOffice/OpenOffice on Linux, where more output formats are supported.



What should I use as my base format, and which converter should I use?







pdf latex libreoffice markdown pandoc






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 15 at 1:34









Kurt Pfeifle

9,18713555




9,18713555










asked Apr 11 '15 at 7:55









A T

481523




481523












  • Hmm, maybe docutils, e.g.: as per this doc
    – A T
    Apr 11 '15 at 8:08


















  • Hmm, maybe docutils, e.g.: as per this doc
    – A T
    Apr 11 '15 at 8:08
















Hmm, maybe docutils, e.g.: as per this doc
– A T
Apr 11 '15 at 8:08




Hmm, maybe docutils, e.g.: as per this doc
– A T
Apr 11 '15 at 8:08










1 Answer
1






active

oldest

votes


















0














You should use Markdown (.md) as your main authoring format, and you already seem to be familiar with it.



Study Pandoc's manual page and see which specific extensions to the base Markdown syntax (they are many!) it supports (which you do not seem to be familiar with!)



With Pandoc and its Markdown you can output all the formats you've mentioned: LaTeX, ODT, PDF, XHTML. Additionally to that, you can Pandoc let spit out the following: **manpage, EPUB/EPUB3, DocBook, DokuWiki, AsciiDoc, CommonMark, DOCX, ICML (for InDesign), JSON, Muse, org, PPTX, Reveal.js, Beamer, RTF and some more.



Get the most recent Pandoc package for your operating system right from GitHub, and run these commands to see the complete lists of formats:



pandoc --list-output-formats
pandoc --list-input-formats


Oh, and Pandoc can insert your citations and bibliographic references just fine, using biblatex or natbib as you please, applying any CSL style you like -- even to DOCX output!






share|improve this answer





















  • I reference pandoc heavily in my question. With one of my set ups, I do use pandoc-citeproc.
    – A T
    Dec 18 at 5:49










  • @AT: If you already know everything my answer mentions -- why your questions? Can you elaborate what your specific problem is?
    – Kurt Pfeifle
    Dec 18 at 7:46










  • Looking for something with interactive citation integration. With Zotero I have to continuously export large bibtex files. There has to be an efficient way of doing this, that allows for productive authoring?
    – A T
    Dec 18 at 13:32










  • @AT: AFAIU, Zotero is good for maintainining your collection of citation references. It's only worth while doing it if you use them a lot and very frequently. Pandoc does not need this (it can do + live with citations directly inserted into the Markdown sources) -- but Pandoc also can make use of bibtex and natbib citations, if you want this.
    – Kurt Pfeifle
    Dec 18 at 17:05










  • @AT: (I still don't understand where your problem is -- Pandoc can generate a lot of different output formats from one single source .md file, and include citations in all of them, with any CSL style you want; pick one of thousands of CSL styles!)
    – Kurt Pfeifle
    Dec 18 at 17:05











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2fsuperuser.com%2fquestions%2f900347%2fformat-to-generate-tex-pdf-and-md-from%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









0














You should use Markdown (.md) as your main authoring format, and you already seem to be familiar with it.



Study Pandoc's manual page and see which specific extensions to the base Markdown syntax (they are many!) it supports (which you do not seem to be familiar with!)



With Pandoc and its Markdown you can output all the formats you've mentioned: LaTeX, ODT, PDF, XHTML. Additionally to that, you can Pandoc let spit out the following: **manpage, EPUB/EPUB3, DocBook, DokuWiki, AsciiDoc, CommonMark, DOCX, ICML (for InDesign), JSON, Muse, org, PPTX, Reveal.js, Beamer, RTF and some more.



Get the most recent Pandoc package for your operating system right from GitHub, and run these commands to see the complete lists of formats:



pandoc --list-output-formats
pandoc --list-input-formats


Oh, and Pandoc can insert your citations and bibliographic references just fine, using biblatex or natbib as you please, applying any CSL style you like -- even to DOCX output!






share|improve this answer





















  • I reference pandoc heavily in my question. With one of my set ups, I do use pandoc-citeproc.
    – A T
    Dec 18 at 5:49










  • @AT: If you already know everything my answer mentions -- why your questions? Can you elaborate what your specific problem is?
    – Kurt Pfeifle
    Dec 18 at 7:46










  • Looking for something with interactive citation integration. With Zotero I have to continuously export large bibtex files. There has to be an efficient way of doing this, that allows for productive authoring?
    – A T
    Dec 18 at 13:32










  • @AT: AFAIU, Zotero is good for maintainining your collection of citation references. It's only worth while doing it if you use them a lot and very frequently. Pandoc does not need this (it can do + live with citations directly inserted into the Markdown sources) -- but Pandoc also can make use of bibtex and natbib citations, if you want this.
    – Kurt Pfeifle
    Dec 18 at 17:05










  • @AT: (I still don't understand where your problem is -- Pandoc can generate a lot of different output formats from one single source .md file, and include citations in all of them, with any CSL style you want; pick one of thousands of CSL styles!)
    – Kurt Pfeifle
    Dec 18 at 17:05
















0














You should use Markdown (.md) as your main authoring format, and you already seem to be familiar with it.



Study Pandoc's manual page and see which specific extensions to the base Markdown syntax (they are many!) it supports (which you do not seem to be familiar with!)



With Pandoc and its Markdown you can output all the formats you've mentioned: LaTeX, ODT, PDF, XHTML. Additionally to that, you can Pandoc let spit out the following: **manpage, EPUB/EPUB3, DocBook, DokuWiki, AsciiDoc, CommonMark, DOCX, ICML (for InDesign), JSON, Muse, org, PPTX, Reveal.js, Beamer, RTF and some more.



Get the most recent Pandoc package for your operating system right from GitHub, and run these commands to see the complete lists of formats:



pandoc --list-output-formats
pandoc --list-input-formats


Oh, and Pandoc can insert your citations and bibliographic references just fine, using biblatex or natbib as you please, applying any CSL style you like -- even to DOCX output!






share|improve this answer





















  • I reference pandoc heavily in my question. With one of my set ups, I do use pandoc-citeproc.
    – A T
    Dec 18 at 5:49










  • @AT: If you already know everything my answer mentions -- why your questions? Can you elaborate what your specific problem is?
    – Kurt Pfeifle
    Dec 18 at 7:46










  • Looking for something with interactive citation integration. With Zotero I have to continuously export large bibtex files. There has to be an efficient way of doing this, that allows for productive authoring?
    – A T
    Dec 18 at 13:32










  • @AT: AFAIU, Zotero is good for maintainining your collection of citation references. It's only worth while doing it if you use them a lot and very frequently. Pandoc does not need this (it can do + live with citations directly inserted into the Markdown sources) -- but Pandoc also can make use of bibtex and natbib citations, if you want this.
    – Kurt Pfeifle
    Dec 18 at 17:05










  • @AT: (I still don't understand where your problem is -- Pandoc can generate a lot of different output formats from one single source .md file, and include citations in all of them, with any CSL style you want; pick one of thousands of CSL styles!)
    – Kurt Pfeifle
    Dec 18 at 17:05














0












0








0






You should use Markdown (.md) as your main authoring format, and you already seem to be familiar with it.



Study Pandoc's manual page and see which specific extensions to the base Markdown syntax (they are many!) it supports (which you do not seem to be familiar with!)



With Pandoc and its Markdown you can output all the formats you've mentioned: LaTeX, ODT, PDF, XHTML. Additionally to that, you can Pandoc let spit out the following: **manpage, EPUB/EPUB3, DocBook, DokuWiki, AsciiDoc, CommonMark, DOCX, ICML (for InDesign), JSON, Muse, org, PPTX, Reveal.js, Beamer, RTF and some more.



Get the most recent Pandoc package for your operating system right from GitHub, and run these commands to see the complete lists of formats:



pandoc --list-output-formats
pandoc --list-input-formats


Oh, and Pandoc can insert your citations and bibliographic references just fine, using biblatex or natbib as you please, applying any CSL style you like -- even to DOCX output!






share|improve this answer












You should use Markdown (.md) as your main authoring format, and you already seem to be familiar with it.



Study Pandoc's manual page and see which specific extensions to the base Markdown syntax (they are many!) it supports (which you do not seem to be familiar with!)



With Pandoc and its Markdown you can output all the formats you've mentioned: LaTeX, ODT, PDF, XHTML. Additionally to that, you can Pandoc let spit out the following: **manpage, EPUB/EPUB3, DocBook, DokuWiki, AsciiDoc, CommonMark, DOCX, ICML (for InDesign), JSON, Muse, org, PPTX, Reveal.js, Beamer, RTF and some more.



Get the most recent Pandoc package for your operating system right from GitHub, and run these commands to see the complete lists of formats:



pandoc --list-output-formats
pandoc --list-input-formats


Oh, and Pandoc can insert your citations and bibliographic references just fine, using biblatex or natbib as you please, applying any CSL style you like -- even to DOCX output!







share|improve this answer












share|improve this answer



share|improve this answer










answered Dec 15 at 1:30









Kurt Pfeifle

9,18713555




9,18713555












  • I reference pandoc heavily in my question. With one of my set ups, I do use pandoc-citeproc.
    – A T
    Dec 18 at 5:49










  • @AT: If you already know everything my answer mentions -- why your questions? Can you elaborate what your specific problem is?
    – Kurt Pfeifle
    Dec 18 at 7:46










  • Looking for something with interactive citation integration. With Zotero I have to continuously export large bibtex files. There has to be an efficient way of doing this, that allows for productive authoring?
    – A T
    Dec 18 at 13:32










  • @AT: AFAIU, Zotero is good for maintainining your collection of citation references. It's only worth while doing it if you use them a lot and very frequently. Pandoc does not need this (it can do + live with citations directly inserted into the Markdown sources) -- but Pandoc also can make use of bibtex and natbib citations, if you want this.
    – Kurt Pfeifle
    Dec 18 at 17:05










  • @AT: (I still don't understand where your problem is -- Pandoc can generate a lot of different output formats from one single source .md file, and include citations in all of them, with any CSL style you want; pick one of thousands of CSL styles!)
    – Kurt Pfeifle
    Dec 18 at 17:05


















  • I reference pandoc heavily in my question. With one of my set ups, I do use pandoc-citeproc.
    – A T
    Dec 18 at 5:49










  • @AT: If you already know everything my answer mentions -- why your questions? Can you elaborate what your specific problem is?
    – Kurt Pfeifle
    Dec 18 at 7:46










  • Looking for something with interactive citation integration. With Zotero I have to continuously export large bibtex files. There has to be an efficient way of doing this, that allows for productive authoring?
    – A T
    Dec 18 at 13:32










  • @AT: AFAIU, Zotero is good for maintainining your collection of citation references. It's only worth while doing it if you use them a lot and very frequently. Pandoc does not need this (it can do + live with citations directly inserted into the Markdown sources) -- but Pandoc also can make use of bibtex and natbib citations, if you want this.
    – Kurt Pfeifle
    Dec 18 at 17:05










  • @AT: (I still don't understand where your problem is -- Pandoc can generate a lot of different output formats from one single source .md file, and include citations in all of them, with any CSL style you want; pick one of thousands of CSL styles!)
    – Kurt Pfeifle
    Dec 18 at 17:05
















I reference pandoc heavily in my question. With one of my set ups, I do use pandoc-citeproc.
– A T
Dec 18 at 5:49




I reference pandoc heavily in my question. With one of my set ups, I do use pandoc-citeproc.
– A T
Dec 18 at 5:49












@AT: If you already know everything my answer mentions -- why your questions? Can you elaborate what your specific problem is?
– Kurt Pfeifle
Dec 18 at 7:46




@AT: If you already know everything my answer mentions -- why your questions? Can you elaborate what your specific problem is?
– Kurt Pfeifle
Dec 18 at 7:46












Looking for something with interactive citation integration. With Zotero I have to continuously export large bibtex files. There has to be an efficient way of doing this, that allows for productive authoring?
– A T
Dec 18 at 13:32




Looking for something with interactive citation integration. With Zotero I have to continuously export large bibtex files. There has to be an efficient way of doing this, that allows for productive authoring?
– A T
Dec 18 at 13:32












@AT: AFAIU, Zotero is good for maintainining your collection of citation references. It's only worth while doing it if you use them a lot and very frequently. Pandoc does not need this (it can do + live with citations directly inserted into the Markdown sources) -- but Pandoc also can make use of bibtex and natbib citations, if you want this.
– Kurt Pfeifle
Dec 18 at 17:05




@AT: AFAIU, Zotero is good for maintainining your collection of citation references. It's only worth while doing it if you use them a lot and very frequently. Pandoc does not need this (it can do + live with citations directly inserted into the Markdown sources) -- but Pandoc also can make use of bibtex and natbib citations, if you want this.
– Kurt Pfeifle
Dec 18 at 17:05












@AT: (I still don't understand where your problem is -- Pandoc can generate a lot of different output formats from one single source .md file, and include citations in all of them, with any CSL style you want; pick one of thousands of CSL styles!)
– Kurt Pfeifle
Dec 18 at 17:05




@AT: (I still don't understand where your problem is -- Pandoc can generate a lot of different output formats from one single source .md file, and include citations in all of them, with any CSL style you want; pick one of thousands of CSL styles!)
– Kurt Pfeifle
Dec 18 at 17:05


















draft saved

draft discarded




















































Thanks for contributing an answer to Super User!


  • 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.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • 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%2fsuperuser.com%2fquestions%2f900347%2fformat-to-generate-tex-pdf-and-md-from%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

How do I know what Microsoft account the skydrive app is syncing to?

When does type information flow backwards in C++?

Grease: Live!