I am writing a document using the "mla13" package and when I compile, it is all justified and not ragged right, as the style demands. I entered
\raggedright
in the preamble, which solved the problem, but now the first line of the paragraph is not indented and entering \indent
does not change it. A minimal working example:
Code: Select all
\documentclass{article}
\usepackage{mla13}
\title{Title}
\firstname{First name}
\lastname{Last Name}
\professor{Professor}
\class{Class}
\raggedright
\begin{document}
\makeheader
This minimal working example will hopefully show the issue I am having where I seem to be unable to have both ragged right and first paragraph indentation.
\end{document}