phd_thesis_markdown icon indicating copy to clipboard operation
phd_thesis_markdown copied to clipboard

Template for writing a PhD thesis in Markdown

Results 46 phd_thesis_markdown issues
Sort by recently updated
recently updated
newest added

Would it be possible to add a feature, where one only has to cite the doi in the text, and it would automatically generate the reference in the reference list...

How about this? (default to `pip`, if `pip3` available then use `pip3` ```bash PIP="pip" if command -v pip3 &> /dev/null then PIP="pip3" fi $PIP install pandoc-fignos pandoc-eqnos pandoc-tablenos pandoc-secnos pandoc-shortcaption...

It caused by in `preamble.tex` ```latex \usepackage{xunicode} \usepackage{xltxtra} ``` I changed to ```latex \ifxetex \usepackage{mathspec} \usepackage{xltxtra,xunicode} \else \usepackage{fontspec} \fi ``` from `template.tex` and no problem(with LuaLaTeX).

All 'sudo tlmgr ...' are installed following on the readme instructions. However, at present the 'Error 43' still shows as below: make pdf pandoc "/Users/phd/phd_thesis_markdown/source"/*.md \ -o "/Users/phd/phd_thesis_markdown/output/"z0000000"-"Last"-"First"-Thesis.pdf" \ -H...

Fix error 43 for make pdf rendering process by adding a mathbf declaration to euro symbol and commenting out (deleting) wallpaper background declaration.

Hi all! Thought I should share my solution to include short-captions for tables as this is a known issue. The solution feels a bit hacky, but - for me at...

@tompollard I saw that you are looking for a way to add short captions, so I wanted to bring your attention to this [lua-filter](https://github.com/pandoc/lua-filters/tree/master/short-captions), which I am currently using for...

Hello, If you have a look at the [pdf](https://github.com/tompollard/phd_thesis_markdown/blob/master/output/thesis.pdf) chapter 4 page 13-14 you can see that the 2 pictures are at the end of the chapter, however there are...

Replaced pandoc in Makefile command with $(PANDOC)

# Issue As pandoc-citeproc is depreciated (#100), the installation on linux needs the latest pandoc-version to use the successor citeproc. In addition, a standard installation of TexLive using apt and...