LaTeX Does anyone know how I can make a simple formula sheet using latex?

  • Thread starter Thread starter richyw
  • Start date Start date
  • Tags Tags
    Formula Latex
AI Thread Summary
The discussion centers on creating a LaTeX document formatted as a landscape page with multiple sections dedicated to formulas. The user seeks a template that simplifies the process of inputting equations, expressing frustration with existing resources like formulasheet.com. They mention basic familiarity with LaTeX, including inserting images and tables, but desire a more streamlined approach for handling equations. The conversation highlights the use of the geometry package for landscape formatting and the need for a two-column layout. Additionally, there is a mention of defining a custom command for equations and how to adjust the formatting for numbered or unnumbered equations. Overall, the focus is on finding an efficient way to compile a formula sheet using LaTeX.
richyw
Messages
179
Reaction score
0
So what I would like to have is a landscape page, with a few sections, and then a lot of formulas in each section. I have been googling for over an hour and have not found something that works.

Ideally I would like to be able to label some equations as well, but I could always just do that by hand on my final draft.

I have tried formulasheet.com and it just seems like a huge waste of time. Basically what I want is a template that someone else has made than I can just fire off the formulas and be done!
 
Physics news on Phys.org
PS I am a total rookie with latex. I can type formulas and other basic stuff like adding pictures and tables and whatnot. That's about it.
 
Perhaps something like this? The key thing is that I use the geometry package to make a landscape page, and I also used two columns (see \documentclass). \amssymb is not needed for this document but might be depending on what kind of symbols you want to write.

Let me know if there is something you don't understand. The \eq{} environment is for example something I defined in this document and not a standard environment for math. If you want unnumbered equations, just change from \begin{align} to \begin{align*} in the definition of \eq{}.

Code:
\documentclass[11pt, twocolumn]{article}
\usepackage[landscape]{geometry}   
\usepackage{graphicx}
\usepackage{amsmath}
%\usepackage{amssymb}

%%%%% DEFINITION OF NEW COMMANDS %%%%%
\newcommand{\eq}[1]{\begin{align}#1\end{align}}

\title{Sheet of formulae}
\author{The Author}
%\date{}	% Activate to display a given date or no date

\begin{document}
\maketitle
\section{Formulas for section 1}
\eq{E=mc^2}
\eq{(\partial^2+m^2)\phi(x)=0}
\eq{\vdots}

\section{Formulas for section 2}

\eq{E=mc^2}
\eq{(\partial^2+m^2)\phi(x)=0}
\eq{\vdots}

\section{Formulas for section 3}

\eq{E=mc^2}
\eq{(\partial^2+m^2)\phi(x)=0}
\eq{\vdots}

\end{document}
 
If I were you, I would try formulasheet.com.
 

Similar threads

Replies
3
Views
2K
Replies
7
Views
4K
Replies
3
Views
2K
Replies
10
Views
10K
Replies
4
Views
4K
Replies
1
Views
4K
Replies
3
Views
2K
Back
Top