2
0
Fork 0
mirror of https://github.com/MartinThoma/LaTeX-examples.git synced 2025-04-26 06:48:04 +02:00
LaTeX-examples/documents/math-minimal-distance-to-cubic-function/math-minimal-distance-to-cubic-function.tex

74 lines
2.6 KiB
TeX
Raw Normal View History

2013-12-12 16:22:13 +01:00
\documentclass[a4paper,oneside,DIV15,BCOR12mm]{scrbook}
2013-11-05 20:30:34 +01:00
\usepackage{amssymb, amsmath} % needed for math
2013-11-13 08:50:04 +01:00
\usepackage{mathtools} % \xRightarrow
2013-11-05 20:30:34 +01:00
\usepackage[utf8]{inputenc} % this is needed for umlauts
\usepackage[english]{babel} % this is needed for umlauts
\usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
\usepackage[margin=2.5cm]{geometry} %layout
\usepackage{hyperref} % links im text
\usepackage{braket} % needed for \Set
\usepackage{parskip}
\usepackage[colorinlistoftodos]{todonotes}
\usepackage{pgfplots}
\pgfplotsset{compat=1.7,compat/path replacement=1.5.1}
\usepackage{tikz}
2013-11-22 23:23:03 +01:00
\usepackage[framed,amsmath,thmmarks,hyperref]{ntheorem}
\usepackage{framed}
2013-12-05 23:27:17 +01:00
\usepackage{nicefrac}
2013-12-06 12:20:49 +01:00
\usepackage{siunitx}
2013-12-12 16:22:13 +01:00
\usepackage{csquotes} % enquote
\usepackage{microtype} % better document formatting
2013-11-22 23:23:03 +01:00
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Define theorems %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\theoremstyle{break}
\setlength\theoremindent{0.7cm}
\theoremheaderfont{\kern-0.7cm\normalfont\bfseries}
\theorembodyfont{\normalfont} % nicht mehr kursiv
\def\mdr{\ensuremath{\mathbb{R}}}
\newcommand{\sgn}{\text{sgn}}
2013-12-05 23:27:17 +01:00
\renewcommand{\qed}{\hfill\blacksquare}
2013-11-23 01:19:21 +01:00
\newframedtheorem{theorem}{Theorem}
2013-11-22 23:23:03 +01:00
\newframedtheorem{lemma}[theorem]{Lemma}
\newtheorem{plaindefinition}{Definition}
\newenvironment{definition}{\begin{plaindefinition}}{\end{plaindefinition}}
\newenvironment{definition*}{\begin{plaindefinition*}}{\end{plaindefinition*}}
\newtheorem{example}{Example}
\theoremstyle{nonumberplain}
\newtheorem{proof}{Proof:}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2013-11-05 20:30:34 +01:00
\title{Minimal distance from a point to polynomial functions of degree 3 or less}
2013-11-05 20:30:34 +01:00
\author{Martin Thoma}
\hypersetup{
pdfauthor = {Martin Thoma},
pdfkeywords = {minimal distance, polynomial, function, degree 3, cubic, spline},
pdftitle = {Minimal distance from a point to polynomial functions of degree 3 or less}
2013-11-05 20:30:34 +01:00
}
\def\mdr{\ensuremath{\mathbb{R}}}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Begin document %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
2013-12-12 16:22:13 +01:00
\pagenumbering{roman}
\setcounter{page}{1}
2013-11-05 20:30:34 +01:00
\maketitle
2013-12-12 16:22:13 +01:00
\input{introduction}
\tableofcontents
\pagenumbering{arabic}
\setcounter{page}{1}
\input{problem-description.tex}
\input{constant-functions.tex}
\input{linear-functions.tex}
\input{quadratic-functions.tex}
\input{cubic-functions.tex}
2013-12-11 18:14:12 +01:00
2013-11-05 20:30:34 +01:00
\end{document}