citations
Compiling LaTex bib source
You need to compile the bibtex file. Suppose you have article.tex and article.bib. You need to run: latex article.tex (this will generate a document with question marks in place of unknown references) bibtex article (this will parse all the .bib files that were included in the article and generate metainformation regarding references) latex article.tex (this … Read more
Citing the author of a blockquote using Markdown syntax
Markdown has no dedicated citation syntax. Your best bet is something like this: > Quote here. > > — <cite>Benjamin Franklin</cite> which results in: Quote here. — Benjamin Franklin