Document ClassesSuggestions for standard undergrad paper document class?

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
laughfactory
Posts: 1
Joined: Thu Apr 23, 2009 12:32 am

Suggestions for standard undergrad paper document class?

Post by laughfactory »

Hi there,

So I'm somewhat new to the Latex scene, and I'm writing an academic paper for an econometrics course that I'm in.

I'm having difficulty finding an appropriate document class for the typical requirements of undergrad papers: double spaced (except for the abstract), 1-inch margins, an abstract, title, subtitle, author, and optional course name, professor, etc.

Any suggestions? I found a "coursepaper.cls" on CTAN but I can't get it to work on TexMaker. In other words, I've gotten it to load correctly, but when I put in a title it displays the defaults that have been coded...and I can't figure out how to override the underlying defaults.

Suggestions?

Thanks!

Abe

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Suggestions for standard undergrad paper document class?

Post by frabjous »

Someone else may have a better idea, but I think you could replicate what you want fairly easily using just about any old document-class, like article. Try, e.g.:

Code: Select all

\documentclass[12pt,letterpaper]{article}
\usepackage{fullpage} % Uses full page with 1in margins
\usepackage{setspace} % Allows you to double-space

\begin{document}
\thispagestyle{empty} % Suppresses the page number on page 1
\begin{flushleft}
FirstName LastName \\
CourseName \\
Professor's Name \\
\today
\end{flushleft}
\begin{center} % Centers the titles
{\LARGE Main Title Goes Here} \\
\vspace{10pt}
{\Large Subtitle Goes Here}
\end{center}
\begin{abstract}
	Abstract goes here.
\end{abstract}
\doublespacing % Turns on double-spacing
	Body of paper goes here.
\end{document}
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Suggestions for standard undergrad paper document class?

Post by localghost »

laughfactory wrote:[...] I found a "coursepaper.cls" on CTAN but I can't get it to work on TexMaker. In other words, I've gotten it to load correctly, but when I put in a title it displays the defaults that have been coded...and I can't figure out how to override the underlying defaults. [...]
Should be no big deal and the coursepaper class seems to be appropriate. Show us your recent efforts by posting what you have coded so far.


Best regards and welcome to the board
Thorsten¹
Post Reply