Sorry if this topic already has been covered and I could not find it.
I am currently making a math problem compendium for a lower level high school class. It consists of many smaller problems and I am having some issues in making it look good in terms of spacing and lining up problems without having to manually space out every single line.
Here is a part of my code:
Code: Select all
\documentclass[14pt,norsk,a4paper,twoside]{memoir}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{babel,graphicx,varioref}
\DeclareSymbolFont{letters}{OML}{ztmcm}{m}{it}
\DeclareSymbolFontAlphabet{\mathrm}{letters}
\title{Oppgaver 2P}
\begin{document}
\maketitle
\chapter{Potenser og tall på standardform}
\section{Negative tall}
\subsection{Addisjon} Regn ut \\
\textbf{1.10 a)} $2+(-1) $ \: \: \: \textbf{b)} $2-3 $ \: \: \: \textbf{c)} $1-3 $ \: \: \: \textbf{d)} $-3+4 $ \: \: \: \textbf{e)} $-5+2 $ \: \: \: \textbf{f)} $-1-4 $ \\
\noindent \textbf{1.11 a)} $-2+3-2 $ \: \: \: \textbf{b)} $5-1-2 $ \: \: \: \textbf{c)} $3-4-1 $ \: \: \: \textbf{d)} $-5+1-5 $ \: \: \: \textbf{e)} $3+2-1-3 $ \: \: \: \textbf{f)} $-3+(-1)-2+5 $ \\
\subsection{Multiplikasjon} Regn ut \\
\noindent \textbf{1.12 a)} $3\cdot(-2) $ \: \: \: \textbf{b)} $(-2)\cdot 2 $ \: \: \: \textbf{c)} $(-4)\cdot (-2) $ \: \: \: \textbf{d)} $(-3)\cdot 2\cdot (-1) $ \: \: \: \textbf{e)} $3\cdot 1 \cdot (-1) $ \: \: \: \textbf{f)} $(-1)\cdot (-2) \cdot (-3)$
\end{document}
Thanks in advance
