LaTeX/Academic Journals
< LaTeX
When writing an academic paper, it usually follows a specific style guide such as the Modern Language Association's MLA style or the American Psychological Association's APA style.
MLA style
editFor the MLA style, there is the mla
package along with the mla
class.
mla
package
edit
Documents formatted in the MLA style can be made using the mla
package.
The following is an example MLA document (with blindtext):
\documentclass[12pt,letterpaper]{article}
\usepackage{ifpdf}
\usepackage{mla}
\usepackage{blindtext}
\begin{document}
\begin{mla}{Jane}{Doe}{Smith}{ENG 118}{2022-07-05}{My Paper}
\blindtext
\end{mla}
\end{document}
|
Rendering missing! |
MLA class
editThere is also an MLA class.
\documentclass[mla8]{mla}
\usepackage{blindtext}
\title{My paper}
\author{Jane Doe}
\professor{John Smith}
\course{ENG 118}
\date{\mladate}
\addbibresource{my-citations.bib}
\begin{document}
\begin{paper}
\blindtext
\end{paper}
% end notes
\begin{notes}
\printendnotes
\end{notes}
% works cited page
\begin{workscited}
\printbibliography[heading=none]
\end{workscited}
\end{document}
|
Rendering missing! |
An example MLA document can be found in the repository under mla-example.tex
APA style
editThe APA class is also available, which may be used to write papers in the APA format.
\documentclass[man]{apa}
\usepackage{blindtext}
\title{My paper}
\author{Jane Doe}
\affiliation{Wikiversity}
\begin{document}
\blindtext
\end{document}
|
Rendering missing! |
An example APA paper can be found in the package's repository under apaexample.tex