Document ClassesWhere do I start?

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
Shubee
Posts: 1
Joined: Sat Nov 14, 2009 4:04 am

Where do I start?

Post by Shubee »

I wish to create a 1-page document of text and equations and need a nice simple template for that. Where can I find the basic template I need and what documentclass provides the greatest flexibility?

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

josephwright
Site Moderator
Posts: 814
Joined: Tue Jul 01, 2008 2:19 pm

Where do I start?

Post by josephwright »

What is wrong with a standard LaTeX article (in the first instance):

Code: Select all

\documentclass{article}
\begin{document}
Some text with some maths: $y = mx + c$.

Perhaps some display maths as well:
\[ y = mx + c \].
\end{document}
Joseph Wright
lalop
Posts: 63
Joined: Fri Sep 11, 2009 11:25 pm

Where do I start?

Post by lalop »

For "greatest flexibility", try the memoir class, whose features are described in this document.
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Where do I start?

Post by localghost »

Shubee wrote:I wish to create a 1-page document of text and equations and need a nice simple template for that. Where can I find the basic template I need and what documentclass provides the greatest flexibility?
Specify the demands for that document (page layout, font size, ...). Flexibility is a matter of taste, beside the memoir class mentioned by lalop there is also the KOMA Script bundle with very versatile document classes. But with the right packages even the standard classes are sufficient for setting up a proper document.


Best regards and welcome to the board
Thorsten¹
Post Reply