LaTeX: Using APA Reference Style

You can use APA reference style in LaTeX using biblatex and babel packages. You have to add the following code in the preamble of your tex file: \usepackage[british]{babel} \usepackage{csquotes} \usepackage[style=apa]{biblatex} \DeclareLanguageMapping{british}{british-apa} \addbibresource{references.bib} references.bib contains all your references. Then, you have to print the bibliography before the document end. … … % adding Bibliography title in … Read more

LaTeX: How to add bibliography and references?

There are two ways to add bibliography (references) to your document. One is for small document with few bibliography items using thebibliography environment. The other is for large documents where there are many bibliography items using packages like biblatex. 1) BIBLIOGRAPHY ON SMALL DOCUMENTS If you have few bibliography items, which is a general case … Read more

LaTeX: Generate dummy text (lorem ipsum) in your document

If we want dummy text in our document then we generally search for lorem ipsum text generators and copy-paste those texts/paragraphs in our document. In LaTeX, we don’t need to do such copy and paste thing. LaTeX has different packages which automatically generates dummy text in our document. You can generate them with just a … Read more

LaTeX: How to write algorithm?

There are different packages that help writing algorithms on LaTeX. I will be using algorithm2e package for writing algorithm in LaTeX. This package should work fine if you have installed ‘TeX Live Full‘. Otherwise, you may get error while using algorithm2e package. If you get an error then you need to install the package ‘texlive-science‘ … Read more