Document Classes ⇒ Suggestions for standard undergrad paper document class?
-
- Posts: 1
- Joined: Thu Apr 23, 2009 12:32 am
Suggestions for standard undergrad paper document class?
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
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
Suggestions for standard undergrad paper document class?
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}
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Suggestions for standard undergrad paper document class?
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.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. [...]
Best regards and welcome to the board
Thorsten¹
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10