Initial commit - Task 1
This commit is contained in:
commit
84fd77356a
|
@ -0,0 +1,26 @@
|
|||
\begin{tikzpicture}
|
||||
\begin{axis}[
|
||||
xlabel = $x$, ylabel = $y$,
|
||||
width = 10cm, height=10cm,
|
||||
axis lines = middle,
|
||||
grid,
|
||||
xmin=-1.5, xmax=5.5,
|
||||
ymin=-2.5, ymax=4.5,
|
||||
legend pos=outer north east
|
||||
]
|
||||
\addplot+ [
|
||||
no marks,
|
||||
domain = 0:4,
|
||||
]{x-1};
|
||||
\addlegendentry{$y=x-1$}
|
||||
|
||||
\addplot+ [
|
||||
no marks,
|
||||
domain = 0:4,
|
||||
]{3-x};
|
||||
\addlegendentry{$y=3-x$}
|
||||
|
||||
\node[label={90:{(2,\ 1)}},circle,fill,inner sep=2pt] at (axis cs:2,1) {};
|
||||
|
||||
\end{axis}
|
||||
\end{tikzpicture}
|
|
@ -0,0 +1,21 @@
|
|||
|
||||
\begin{tikzpicture}
|
||||
\begin{axis}[
|
||||
xlabel = $x$, ylabel = $y$,
|
||||
width = 10cm, height=10cm,
|
||||
axis lines = middle,
|
||||
grid,
|
||||
xmin=-1.5, xmax=5.5,
|
||||
ymin=-2.5, ymax=4.5,
|
||||
legend pos=outer north east
|
||||
]
|
||||
\addplot+ [
|
||||
no marks,
|
||||
domain = 0.5:4.5,
|
||||
]{abs(x-2)+1};
|
||||
\addlegendentry{$y=|x-2|+1$}
|
||||
|
||||
\node[label={270:{(2,\ 1)}},circle,fill,inner sep=2pt] at (axis cs:2,1) {};
|
||||
|
||||
\end{axis}
|
||||
\end{tikzpicture}
|
|
@ -0,0 +1,9 @@
|
|||
\usepackage{geometry}
|
||||
|
||||
\geometry{
|
||||
a4paper,
|
||||
left=30mm,
|
||||
right=30mm,
|
||||
top=30mm,
|
||||
bottom=20mm,
|
||||
}
|
|
@ -0,0 +1,11 @@
|
|||
\usepackage{fancyhdr}
|
||||
\usepackage{titling}
|
||||
|
||||
\pagestyle{fancy}
|
||||
\fancyhf{}
|
||||
\rhead{\theauthor}
|
||||
\lhead{\thetitle}
|
||||
\rfoot{Side \thepage}
|
||||
|
||||
\renewcommand{\headrulewidth}{1pt}
|
||||
\renewcommand{\footrulewidth}{1pt}
|
|
@ -0,0 +1,60 @@
|
|||
\usepackage{cancel}
|
||||
\usepackage{tikz}
|
||||
\usepackage{pgfplots}
|
||||
\usepackage{enumitem}
|
||||
|
||||
%--------------------------%
|
||||
|
||||
\renewcommand{\theenumi}{\arabic{enumi}}
|
||||
\renewcommand{\labelenumi}{\Large\fbox{\theenumi}}
|
||||
|
||||
\newenvironment{oppgaver}{
|
||||
\begin{enumerate}
|
||||
}
|
||||
{
|
||||
\end{enumerate}
|
||||
}
|
||||
|
||||
\newcommand{\setoppg}[1]{\setcounter{enumi}{#1}}
|
||||
|
||||
\newcommand{\oppg}{
|
||||
\item
|
||||
\addcontentsline{toc}{subsection}{Oppgave \theenumi}
|
||||
}
|
||||
|
||||
%--------------------------%
|
||||
|
||||
\renewcommand{\theenumii}{\alph{enumii})}
|
||||
\renewcommand{\labelenumii}{\textbf{\theenumii}}
|
||||
|
||||
\newenvironment{deloppgaver}{
|
||||
\begin{enumerate}
|
||||
}{
|
||||
\end{enumerate}
|
||||
}
|
||||
|
||||
\newcommand{\setdelo}[1]{\setcounter{enumii}{#1}}
|
||||
|
||||
\newcommand{\delo}{
|
||||
\vspace*{0.5cm}
|
||||
\item
|
||||
\addcontentsline{toc}{subsubsection}{\theenumii}
|
||||
}
|
||||
|
||||
%--------------------------%
|
||||
|
||||
\newtcolorbox{coloredgraphbox}{
|
||||
colframe=ntnublue,
|
||||
arc=0pt,
|
||||
outer arc=0pt
|
||||
colback=white,
|
||||
boxrule=3pt
|
||||
}
|
||||
|
||||
\newenvironment{graphbox}{
|
||||
\begin{center}
|
||||
\begin{coloredgraphbox}
|
||||
}{
|
||||
\end{coloredgraphbox}
|
||||
\end{center}
|
||||
}
|
File diff suppressed because one or more lines are too long
Binary file not shown.
|
@ -0,0 +1,123 @@
|
|||
%!PS-Adobe-3.0 EPSF-3.0
|
||||
%%Creator: cairo 1.17.3 (https://cairographics.org)
|
||||
%%CreationDate: Thu Aug 20 19:13:37 2020
|
||||
%%Pages: 1
|
||||
%%DocumentData: Clean7Bit
|
||||
%%LanguageLevel: 2
|
||||
%%BoundingBox: 0 0 45 60
|
||||
%%EndComments
|
||||
%%BeginProlog
|
||||
50 dict begin
|
||||
/q { gsave } bind def
|
||||
/Q { grestore } bind def
|
||||
/cm { 6 array astore concat } bind def
|
||||
/w { setlinewidth } bind def
|
||||
/J { setlinecap } bind def
|
||||
/j { setlinejoin } bind def
|
||||
/M { setmiterlimit } bind def
|
||||
/d { setdash } bind def
|
||||
/m { moveto } bind def
|
||||
/l { lineto } bind def
|
||||
/c { curveto } bind def
|
||||
/h { closepath } bind def
|
||||
/re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto
|
||||
0 exch rlineto 0 rlineto closepath } bind def
|
||||
/S { stroke } bind def
|
||||
/f { fill } bind def
|
||||
/f* { eofill } bind def
|
||||
/n { newpath } bind def
|
||||
/W { clip } bind def
|
||||
/W* { eoclip } bind def
|
||||
/BT { } bind def
|
||||
/ET { } bind def
|
||||
/BDC { mark 3 1 roll /BDC pdfmark } bind def
|
||||
/EMC { mark /EMC pdfmark } bind def
|
||||
/cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def
|
||||
/Tj { show currentpoint cairo_store_point } bind def
|
||||
/TJ {
|
||||
{
|
||||
dup
|
||||
type /stringtype eq
|
||||
{ show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse
|
||||
} forall
|
||||
currentpoint cairo_store_point
|
||||
} bind def
|
||||
/cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore
|
||||
cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def
|
||||
/Tf { pop /cairo_font exch def /cairo_font_matrix where
|
||||
{ pop cairo_selectfont } if } bind def
|
||||
/Td { matrix translate cairo_font_matrix matrix concatmatrix dup
|
||||
/cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point
|
||||
/cairo_font where { pop cairo_selectfont } if } bind def
|
||||
/Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def
|
||||
cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def
|
||||
/g { setgray } bind def
|
||||
/rg { setrgbcolor } bind def
|
||||
/d1 { setcachedevice } bind def
|
||||
/cairo_data_source {
|
||||
CairoDataIndex CairoData length lt
|
||||
{ CairoData CairoDataIndex get /CairoDataIndex CairoDataIndex 1 add def }
|
||||
{ () } ifelse
|
||||
} def
|
||||
/cairo_flush_ascii85_file { cairo_ascii85_file status { cairo_ascii85_file flushfile } if } def
|
||||
/cairo_image { image cairo_flush_ascii85_file } def
|
||||
/cairo_imagemask { imagemask cairo_flush_ascii85_file } def
|
||||
%%EndProlog
|
||||
%%BeginSetup
|
||||
%%EndSetup
|
||||
%%Page: 1 1
|
||||
%%BeginPageSetup
|
||||
%%PageBoundingBox: 0 0 45 60
|
||||
%%EndPageSetup
|
||||
q 0 0 45 60 rectclip
|
||||
1 0 0 -1 0 60 cm q
|
||||
Q q
|
||||
q
|
||||
0 0 45 60 re W n
|
||||
[ 1 0 0 1 0 0 ] concat
|
||||
q
|
||||
0.129412 0.298039 0.631373 rg
|
||||
11.023 11.023 m 33.078 11.023 l 33.078 33.082 l 11.023 33.082 l h
|
||||
33.078 0 m 11.023 0 l 4.934 0 0 4.934 0 11.023 c 0 33.078 l 0 39.168 4.934
|
||||
44.102 11.023 44.102 c 33.078 44.102 l 39.168 44.102 44.102 39.168 44.102
|
||||
33.078 c 44.102 11.023 l 44.102 4.934 39.168 0 33.078 0 c f
|
||||
21.977 12.93 m 16.98 12.93 12.934 16.98 12.934 21.977 c 12.934 26.973 16.98
|
||||
31.023 21.977 31.023 c 26.977 31.023 31.023 26.973 31.023 21.977 c 31.023
|
||||
16.98 26.977 12.93 21.977 12.93 c f
|
||||
0.129412 0.054902 0.0313726 rg
|
||||
4.801 49.043 m 9.617 56.047 l 9.617 50.66 l 9.602 49.379 l 8.156 49.379
|
||||
l 8.156 49.043 l 11.258 49.043 l 11.258 49.379 l 10.062 49.379 l 10.047
|
||||
50.66 l 10.047 59 l 9.828 59.07 l 3.367 49.672 l 3.367 57.219 l 3.379 58.539
|
||||
l 4.871 58.539 l 4.871 58.875 l 1.656 58.875 l 1.656 58.539 l 2.938 58.539
|
||||
l 2.949 57.219 l 2.949 50.66 l 2.938 49.379 l 1.656 49.379 l 1.656 49.043
|
||||
l h
|
||||
4.801 49.043 m f
|
||||
20.867 49.043 m 20.867 52.191 l 20.449 52.191 l 20.406 51.703 20.352 51.094
|
||||
19.918 50.367 c 19.418 49.52 18.738 49.477 18.066 49.449 c 17.289 49.449
|
||||
l 17.273 50.699 l 17.273 57.121 l 17.289 58.539 l 18.793 58.539 l 18.793
|
||||
58.875 l 14.227 58.875 l 14.227 58.539 l 15.73 58.539 l 15.742 57.121 l
|
||||
15.742 50.699 l 15.73 49.449 l 15.09 49.449 l 14.281 49.461 13.668 49.461
|
||||
13.082 50.395 c 12.625 51.133 12.582 51.719 12.555 52.191 c 12.152 52.191
|
||||
l 12.152 49.043 l 20.867 49.043 l f
|
||||
24.82 49.043 m 29.637 56.047 l 29.637 50.66 l 29.621 49.379 l 28.176 49.379
|
||||
l 28.176 49.043 l 31.281 49.043 l 31.281 49.379 l 30.082 49.379 l 30.066
|
||||
50.66 l 30.066 59 l 29.844 59.07 l 23.387 49.672 l 23.387 57.219 l 23.402
|
||||
58.539 l 24.891 58.539 l 24.891 58.875 l 21.676 58.875 l 21.676 58.539
|
||||
l 22.953 58.539 l 22.969 57.219 l 22.969 50.66 l 22.953 49.379 l 21.676
|
||||
49.379 l 21.676 49.043 l h
|
||||
24.82 49.043 m f
|
||||
36.684 49.043 m 36.684 49.379 l 35.305 49.379 l 35.293 50.562 l 35.293
|
||||
55.879 l 35.305 57.258 35.336 58.566 37.926 58.566 c 40.543 58.566 40.707
|
||||
57.426 40.75 56.188 c 40.75 50.562 l 40.738 49.379 l 39.332 49.379 l 39.332
|
||||
49.043 l 42.406 49.043 l 42.406 49.379 l 41.195 49.379 l 41.184 50.562
|
||||
l 41.184 55.629 l 41.168 57.453 41.152 59.012 37.547 59.012 c 37.031 59.012
|
||||
35.809 58.957 35.027 58.637 c 33.789 58.109 33.762 57.023 33.746 55.688
|
||||
c 33.746 50.562 l 33.734 49.379 l 32.539 49.379 l 32.539 49.043 l 36.684
|
||||
49.043 l f
|
||||
Q
|
||||
Q
|
||||
Q Q
|
||||
showpage
|
||||
%%Trailer
|
||||
end
|
||||
%%EOF
|
|
@ -0,0 +1,61 @@
|
|||
\usepackage{titling}
|
||||
|
||||
\pretitle{
|
||||
\begin{flushleft}
|
||||
\LARGE
|
||||
}
|
||||
\posttitle{
|
||||
\par
|
||||
\end{flushleft}
|
||||
}
|
||||
|
||||
\preauthor{
|
||||
\begin{flushleft}
|
||||
\large
|
||||
}
|
||||
\postauthor{
|
||||
\par
|
||||
\end{flushleft}
|
||||
}
|
||||
|
||||
\predate{
|
||||
\begin{flushleft}
|
||||
\large
|
||||
}
|
||||
\postdate{
|
||||
\par
|
||||
\end{flushleft}
|
||||
}
|
||||
|
||||
%---------------------------------------%
|
||||
|
||||
\newtcolorbox{headerbox}{
|
||||
% tikznode,
|
||||
% tcbox width=auto limited,
|
||||
% capture=hbox,
|
||||
enhanced,
|
||||
colback=ntnublue,
|
||||
coltext=white,
|
||||
arc=0pt,
|
||||
boxrule=0pt,
|
||||
parbox=false,
|
||||
top=5mm,
|
||||
bottom=5mm
|
||||
}
|
||||
|
||||
\newcommand{\tittel}{
|
||||
\begin{minipage}{0.80\textwidth}
|
||||
\begin{headerbox}
|
||||
\Huge\thetitle
|
||||
|
||||
\LARGE\theauthor
|
||||
\end{headerbox}
|
||||
\end{minipage}
|
||||
\hfill
|
||||
\begin{minipage}{0.10\textwidth}
|
||||
\vspace*{2mm}
|
||||
\centering
|
||||
\includegraphics[scale=1.2]{lib/ntnu_alt_versjon_uten_slagord.pdf}
|
||||
\end{minipage}
|
||||
\vspace*{2cm}
|
||||
}
|
|
@ -0,0 +1,42 @@
|
|||
\relax
|
||||
\providecommand\hyper@newdestlabel[2]{}
|
||||
\@nameuse{bbl@beforestart}
|
||||
\catcode `"\active
|
||||
\providecommand\HyperFirstAtBeginDocument{\AtBeginDocument}
|
||||
\HyperFirstAtBeginDocument{\ifx\hyper@anchor\@undefined
|
||||
\global\let\oldcontentsline\contentsline
|
||||
\gdef\contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}}
|
||||
\global\let\oldnewlabel\newlabel
|
||||
\gdef\newlabel#1#2{\newlabelxx{#1}#2}
|
||||
\gdef\newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}}
|
||||
\AtEndDocument{\ifx\hyper@anchor\@undefined
|
||||
\let\contentsline\oldcontentsline
|
||||
\let\newlabel\oldnewlabel
|
||||
\fi}
|
||||
\fi}
|
||||
\global\let\hyper@last\relax
|
||||
\gdef\HyperFirstAtBeginDocument#1{#1}
|
||||
\providecommand\HyField@AuxAddToFields[1]{}
|
||||
\providecommand\HyField@AuxAddToCoFields[2]{}
|
||||
\babel@aux{norsk}{}
|
||||
\@writefile{toc}{\contentsline {section}{\numberline {1}Forberedende oppgaver}{2}{section.1}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subsection}{Oppgave 1}{2}{Item.1}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subsubsection}{a)}{2}{Item.2}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subsubsection}{b)}{2}{Item.3}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subsubsection}{c)}{2}{Item.4}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subsection}{Oppgave 2}{2}{Item.5}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {section}{\numberline {2}Innleveringsoppgaver}{2}{section.2}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subsection}{Oppgave 3}{2}{Item.6}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subsubsection}{a)}{2}{Item.7}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subsubsection}{b)}{2}{Item.8}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subsubsection}{c)}{3}{Item.9}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subsubsection}{d)}{3}{Item.10}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subsubsection}{e)}{3}{Item.11}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subsection}{Oppgave 4}{3}{Item.12}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subsubsection}{a)}{3}{Item.13}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subsubsection}{b)}{3}{Item.14}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subsubsection}{c)}{4}{Item.15}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subsubsection}{d)}{4}{Item.16}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subsection}{Oppgave 5}{6}{Item.17}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subsubsection}{a)}{6}{Item.18}\protected@file@percent }
|
||||
\@writefile{toc}{\contentsline {subsubsection}{b)}{6}{Item.19}\protected@file@percent }
|
|
@ -0,0 +1,224 @@
|
|||
# Fdb version 3
|
||||
["pdflatex"] 1598099530 "/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.tex" "/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.pdf" "main" 1598099530
|
||||
"/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/figures/5a.tex" 1597793813 522 53ce0f76c5b3b941ac38ea5f3a3f9f47 ""
|
||||
"/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/figures/5b.tex" 1597793839 445 140592898ae0d1e73dccbd6de71e1866 ""
|
||||
"/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/lib/geometry.tex" 1597925545 100 e4f7b8b8d9581bdcdfa52eb031ae8fec ""
|
||||
"/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/lib/header.tex" 1597926899 202 285490656790e1dc251a30c83837e4d7 ""
|
||||
"/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/lib/math.tex" 1597952308 1018 81ce2ce7ca27dbf545154e5cd17ee4f0 ""
|
||||
"/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/lib/ntnu_alt_versjon_uten_slagord.pdf" 1597943527 778278 5678ff4c4c4e5cf71cc3d7d2d5369d26 ""
|
||||
"/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/lib/titling.tex" 1597954836 861 62bd61d0c8fcabe21a4c8267f72e504b ""
|
||||
"/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.aux" 1598099530 2647 cb690274ecc67564e338055dca778351 "pdflatex"
|
||||
"/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.out" 1598099530 963 9ccbd48eb13c756ca934bc6db9dd2674 "pdflatex"
|
||||
"/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.tex" 1598020256 1006 ca9550a95eefa335aca2492e9e219d70 ""
|
||||
"/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.toc" 1598099530 1078 98c4e14ce653233474a52c87a07879f5 "pdflatex"
|
||||
"/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/tasks/1.tex" 1598099529 275 c7ab5a4d24062d33dfac2922e5b95859 ""
|
||||
"/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/tasks/2.tex" 1598019773 0 d41d8cd98f00b204e9800998ecf8427e ""
|
||||
"/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/tasks/3.tex" 1597838229 1134 f6571b245f5374951936bab7d44d202d ""
|
||||
"/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/tasks/4.tex" 1597930108 2037 8849d15bb84ea4355afe3268574f49f6 ""
|
||||
"/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/tasks/5.tex" 1597929889 1005 c9ad60b08ff469d640f7b3488c28c466 ""
|
||||
"/usr/share/texmf-dist/fonts/map/fontname/texfonts.map" 1591545468 3524 cb3e574dea2d1052e39280babc910dc8 ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm" 1591545468 1004 54797486969f23fa377b128694d548df ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/public/cm/cmbx10.tfm" 1591545468 1328 c834bbb027764024c09d3d2bf908b5f0 ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm" 1591545468 1324 c910af8c371558dc20f2d7822f66fe64 ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/public/cm/cmr12.tfm" 1591545468 1288 655e228510b4c2a1abe905c368440826 ""
|
||||
"/usr/share/texmf-dist/fonts/tfm/public/cm/cmr17.tfm" 1591545468 1292 296a67155bdbfc32aa9c636f21e91433 ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx10.pfb" 1591545468 34811 78b52f49e893bcba91bd7581cdc144c0 ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb" 1591545468 32080 340ef9bf63678554ee606688e7b5339d ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb" 1591545468 30251 6afa5cb1d0204815a708a080681d4674 ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb" 1591545468 36299 5f9df58c2139e7edcf37c8fca4bd384d ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi7.pfb" 1591545468 36281 c355509802a035cadc5f15869451dcee ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb" 1591545468 35752 024fb6c41858982481f6968b5fc26508 ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb" 1591545468 32722 d7379af29a190c3f453aba36302ff5a9 ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb" 1591545468 32362 179c33bbf43f19adbb3825bb4e36e57a ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr7.pfb" 1591545468 32762 224316ccc9ad3ca0423a14971cfa7fc1 ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb" 1591545468 32569 5e5ddc8df908dea60932f3c484a54c0d ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy7.pfb" 1591545468 32716 08e384dc442464e7285e891af9f45947 ""
|
||||
"/usr/share/texmf-dist/fonts/type1/public/amsfonts/latxfont/line10.pfb" 1591545468 11493 4f5ed183a47d3197cf8cd322325db6de ""
|
||||
"/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii" 1591545468 71627 94eb9990bed73c364d7f53f960cc8c5b ""
|
||||
"/usr/share/texmf-dist/tex/generic/atbegshi/atbegshi.sty" 1591545468 24708 5584a51a7101caf7e6bbf1fc27d8f7b1 ""
|
||||
"/usr/share/texmf-dist/tex/generic/babel-norsk/norsk.ldf" 1591545468 7454 81c33988aa9f2f7c4a604d2527fdb33c ""
|
||||
"/usr/share/texmf-dist/tex/generic/babel/babel.def" 1591545468 107158 a58f7a1696ebeb13376aa0f8720600d4 ""
|
||||
"/usr/share/texmf-dist/tex/generic/babel/babel.sty" 1591545468 35343 180ff3fc8cf1d846a7f48b26f8aa7c17 ""
|
||||
"/usr/share/texmf-dist/tex/generic/babel/txtbabel.def" 1591545468 5211 2c3605e674ad86cdc9fdcfcd3de3a1da ""
|
||||
"/usr/share/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty" 1591545468 40635 c40361e206be584d448876bba8a64a3b ""
|
||||
"/usr/share/texmf-dist/tex/generic/bitset/bitset.sty" 1591545468 33961 6b5c75130e435b2bfdb9f480a09a39f9 ""
|
||||
"/usr/share/texmf-dist/tex/generic/etexcmds/etexcmds.sty" 1591545468 7734 b98cbb34c81f667027c1e3ebdbfce34b ""
|
||||
"/usr/share/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty" 1591545468 8371 9d55b8bd010bc717624922fb3477d92e ""
|
||||
"/usr/share/texmf-dist/tex/generic/iftex/iftex.sty" 1591545468 6501 4011d89d9621e0b0901138815ba5ff29 ""
|
||||
"/usr/share/texmf-dist/tex/generic/iftex/ifvtex.sty" 1591545468 1057 525c2192b5febbd8c1f662c9468335bb ""
|
||||
"/usr/share/texmf-dist/tex/generic/infwarerr/infwarerr.sty" 1591545468 8356 7bbb2c2373aa810be568c29e333da8ed ""
|
||||
"/usr/share/texmf-dist/tex/generic/intcalc/intcalc.sty" 1591545468 31769 002a487f55041f8e805cfbf6385ffd97 ""
|
||||
"/usr/share/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty" 1591545468 5412 d5a2436094cd7be85769db90f29250a6 ""
|
||||
"/usr/share/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty" 1591545468 13807 952b0226d4efca026f0e19dd266dcc22 ""
|
||||
"/usr/share/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty" 1591545468 18552 1e1cc7b75da0dfaacce7cdcb27d306bf ""
|
||||
"/usr/share/texmf-dist/tex/generic/pdfescape/pdfescape.sty" 1591545468 19007 15924f7228aca6c6d184b115f4baa231 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex" 1591545468 992 fb3cda354707a54fda62787a411c7c22 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex" 1591545468 43820 bc6cf5aa959817914ace33f5c6232161 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex" 1591545468 19324 c9a64402f22bd8d81821141a357af653 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex" 1591545468 6038 d639d02574be9a72f3c602c2a3510e02 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex" 1591545468 6948 284bbe3c9a7ca0a826c1c03895e69b9f ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex" 1591545468 4883 a6f3eb1f71d8c4affaf43a169828b043 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex" 1591545468 2544 3b1b198fd49f01e328adc9162a07b213 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex" 1591545468 44189 1fd6229dad4c898883516c032f2ca5d2 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex" 1591545468 17311 3092579be20ef0f229c42ad3f09da85c ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex" 1591545468 21302 d6c4b340248adbe650ebf6ca76bdccca ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex" 1591545468 9690 7585efa5a591822837f837bc5bc35621 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex" 1591545468 33335 942ccafe284041918d36e54696b98aa7 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex" 1591545468 2965 502761b60f43ab2de5ecb2f4625163ae ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex" 1591545468 5196 f8c5c775d4d6e2cb050392127cabda72 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex" 1591545468 20726 ed6ec1d6f0f35e7a93de4e79af83dbce ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex" 1591545468 35249 144a6b9c4df4644618bb3a0a40472608 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex" 1591545468 21989 266e83c51fe41eb8b8d5e6896dc71cc1 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex" 1591545468 8842 5cc856e132fac404805c6da091779283 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex" 1591545468 5493 6342997a7484f1ea9feacd1b25ead9ea ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathmorphing.code.tex" 1591545468 321 61aafaff3134e44ce6305fdd6927cdc5 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathreplacing.code.tex" 1591545468 1319 b38e66120927828ef91b8bfec59e82f3 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplotmarks.code.tex" 1591545468 325 dd99a5daacaad68231ba39fa31c3e277 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex" 1591545468 11544 2a5d66a3270abf4ef673e8a0b7734a90 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex" 1591545468 187592 7922ceab1864698dec4c84978d5b182f ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathmorphing.code.tex" 1591545468 8843 8328b4068b5b11eaa173e0957cd0eac5 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathreplacing.code.tex" 1591545468 7474 acce7114514030373cc6cb938a73a92e ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex" 1591545468 83910 20dfc3ec7fa0b1c2b3bb20376d4a1a54 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex" 1591545468 32995 a4d54c043ae5274ceaaddeb36ad43a6f ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex" 1591545468 14524 f7f259aa362ad7d5bf9235db788feef3 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex" 1591545468 3063 8c415c68a0f3394e45cfeca0b65f6ee6 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex" 1591545468 521 c70cf6ad609de83a27ee7929eb356332 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex" 1591545468 13391 933cab19c6d27039dbfc487330d1005a ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex" 1591545468 104938 15f2d8bdabd6bf9ca70f62cd8e3d4940 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex" 1591545468 10157 218d58ab074e5bd0d027de45ec64cc00 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex" 1591545468 28176 568b081ec39645f2db1a29fbd0c635e2 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex" 1591545468 9054 388d21239a1b6df2cc8beaae31c976b0 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex" 1591545468 3865 cddf7ddc80f018587c55afdcc79fc333 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex" 1591545468 3177 27d85c44fbfe09ff3b2cf2879e3ea434 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex" 1591545468 10925 df50b8a6e5660a585e3a2bf55726dcc8 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex" 1591545468 7787 1750fc3f164703caf31fc8ea9218c67e ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex" 1591545468 3379 cbd0948a550bd7a495a160ca6beee9ed ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex" 1591545468 92405 bba89470858d7b0788a9c09331c39653 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex" 1591545468 36526 453db1f8626a56b5ebb0fad496d6a39f ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex" 1591545468 8471 b18959397c76e1e582402ab9f592ed9f ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex" 1591545468 71722 1aa2adb2b5cb7aafc25e92426626ab63 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex" 1591545468 21201 46a4dded6619f990ac7347f99fbaac9f ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex" 1591545468 16121 9e240115374a8d489f2f786115df83a9 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex" 1591545468 43259 3e05ba63539916af2eaca603c2eda780 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex" 1591545468 465 1f401ab1e7fc6cb7ede39e96c66531fd ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg" 1591545468 926 70ff613fabeb70f5d1673dc0c93987bd ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def" 1591545468 5546 3586827e6032c95512b2a6682d2979a3 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-luatex.def" 1591545468 13214 dd7528d1b54531af922516f1e20068a2 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def" 1591545468 12603 c02869ea216d842c29d52fae8738264e ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex" 1591545468 60269 e86bc0081af83a4ad47e4500ee09a2e4 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex" 1591545468 1896 82c274ff520f9e450ccea4e3ef4edc12 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex" 1591545468 7778 a25a32a10ca820357491d4c7b3ac02ea ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex" 1591545468 23777 cb6c8f02f87d86d621f5cb92c44f4998 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex" 1591545468 36815 f7f1772c398f07af2cb741992963045c ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex" 1591545468 37439 bd44d50aef702b03193f731207931834 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex" 1591545468 4494 7e5ace0ccf59408f2cf63219a5d36927 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.tex" 1591545468 7250 03b2b9fb5fa38e7ca5cc3c45860fb210 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex" 1591545468 28309 488ccc6c701bbdd1bf671f708757aa5c ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def" 1591545468 6286 1bd76fc45da9929ab2a64f51cba3ab6f ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading.code.tex" 1591525106 22701 5fab7b8ebb90b053dc067d1bd37e43c2 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex" 1591525106 3047 aa82404aec57311271f4991c44bd71dc ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex" 1591525106 23537 54be8160344d894595f6d145b1311658 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.tex" 1591525106 4288 b8d6247899b21e3bb66bb11b24d30f2c ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure.code.tex" 1591525106 13828 11d1b09335a4a8baa693dd1e6cac3edf ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructureext.code.tex" 1591525106 24373 6544c1554e5da33118301011eb03058d ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.tex" 1591525106 18861 7dc35832c8ccea3aa73cdcd75ec0a60b ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.tex" 1591525106 83469 f77a7d8a23834d4c2472f8dba8e67bff ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_loader.code.tex" 1591525106 12347 43d867ea29e34d528123d9ef750aa146 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex" 1591525106 484290 caea27cd6fb92bee42d780744628835e ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex" 1591525106 22428 72578a4c9324bc5dfafe23fe64f64024 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex" 1591525106 12489 859c23df41fb9067128ef5a64b01c0a4 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex" 1591525106 3533 973f376afa5a4526f16b11630b9931b4 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex" 1591525106 516 008784cc48c9187f099ff003cec6516a ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex" 1591525106 123680 d33fda4929d7200c3e6f0ec83c006aef ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex" 1591525106 367035 be5ad6faf030b5e07b899b712359f9d2 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex" 1591525106 19944 7957349fbe31c4e8dea9de4cd41cb086 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex" 1591525106 133871 7247b31742a2240343a6739cb76d6821 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex" 1591525106 24402 288fc3f6c7980728b8a519dfd1737d22 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex" 1591525106 117959 1e3bc7fa9f198fdae686d98f31121098 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex" 1591525106 26190 c428334c805ae1d15110eb8670292947 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex" 1591525106 91244 1a0e9e49b7a2d10d1b1a610306ba4f8c ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-pdftex.def" 1591525106 5907 9dc460712c23e5b3338820499d47608c ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex" 1591525106 3095 c82d281b748902a65be2ccca97360b11 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex" 1591525106 23050 a369aa910ef860a3621fe0459faa335c ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex" 1591525106 26859 7a4ee9d206fb0a0daa0d3108445afb57 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex" 1591525106 23958 1b96260863091af1669c3a38b1c4c9af ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex" 1591525106 88956 018b2512ef27998e97af72e8b1dcdbd5 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex" 1591525106 71110 bbc5bf1ad9c1c1213e14ccb5d14dd931 ""
|
||||
"/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex" 1591525106 3286 c17079ba50483e1ac1721268ea016041 ""
|
||||
"/usr/share/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty" 1591545468 7008 f92eaa0a3872ed622bbf538217cd2ab7 ""
|
||||
"/usr/share/texmf-dist/tex/latex/amsmath/amsbsy.sty" 1591545468 2211 ca7ce284ab93c8eecdc6029dc5ccbd73 ""
|
||||
"/usr/share/texmf-dist/tex/latex/amsmath/amsgen.sty" 1591545468 4161 7f6eb9092061a11f87d08ed13515b48d ""
|
||||
"/usr/share/texmf-dist/tex/latex/amsmath/amsmath.sty" 1591545468 85660 baee036978c7a91f4e2bba43f05e5945 ""
|
||||
"/usr/share/texmf-dist/tex/latex/amsmath/amsopn.sty" 1591545468 4116 32e6abd27229755a83a8b7f18e583890 ""
|
||||
"/usr/share/texmf-dist/tex/latex/amsmath/amstext.sty" 1591545468 2432 8ff93b1137020e8f21930562a874ae66 ""
|
||||
"/usr/share/texmf-dist/tex/latex/atveryend/atveryend.sty" 1591545468 19336 ce7ae9438967282886b3b036cfad1e4d ""
|
||||
"/usr/share/texmf-dist/tex/latex/auxhook/auxhook.sty" 1591545468 3935 57aa3c3e203a5c2effb4d2bd2efbc323 ""
|
||||
"/usr/share/texmf-dist/tex/latex/base/article.cls" 1591545468 20023 e427dd9e17e239bf926ef3aab67fe35e ""
|
||||
"/usr/share/texmf-dist/tex/latex/base/inputenc.sty" 1591545468 5050 8933a39ad74377accd18991c5eb90c58 ""
|
||||
"/usr/share/texmf-dist/tex/latex/base/size10.clo" 1591545468 8446 9874cccac5fee462272c582807dbbf56 ""
|
||||
"/usr/share/texmf-dist/tex/latex/cancel/cancel.sty" 1591524854 7592 dd751af313a16a0308545d5bfd7aaaa2 ""
|
||||
"/usr/share/texmf-dist/tex/latex/enumitem/enumitem.sty" 1591524854 51697 f8f08183cd2080d9d18a41432d651dfb ""
|
||||
"/usr/share/texmf-dist/tex/latex/environ/environ.sty" 1591524854 4378 f429f0da968c278653359293040a8f52 ""
|
||||
"/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty" 1591545468 13886 d1306dcf79a944f6988e688c1785f9ce ""
|
||||
"/usr/share/texmf-dist/tex/latex/etoolbox/etoolbox.sty" 1591545468 45259 743c52a37a6e5ed83cfe0e128b2da10d ""
|
||||
"/usr/share/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty" 1591545468 11128 a53805799bebfed6358fc1658a18e41f ""
|
||||
"/usr/share/texmf-dist/tex/latex/geometry/geometry.sty" 1591545468 41601 9cf6c5257b1bc7af01a58859749dd37a ""
|
||||
"/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg" 1591545468 1213 620bba36b25224fa9b7e1ccb4ecb76fd ""
|
||||
"/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg" 1591545468 1224 978390e9c2234eab29404bc21b268d1e ""
|
||||
"/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def" 1591545468 17448 c8e20d5f7e69b0cbecf82ab29daeebd9 ""
|
||||
"/usr/share/texmf-dist/tex/latex/graphics/graphics.sty" 1591545468 16932 04729abe63b66ec59ea56edcd722b058 ""
|
||||
"/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty" 1591545468 9067 1b996612394a52e1efe89c8bfe8a5892 ""
|
||||
"/usr/share/texmf-dist/tex/latex/graphics/keyval.sty" 1591545468 2590 e3b24ff953e5b58d924f163d25380312 ""
|
||||
"/usr/share/texmf-dist/tex/latex/graphics/trig.sty" 1591545468 3976 d7fa7d81d2870d509d25b17d0245e735 ""
|
||||
"/usr/share/texmf-dist/tex/latex/hycolor/hycolor.sty" 1591545468 17914 4c28a13fc3d975e6e81c9bea1d697276 ""
|
||||
"/usr/share/texmf-dist/tex/latex/hyperref/hpdftex.def" 1591545468 50570 2e81797743231d9037b0cbe3436d74ba ""
|
||||
"/usr/share/texmf-dist/tex/latex/hyperref/hyperref.sty" 1591545468 236775 8ab18a05f69e6caef423fa59cb0af03b ""
|
||||
"/usr/share/texmf-dist/tex/latex/hyperref/nameref.sty" 1591545468 13244 0070bcab7b5a88187847128d22faf4d8 ""
|
||||
"/usr/share/texmf-dist/tex/latex/hyperref/pd1enc.def" 1591545468 14134 c11767c54bd7ecab56984ee4e4e3158c ""
|
||||
"/usr/share/texmf-dist/tex/latex/kvoptions/kvoptions.sty" 1591545468 22520 c4c2dab203104295e1e618be7e5c0f5b ""
|
||||
"/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def" 1591545468 25742 5de23a2d2bc67a3139433e702e64a437 ""
|
||||
"/usr/share/texmf-dist/tex/latex/l3kernel/expl3.sty" 1591545468 4713 eb01a5180e90c7ac1715bb64e2c31227 ""
|
||||
"/usr/share/texmf-dist/tex/latex/l3packages/xparse/xparse-generic.tex" 1591545468 80141 edbf9289c99ff37db17116af7a3a423f ""
|
||||
"/usr/share/texmf-dist/tex/latex/l3packages/xparse/xparse.sty" 1591545468 5914 5eaa255b13fb7a5e47ededc8ec098dba ""
|
||||
"/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg" 1591545468 678 4792914a8f45be57bb98413425e4c7af ""
|
||||
"/usr/share/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty" 1591545468 5766 13a9e8766c47f30327caf893ece86ac8 ""
|
||||
"/usr/share/texmf-dist/tex/latex/ms/everyshi.sty" 1591545468 3878 6aa7c08ff2621006e0603349e40a30a8 ""
|
||||
"/usr/share/texmf-dist/tex/latex/parskip/parskip.sty" 1591545468 4308 6e9f921ebed36a97a997b268f77f1285 ""
|
||||
"/usr/share/texmf-dist/tex/latex/pdftexcmds/pdftexcmds.sty" 1591545468 19989 e08c4750d96640367c4b141017eda013 ""
|
||||
"/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty" 1591545468 1090 d20f587ea9464d1841bd0d13d3ff9856 ""
|
||||
"/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty" 1591545468 410 5bf12ea7330e5f12c445332a4fe9a263 ""
|
||||
"/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty" 1591545468 21013 e98e1aaaf40d31632787c2bd25d24b57 ""
|
||||
"/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty" 1591545468 989 2cf3da8e8ec55131c49389428d565e37 ""
|
||||
"/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty" 1591545468 339 592cf35cba3d400082b8a9a5d0199d70 ""
|
||||
"/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty" 1591545468 306 0796eafca5e159e6ec2167a6d22d81b1 ""
|
||||
"/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty" 1591545468 443 0b2e781830192df35c0fd357cf13e26e ""
|
||||
"/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty" 1591545468 348 8927fde343487e003b01a4c2ca34073b ""
|
||||
"/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty" 1591545468 274 4cad6e665cc93ac2ac979039a94fa1e1 ""
|
||||
"/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty" 1591545468 325 2bcd023400636339210573e2b3ee298b ""
|
||||
"/usr/share/texmf-dist/tex/latex/pgfplots/pgfplots.sty" 1591525106 4904 ee78b44e85d6fccf08cd99370557481e ""
|
||||
"/usr/share/texmf-dist/tex/latex/refcount/refcount.sty" 1591545468 9878 9e94e8fa600d95f9c7731bb21dfb67a4 ""
|
||||
"/usr/share/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty" 1591545468 9715 b051d5b493d9fe5f4bc251462d039e5f ""
|
||||
"/usr/share/texmf-dist/tex/latex/tcolorbox/tcbbreakable.code.tex" 1591524854 33368 487a6580cd340e8556cb7ccbd6294625 ""
|
||||
"/usr/share/texmf-dist/tex/latex/tcolorbox/tcbfitting.code.tex" 1591524854 14602 feed2f00af4987c930332c002e57fc68 ""
|
||||
"/usr/share/texmf-dist/tex/latex/tcolorbox/tcbhooks.code.tex" 1591524854 8118 c04a8e9729c21631a517e83abba106bb ""
|
||||
"/usr/share/texmf-dist/tex/latex/tcolorbox/tcbraster.code.tex" 1591524854 8922 ec5e5d42595880aebfbd19ebd8adc9fd ""
|
||||
"/usr/share/texmf-dist/tex/latex/tcolorbox/tcbskins.code.tex" 1591524854 84989 31e19a39f070bf0f2e85bb48f5aa7ec6 ""
|
||||
"/usr/share/texmf-dist/tex/latex/tcolorbox/tcbskinsjigsaw.code.tex" 1591524854 9020 73f208f230c17a84612024c5d86eac83 ""
|
||||
"/usr/share/texmf-dist/tex/latex/tcolorbox/tcbtheorems.code.tex" 1591524854 8512 53d8cb3a912a9d6ce7678b5c7ed7b9fc ""
|
||||
"/usr/share/texmf-dist/tex/latex/tcolorbox/tcbxparse.code.tex" 1591524854 10004 ecd380a699b29107b19dd757910efd5a ""
|
||||
"/usr/share/texmf-dist/tex/latex/tcolorbox/tcolorbox.sty" 1591524854 85438 b65ec5ebd2361cb2b428387a723615aa ""
|
||||
"/usr/share/texmf-dist/tex/latex/titling/titling.sty" 1591524854 7358 95ac619994bd30d405a74f3eca431c84 ""
|
||||
"/usr/share/texmf-dist/tex/latex/tools/verbatim.sty" 1591545468 7308 a7fb09b68a4a07a482e876fbe2959b04 ""
|
||||
"/usr/share/texmf-dist/tex/latex/trimspaces/trimspaces.sty" 1591524854 1380 971a51b00a14503ddf754cab24c3f209 ""
|
||||
"/usr/share/texmf-dist/tex/latex/url/url.sty" 1591545468 12796 8edb7d69a20b857904dd0ea757c14ec9 ""
|
||||
"/usr/share/texmf-dist/tex/latex/was/gensymb.sty" 1591524854 4612 29d19942d7123701aa6a3876b9ba11b1 ""
|
||||
"/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty" 1591545468 55589 34128738f682d033422ca125f82e5d62 ""
|
||||
"/usr/share/texmf-dist/web2c/texmf.cnf" 1591545468 33301 a3134070eacafb10b1f371612ce2650d ""
|
||||
"/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map" 1595191086 4732616 844ab39fce590e8a21b3ad5c18ea61ca ""
|
||||
"/var/lib/texmf/web2c/pdftex/pdflatex.fmt" 1595191081 2514048 d1f05d9962dadfa7c751209f6240c479 ""
|
||||
(generated)
|
||||
"/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.aux"
|
||||
"/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.log"
|
||||
"/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.out"
|
||||
"/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.toc"
|
||||
"/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.pdf"
|
|
@ -0,0 +1,350 @@
|
|||
PWD /mnt/dropdrive/Dropbox/university/projects/math/assignments/oeving1
|
||||
INPUT /usr/share/texmf-dist/web2c/texmf.cnf
|
||||
INPUT /var/lib/texmf/web2c/pdftex/pdflatex.fmt
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.tex
|
||||
OUTPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.log
|
||||
INPUT /usr/share/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /usr/share/texmf-dist/tex/latex/base/article.cls
|
||||
INPUT /usr/share/texmf-dist/tex/latex/base/size10.clo
|
||||
INPUT /usr/share/texmf-dist/tex/latex/base/size10.clo
|
||||
INPUT /usr/share/texmf-dist/tex/generic/babel/babel.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/babel/babel.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/babel/babel.def
|
||||
INPUT /usr/share/texmf-dist/tex/generic/babel/txtbabel.def
|
||||
INPUT /usr/share/texmf-dist/tex/generic/babel-norsk/norsk.ldf
|
||||
INPUT /usr/share/texmf-dist/tex/generic/babel-norsk/norsk.ldf
|
||||
INPUT /usr/share/texmf-dist/tex/latex/base/inputenc.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/base/inputenc.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pdftexcmds/pdftexcmds.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pdfescape/pdfescape.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pdfescape/pdfescape.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hycolor/hycolor.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hycolor/hycolor.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/auxhook/auxhook.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/auxhook/auxhook.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hyperref/pd1enc.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hyperref/pd1enc.def
|
||||
INPUT /usr/share/texmf-dist/tex/generic/intcalc/intcalc.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/intcalc/intcalc.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/etexcmds/etexcmds.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/etexcmds/etexcmds.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/url/url.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/url/url.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/bitset/bitset.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/bitset/bitset.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/atbegshi/atbegshi.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/atbegshi/atbegshi.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hyperref/hpdftex.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hyperref/hpdftex.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/atveryend/atveryend.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/atveryend/atveryend.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsmath/amsmath.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsmath/amsmath.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsmath/amstext.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsmath/amstext.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsmath/amsgen.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsmath/amsgen.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsmath/amsbsy.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsmath/amsbsy.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsmath/amsopn.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/amsmath/amsopn.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/tcolorbox/tcolorbox.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/tcolorbox/tcolorbox.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/ms/everyshi.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/ms/everyshi.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/trig.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics/trig.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/tools/verbatim.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/tools/verbatim.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/environ/environ.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/environ/environ.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/trimspaces/trimspaces.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/trimspaces/trimspaces.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/tcolorbox/tcbraster.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/tcolorbox/tcbskins.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/tcolorbox/tcbskinsjigsaw.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/tcolorbox/tcbbreakable.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/tcolorbox/tcbhooks.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/tcolorbox/tcbtheorems.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/tcolorbox/tcbfitting.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/tcolorbox/tcbxparse.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/l3packages/xparse/xparse.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def
|
||||
INPUT /usr/share/texmf-dist/tex/latex/l3packages/xparse/xparse-generic.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/l3packages/xparse/xparse-generic.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/parskip/parskip.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/parskip/parskip.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/was/gensymb.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/was/gensymb.sty
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/lib/geometry.tex
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/lib/geometry.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/iftex/ifvtex.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/iftex/ifvtex.sty
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/lib/header.tex
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/lib/header.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/titling/titling.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/titling/titling.sty
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/lib/math.tex
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/lib/math.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/cancel/cancel.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/cancel/cancel.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgfplots/pgfplots.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/pgfplots/pgfplots.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-luatex.def
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_loader.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructureext.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-pdftex.def
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-pdftex.def
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathmorphing.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathmorphing.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathmorphing.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathmorphing.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathreplacing.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathreplacing.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathreplacing.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathreplacing.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplotmarks.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplotmarks.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex
|
||||
INPUT /usr/share/texmf-dist/tex/latex/enumitem/enumitem.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/enumitem/enumitem.sty
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/lib/titling.tex
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/lib/titling.tex
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.aux
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.aux
|
||||
OUTPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.aux
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hyperref/nameref.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/hyperref/nameref.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/refcount/refcount.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/refcount/refcount.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
|
||||
INPUT /usr/share/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.out
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.out
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.out
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.out
|
||||
OUTPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.pdf
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.out
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.out
|
||||
OUTPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.out
|
||||
INPUT /usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
||||
INPUT /usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
||||
INPUT /usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
INPUT /usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
||||
INPUT /usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
||||
INPUT /usr/share/texmf-dist/fonts/map/fontname/texfonts.map
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/cm/cmr17.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/cm/cmr17.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/amsfonts/cmextra/cmex7.tfm
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/lib/ntnu_alt_versjon_uten_slagord.pdf
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/lib/ntnu_alt_versjon_uten_slagord.pdf
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/lib/ntnu_alt_versjon_uten_slagord.pdf
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/cm/cmr12.tfm
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/cm/cmbx12.tfm
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.toc
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.toc
|
||||
INPUT /usr/share/texmf-dist/fonts/tfm/public/cm/cmbx10.tfm
|
||||
OUTPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.toc
|
||||
INPUT /var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/tasks/1.tex
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/tasks/1.tex
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/tasks/2.tex
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/tasks/2.tex
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/tasks/3.tex
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/tasks/3.tex
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/tasks/4.tex
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/tasks/4.tex
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/tasks/5.tex
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/tasks/5.tex
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/figures/5a.tex
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/figures/5a.tex
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/figures/5b.tex
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/figures/5b.tex
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.aux
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.out
|
||||
INPUT /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.out
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx10.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi7.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr7.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy7.pfb
|
||||
INPUT /usr/share/texmf-dist/fonts/type1/public/amsfonts/latxfont/line10.pfb
|
|
@ -0,0 +1,817 @@
|
|||
This is pdfTeX, Version 3.14159265-2.6-1.40.21 (TeX Live 2020/Arch Linux) (preloaded format=pdflatex 2020.7.19) 22 AUG 2020 14:32
|
||||
entering extended mode
|
||||
restricted \write18 enabled.
|
||||
file:line:error style messages enabled.
|
||||
%&-line parsing enabled.
|
||||
**/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.tex
|
||||
(/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.tex
|
||||
LaTeX2e <2020-02-02> patch level 5
|
||||
L3 programming layer <2020-06-03> (/usr/share/texmf-dist/tex/latex/base/article.cls
|
||||
Document Class: article 2019/12/20 v1.4l Standard LaTeX document class
|
||||
(/usr/share/texmf-dist/tex/latex/base/size10.clo
|
||||
File: size10.clo 2019/12/20 v1.4l Standard LaTeX file (size option)
|
||||
)
|
||||
\c@part=\count167
|
||||
\c@section=\count168
|
||||
\c@subsection=\count169
|
||||
\c@subsubsection=\count170
|
||||
\c@paragraph=\count171
|
||||
\c@subparagraph=\count172
|
||||
\c@figure=\count173
|
||||
\c@table=\count174
|
||||
\abovecaptionskip=\skip47
|
||||
\belowcaptionskip=\skip48
|
||||
\bibindent=\dimen134
|
||||
) (/usr/share/texmf-dist/tex/generic/babel/babel.sty
|
||||
Package: babel 2020/05/13 3.44 The Babel package
|
||||
(/usr/share/texmf-dist/tex/generic/babel/babel.def
|
||||
File: babel.def 2020/05/13 3.44 Babel common definitions
|
||||
\babel@savecnt=\count175
|
||||
\U@D=\dimen135
|
||||
\l@babelnohyphens=\language86
|
||||
(/usr/share/texmf-dist/tex/generic/babel/txtbabel.def)
|
||||
\bbl@readstream=\read2
|
||||
)
|
||||
\bbl@dirlevel=\count176
|
||||
(/usr/share/texmf-dist/tex/generic/babel-norsk/norsk.ldf
|
||||
Language: norsk 2012/08/06 v2.0i Norsk support from the babel system
|
||||
Package babel Info: Making " an active character on input line 113.
|
||||
)) (/usr/share/texmf-dist/tex/latex/base/inputenc.sty
|
||||
Package: inputenc 2018/08/11 v1.3c Input encoding file
|
||||
\inpenc@prehook=\toks15
|
||||
\inpenc@posthook=\toks16
|
||||
) (/usr/share/texmf-dist/tex/latex/hyperref/hyperref.sty
|
||||
Package: hyperref 2020-05-15 v7.00e Hypertext links for LaTeX
|
||||
(/usr/share/texmf-dist/tex/generic/ltxcmds/ltxcmds.sty
|
||||
Package: ltxcmds 2019/12/15 v1.24 LaTeX kernel commands for general use (HO)
|
||||
) (/usr/share/texmf-dist/tex/generic/iftex/iftex.sty
|
||||
Package: iftex 2020/03/06 v1.0d TeX engine tests
|
||||
) (/usr/share/texmf-dist/tex/latex/pdftexcmds/pdftexcmds.sty
|
||||
Package: pdftexcmds 2020-06-04 v0.32 Utility functions of pdfTeX for LuaTeX (HO)
|
||||
(/usr/share/texmf-dist/tex/generic/infwarerr/infwarerr.sty
|
||||
Package: infwarerr 2019/12/03 v1.5 Providing info/warning/error messages (HO)
|
||||
)
|
||||
Package pdftexcmds Info: \pdf@primitive is available.
|
||||
Package pdftexcmds Info: \pdf@ifprimitive is available.
|
||||
Package pdftexcmds Info: \pdfdraftmode found.
|
||||
) (/usr/share/texmf-dist/tex/latex/graphics/keyval.sty
|
||||
Package: keyval 2014/10/28 v1.15 key=value parser (DPC)
|
||||
\KV@toks@=\toks17
|
||||
) (/usr/share/texmf-dist/tex/generic/kvsetkeys/kvsetkeys.sty
|
||||
Package: kvsetkeys 2019/12/15 v1.18 Key value parser (HO)
|
||||
) (/usr/share/texmf-dist/tex/generic/kvdefinekeys/kvdefinekeys.sty
|
||||
Package: kvdefinekeys 2019-12-19 v1.6 Define keys (HO)
|
||||
) (/usr/share/texmf-dist/tex/generic/pdfescape/pdfescape.sty
|
||||
Package: pdfescape 2019/12/09 v1.15 Implements pdfTeX's escape features (HO)
|
||||
) (/usr/share/texmf-dist/tex/latex/hycolor/hycolor.sty
|
||||
Package: hycolor 2020-01-27 v1.10 Color options for hyperref/bookmark (HO)
|
||||
) (/usr/share/texmf-dist/tex/latex/letltxmacro/letltxmacro.sty
|
||||
Package: letltxmacro 2019/12/03 v1.6 Let assignment for LaTeX macros (HO)
|
||||
) (/usr/share/texmf-dist/tex/latex/auxhook/auxhook.sty
|
||||
Package: auxhook 2019-12-17 v1.6 Hooks for auxiliary files (HO)
|
||||
) (/usr/share/texmf-dist/tex/latex/kvoptions/kvoptions.sty
|
||||
Package: kvoptions 2019/11/29 v3.13 Key value format for package options (HO)
|
||||
)
|
||||
\@linkdim=\dimen136
|
||||
\Hy@linkcounter=\count177
|
||||
\Hy@pagecounter=\count178
|
||||
(/usr/share/texmf-dist/tex/latex/hyperref/pd1enc.def
|
||||
File: pd1enc.def 2020-05-15 v7.00e Hyperref: PDFDocEncoding definition (HO)
|
||||
Now handling font encoding PD1 ...
|
||||
... no UTF-8 mapping file for font encoding PD1
|
||||
) (/usr/share/texmf-dist/tex/generic/intcalc/intcalc.sty
|
||||
Package: intcalc 2019/12/15 v1.3 Expandable calculations with integers (HO)
|
||||
) (/usr/share/texmf-dist/tex/generic/etexcmds/etexcmds.sty
|
||||
Package: etexcmds 2019/12/15 v1.7 Avoid name clashes with e-TeX commands (HO)
|
||||
)
|
||||
\Hy@SavedSpaceFactor=\count179
|
||||
Package hyperref Info: Hyper figures OFF on input line 4464.
|
||||
Package hyperref Info: Link nesting OFF on input line 4469.
|
||||
Package hyperref Info: Hyper index ON on input line 4472.
|
||||
Package hyperref Info: Plain pages OFF on input line 4479.
|
||||
Package hyperref Info: Backreferencing OFF on input line 4484.
|
||||
Package hyperref Info: Implicit mode ON; LaTeX internals redefined.
|
||||
Package hyperref Info: Bookmarks ON on input line 4717.
|
||||
\c@Hy@tempcnt=\count180
|
||||
(/usr/share/texmf-dist/tex/latex/url/url.sty
|
||||
\Urlmuskip=\muskip16
|
||||
Package: url 2013/09/16 ver 3.4 Verb mode for urls, etc.
|
||||
)
|
||||
LaTeX Info: Redefining \url on input line 5076.
|
||||
\XeTeXLinkMargin=\dimen137
|
||||
(/usr/share/texmf-dist/tex/generic/bitset/bitset.sty
|
||||
Package: bitset 2019/12/09 v1.3 Handle bit-vector datatype (HO)
|
||||
(/usr/share/texmf-dist/tex/generic/bigintcalc/bigintcalc.sty
|
||||
Package: bigintcalc 2019/12/15 v1.5 Expandable calculations on big integers (HO)
|
||||
))
|
||||
\Fld@menulength=\count181
|
||||
\Field@Width=\dimen138
|
||||
\Fld@charsize=\dimen139
|
||||
Package hyperref Info: Hyper figures OFF on input line 6347.
|
||||
Package hyperref Info: Link nesting OFF on input line 6352.
|
||||
Package hyperref Info: Hyper index ON on input line 6355.
|
||||
Package hyperref Info: backreferencing OFF on input line 6362.
|
||||
Package hyperref Info: Link coloring OFF on input line 6367.
|
||||
Package hyperref Info: Link coloring with OCG OFF on input line 6372.
|
||||
Package hyperref Info: PDF/A mode OFF on input line 6377.
|
||||
LaTeX Info: Redefining \ref on input line 6417.
|
||||
LaTeX Info: Redefining \pageref on input line 6421.
|
||||
(/usr/share/texmf-dist/tex/generic/atbegshi/atbegshi.sty
|
||||
Package: atbegshi 2019/12/05 v1.19 At begin shipout hook (HO)
|
||||
)
|
||||
\Hy@abspage=\count182
|
||||
\c@Item=\count183
|
||||
\c@Hfootnote=\count184
|
||||
)
|
||||
Package hyperref Info: Driver (autodetected): hpdftex.
|
||||
(/usr/share/texmf-dist/tex/latex/hyperref/hpdftex.def
|
||||
File: hpdftex.def 2020-05-15 v7.00e Hyperref driver for pdfTeX
|
||||
(/usr/share/texmf-dist/tex/latex/atveryend/atveryend.sty
|
||||
Package: atveryend 2019-12-11 v1.11 Hooks at the very end of document (HO)
|
||||
Package atveryend Info: \enddocument detected (standard20110627).
|
||||
)
|
||||
\Fld@listcount=\count185
|
||||
\c@bookmark@seq@number=\count186
|
||||
(/usr/share/texmf-dist/tex/latex/rerunfilecheck/rerunfilecheck.sty
|
||||
Package: rerunfilecheck 2019/12/05 v1.9 Rerun checks for auxiliary files (HO)
|
||||
(/usr/share/texmf-dist/tex/generic/uniquecounter/uniquecounter.sty
|
||||
Package: uniquecounter 2019/12/15 v1.4 Provide unlimited unique counter (HO)
|
||||
)
|
||||
Package uniquecounter Info: New unique counter `rerunfilecheck' on input line 286.
|
||||
)
|
||||
\Hy@SectionHShift=\skip49
|
||||
) (/usr/share/texmf-dist/tex/latex/xcolor/xcolor.sty
|
||||
Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK)
|
||||
(/usr/share/texmf-dist/tex/latex/graphics-cfg/color.cfg
|
||||
File: color.cfg 2016/01/02 v1.6 sample color configuration
|
||||
)
|
||||
Package xcolor Info: Driver file: pdftex.def on input line 225.
|
||||
(/usr/share/texmf-dist/tex/latex/graphics-def/pdftex.def
|
||||
File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex
|
||||
)
|
||||
Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348.
|
||||
Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352.
|
||||
Package xcolor Info: Model `RGB' extended on input line 1364.
|
||||
Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366.
|
||||
Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367.
|
||||
Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368.
|
||||
Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369.
|
||||
Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370.
|
||||
Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371.
|
||||
) (/usr/share/texmf-dist/tex/latex/amsmath/amsmath.sty
|
||||
Package: amsmath 2020/01/20 v2.17e AMS math features
|
||||
\@mathmargin=\skip50
|
||||
|
||||
For additional information on amsmath, use the `?' option.
|
||||
(/usr/share/texmf-dist/tex/latex/amsmath/amstext.sty
|
||||
Package: amstext 2000/06/29 v2.01 AMS text
|
||||
(/usr/share/texmf-dist/tex/latex/amsmath/amsgen.sty
|
||||
File: amsgen.sty 1999/11/30 v2.0 generic functions
|
||||
\@emptytoks=\toks18
|
||||
\ex@=\dimen140
|
||||
)) (/usr/share/texmf-dist/tex/latex/amsmath/amsbsy.sty
|
||||
Package: amsbsy 1999/11/29 v1.2d Bold Symbols
|
||||
\pmbraise@=\dimen141
|
||||
) (/usr/share/texmf-dist/tex/latex/amsmath/amsopn.sty
|
||||
Package: amsopn 2016/03/08 v2.02 operator names
|
||||
)
|
||||
\inf@bad=\count187
|
||||
LaTeX Info: Redefining \frac on input line 227.
|
||||
\uproot@=\count188
|
||||
\leftroot@=\count189
|
||||
LaTeX Info: Redefining \overline on input line 389.
|
||||
\classnum@=\count190
|
||||
\DOTSCASE@=\count191
|
||||
LaTeX Info: Redefining \ldots on input line 486.
|
||||
LaTeX Info: Redefining \dots on input line 489.
|
||||
LaTeX Info: Redefining \cdots on input line 610.
|
||||
\Mathstrutbox@=\box45
|
||||
\strutbox@=\box46
|
||||
\big@size=\dimen142
|
||||
LaTeX Font Info: Redeclaring font encoding OML on input line 733.
|
||||
LaTeX Font Info: Redeclaring font encoding OMS on input line 734.
|
||||
\macc@depth=\count192
|
||||
\c@MaxMatrixCols=\count193
|
||||
\dotsspace@=\muskip17
|
||||
\c@parentequation=\count194
|
||||
\dspbrk@lvl=\count195
|
||||
\tag@help=\toks19
|
||||
\row@=\count196
|
||||
\column@=\count197
|
||||
\maxfields@=\count198
|
||||
\andhelp@=\toks20
|
||||
\eqnshift@=\dimen143
|
||||
\alignsep@=\dimen144
|
||||
\tagshift@=\dimen145
|
||||
\tagwidth@=\dimen146
|
||||
\totwidth@=\dimen147
|
||||
\lineht@=\dimen148
|
||||
\@envbody=\toks21
|
||||
\multlinegap=\skip51
|
||||
\multlinetaggap=\skip52
|
||||
\mathdisplay@stack=\toks22
|
||||
LaTeX Info: Redefining \[ on input line 2859.
|
||||
LaTeX Info: Redefining \] on input line 2860.
|
||||
) (/usr/share/texmf-dist/tex/latex/tcolorbox/tcolorbox.sty
|
||||
Package: tcolorbox 2020/04/28 version 4.30 text color boxes
|
||||
(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty (/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty (/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex
|
||||
\pgfutil@everybye=\toks23
|
||||
\pgfutil@tempdima=\dimen149
|
||||
\pgfutil@tempdimb=\dimen150
|
||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.tex)) (/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def
|
||||
\pgfutil@abb=\box47
|
||||
(/usr/share/texmf-dist/tex/latex/ms/everyshi.sty
|
||||
Package: everyshi 2001/05/15 v3.00 EveryShipout Package (MS)
|
||||
)) (/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex (/usr/share/texmf-dist/tex/generic/pgf/pgf.revision.tex)
|
||||
Package: pgfrcs 2020/01/08 v3.1.5b (3.1.5b)
|
||||
))
|
||||
Package: pgf 2020/01/08 v3.1.5b (3.1.5b)
|
||||
(/usr/share/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty (/usr/share/texmf-dist/tex/latex/graphics/graphicx.sty
|
||||
Package: graphicx 2019/11/30 v1.2a Enhanced LaTeX Graphics (DPC,SPQR)
|
||||
(/usr/share/texmf-dist/tex/latex/graphics/graphics.sty
|
||||
Package: graphics 2019/11/30 v1.4a Standard LaTeX Graphics (DPC,SPQR)
|
||||
(/usr/share/texmf-dist/tex/latex/graphics/trig.sty
|
||||
Package: trig 2016/01/03 v1.10 sin cos tan (DPC)
|
||||
) (/usr/share/texmf-dist/tex/latex/graphics-cfg/graphics.cfg
|
||||
File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration
|
||||
)
|
||||
Package graphics Info: Driver file: pdftex.def on input line 105.
|
||||
)
|
||||
\Gin@req@height=\dimen151
|
||||
\Gin@req@width=\dimen152
|
||||
) (/usr/share/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex
|
||||
Package: pgfsys 2020/01/08 v3.1.5b (3.1.5b)
|
||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex
|
||||
\pgfkeys@pathtoks=\toks24
|
||||
\pgfkeys@temptoks=\toks25
|
||||
(/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.tex
|
||||
\pgfkeys@tmptoks=\toks26
|
||||
))
|
||||
\pgf@x=\dimen153
|
||||
\pgf@y=\dimen154
|
||||
\pgf@xa=\dimen155
|
||||
\pgf@ya=\dimen156
|
||||
\pgf@xb=\dimen157
|
||||
\pgf@yb=\dimen158
|
||||
\pgf@xc=\dimen159
|
||||
\pgf@yc=\dimen160
|
||||
\pgf@xd=\dimen161
|
||||
\pgf@yd=\dimen162
|
||||
\w@pgf@writea=\write3
|
||||
\r@pgf@reada=\read3
|
||||
\c@pgf@counta=\count199
|
||||
\c@pgf@countb=\count266
|
||||
\c@pgf@countc=\count267
|
||||
\c@pgf@countd=\count268
|
||||
\t@pgf@toka=\toks27
|
||||
\t@pgf@tokb=\toks28
|
||||
\t@pgf@tokc=\toks29
|
||||
\pgf@sys@id@count=\count269
|
||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg
|
||||
File: pgf.cfg 2020/01/08 v3.1.5b (3.1.5b)
|
||||
)
|
||||
Driver file for pgf: pgfsys-pdftex.def
|
||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def
|
||||
File: pgfsys-pdftex.def 2020/01/08 v3.1.5b (3.1.5b)
|
||||
(/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def
|
||||
File: pgfsys-common-pdf.def 2020/01/08 v3.1.5b (3.1.5b)
|
||||
))) (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex
|
||||
File: pgfsyssoftpath.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
\pgfsyssoftpath@smallbuffer@items=\count270
|
||||
\pgfsyssoftpath@bigbuffer@items=\count271
|
||||
) (/usr/share/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex
|
||||
File: pgfsysprotocol.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
)) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex
|
||||
Package: pgfcore 2020/01/08 v3.1.5b (3.1.5b)
|
||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex
|
||||
\pgfmath@dimen=\dimen163
|
||||
\pgfmath@count=\count272
|
||||
\pgfmath@box=\box48
|
||||
\pgfmath@toks=\toks30
|
||||
\pgfmath@stack@operand=\toks31
|
||||
\pgfmath@stack@operation=\toks32
|
||||
) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonometric.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerarithmetics.code.tex))) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex
|
||||
\c@pgfmathroundto@lastzeros=\count273
|
||||
)) (/usr/share/texmf-dist/tex/generic/pgf/math/pgfint.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex
|
||||
File: pgfcorepoints.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
\pgf@picminx=\dimen164
|
||||
\pgf@picmaxx=\dimen165
|
||||
\pgf@picminy=\dimen166
|
||||
\pgf@picmaxy=\dimen167
|
||||
\pgf@pathminx=\dimen168
|
||||
\pgf@pathmaxx=\dimen169
|
||||
\pgf@pathminy=\dimen170
|
||||
\pgf@pathmaxy=\dimen171
|
||||
\pgf@xx=\dimen172
|
||||
\pgf@xy=\dimen173
|
||||
\pgf@yx=\dimen174
|
||||
\pgf@yy=\dimen175
|
||||
\pgf@zx=\dimen176
|
||||
\pgf@zy=\dimen177
|
||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex
|
||||
File: pgfcorepathconstruct.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
\pgf@path@lastx=\dimen178
|
||||
\pgf@path@lasty=\dimen179
|
||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex
|
||||
File: pgfcorepathusage.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
\pgf@shorten@end@additional=\dimen180
|
||||
\pgf@shorten@start@additional=\dimen181
|
||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex
|
||||
File: pgfcorescopes.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
\pgfpic=\box49
|
||||
\pgf@hbox=\box50
|
||||
\pgf@layerbox@main=\box51
|
||||
\pgf@picture@serial@count=\count274
|
||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex
|
||||
File: pgfcoregraphicstate.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
\pgflinewidth=\dimen182
|
||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex
|
||||
File: pgfcoretransformations.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
\pgf@pt@x=\dimen183
|
||||
\pgf@pt@y=\dimen184
|
||||
\pgf@pt@temp=\dimen185
|
||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex
|
||||
File: pgfcorequick.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex
|
||||
File: pgfcoreobjects.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex
|
||||
File: pgfcorepathprocessing.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex
|
||||
File: pgfcorearrows.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
\pgfarrowsep=\dimen186
|
||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex
|
||||
File: pgfcoreshade.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
\pgf@max=\dimen187
|
||||
\pgf@sys@shading@range@num=\count275
|
||||
\pgf@shadingcount=\count276
|
||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex
|
||||
File: pgfcoreimage.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
(/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code.tex
|
||||
File: pgfcoreexternal.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
\pgfexternal@startupbox=\box52
|
||||
)) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.tex
|
||||
File: pgfcorelayers.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.code.tex
|
||||
File: pgfcoretransparency.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code.tex
|
||||
File: pgfcorepatterns.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
) (/usr/share/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex
|
||||
File: pgfcorerdf.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
))) (/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex
|
||||
File: pgfmoduleshapes.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
\pgfnodeparttextbox=\box53
|
||||
) (/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex
|
||||
File: pgfmoduleplot.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
) (/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65.sty
|
||||
Package: pgfcomp-version-0-65 2020/01/08 v3.1.5b (3.1.5b)
|
||||
\pgf@nodesepstart=\dimen188
|
||||
\pgf@nodesepend=\dimen189
|
||||
) (/usr/share/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18.sty
|
||||
Package: pgfcomp-version-1-18 2020/01/08 v3.1.5b (3.1.5b)
|
||||
)) (/usr/share/texmf-dist/tex/latex/tools/verbatim.sty
|
||||
Package: verbatim 2019/11/10 v1.5r LaTeX2e package for verbatim enhancements
|
||||
\every@verbatim=\toks33
|
||||
\verbatim@line=\toks34
|
||||
\verbatim@in@stream=\read4
|
||||
) (/usr/share/texmf-dist/tex/latex/environ/environ.sty
|
||||
Package: environ 2014/05/04 v0.3 A new way to define environments
|
||||
(/usr/share/texmf-dist/tex/latex/trimspaces/trimspaces.sty
|
||||
Package: trimspaces 2009/09/17 v1.1 Trim spaces around a token list
|
||||
)) (/usr/share/texmf-dist/tex/latex/etoolbox/etoolbox.sty
|
||||
Package: etoolbox 2019/09/21 v2.5h e-TeX tools for LaTeX (JAW)
|
||||
\etb@tempcnta=\count277
|
||||
)
|
||||
\tcb@titlebox=\box54
|
||||
\tcb@upperbox=\box55
|
||||
\tcb@lowerbox=\box56
|
||||
\tcb@phantombox=\box57
|
||||
\c@tcbbreakpart=\count278
|
||||
\c@tcblayer=\count279
|
||||
\c@tcolorbox@number=\count280
|
||||
\tcb@temp=\box58
|
||||
\tcb@temp=\box59
|
||||
\tcb@temp=\box60
|
||||
\tcb@temp=\box61
|
||||
\tcb@out=\write4
|
||||
\tcb@record@out=\write5
|
||||
(/usr/share/texmf-dist/tex/latex/tcolorbox/tcbraster.code.tex
|
||||
Library (tcolorbox): 'tcbraster.code.tex' version '4.30'
|
||||
\c@tcbrastercolumn=\count281
|
||||
\c@tcbrasterrow=\count282
|
||||
\c@tcbraster=\count283
|
||||
) (/usr/share/texmf-dist/tex/latex/tcolorbox/tcbskins.code.tex
|
||||
Library (tcolorbox): 'tcbskins.code.tex' version '4.30'
|
||||
(/usr/share/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty (/usr/share/texmf-dist/tex/latex/pgf/utilities/pgffor.sty (/usr/share/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty (/usr/share/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) (/usr/share/texmf-dist/tex/latex/pgf/math/pgfmath.sty (/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) (/usr/share/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex
|
||||
Package: pgffor 2020/01/08 v3.1.5b (3.1.5b)
|
||||
(/usr/share/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)
|
||||
\pgffor@iter=\dimen190
|
||||
\pgffor@skip=\dimen191
|
||||
\pgffor@stack=\toks35
|
||||
\pgffor@toks=\toks36
|
||||
)) (/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex
|
||||
Package: tikz 2020/01/08 v3.1.5b (3.1.5b)
|
||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers.code.tex
|
||||
File: pgflibraryplothandlers.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
\pgf@plot@mark@count=\count284
|
||||
\pgfplotmarksize=\dimen192
|
||||
)
|
||||
\tikz@lastx=\dimen193
|
||||
\tikz@lasty=\dimen194
|
||||
\tikz@lastxsaved=\dimen195
|
||||
\tikz@lastysaved=\dimen196
|
||||
\tikz@lastmovetox=\dimen197
|
||||
\tikz@lastmovetoy=\dimen198
|
||||
\tikzleveldistance=\dimen199
|
||||
\tikzsiblingdistance=\dimen256
|
||||
\tikz@figbox=\box62
|
||||
\tikz@figbox@bg=\box63
|
||||
\tikz@tempbox=\box64
|
||||
\tikz@tempbox@bg=\box65
|
||||
\tikztreelevel=\count285
|
||||
\tikznumberofchildren=\count286
|
||||
\tikznumberofcurrentchild=\count287
|
||||
\tikz@fig@count=\count288
|
||||
(/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex
|
||||
File: pgfmodulematrix.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
\pgfmatrixcurrentrow=\count289
|
||||
\pgfmatrixcurrentcolumn=\count290
|
||||
\pgf@matrix@numberofcolumns=\count291
|
||||
)
|
||||
\tikz@expandcount=\count292
|
||||
(/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarytopaths.code.tex
|
||||
File: tikzlibrarytopaths.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
)))
|
||||
\tcb@waterbox=\box66
|
||||
(/usr/share/texmf-dist/tex/latex/tcolorbox/tcbskinsjigsaw.code.tex
|
||||
Library (tcolorbox): 'tcbskinsjigsaw.code.tex' version '4.30'
|
||||
)) (/usr/share/texmf-dist/tex/latex/tcolorbox/tcbbreakable.code.tex
|
||||
Library (tcolorbox): 'tcbbreakable.code.tex' version '4.30'
|
||||
\tcb@testbox=\box67
|
||||
\tcb@totalupperbox=\box68
|
||||
\tcb@totallowerbox=\box69
|
||||
) (/usr/share/texmf-dist/tex/latex/tcolorbox/tcbhooks.code.tex
|
||||
Library (tcolorbox): 'tcbhooks.code.tex' version '4.30'
|
||||
) (/usr/share/texmf-dist/tex/latex/tcolorbox/tcbtheorems.code.tex
|
||||
Library (tcolorbox): 'tcbtheorems.code.tex' version '4.30'
|
||||
) (/usr/share/texmf-dist/tex/latex/tcolorbox/tcbfitting.code.tex
|
||||
Library (tcolorbox): 'tcbfitting.code.tex' version '4.30'
|
||||
\tcbfitdim=\dimen257
|
||||
\tcb@lowerfitdim=\dimen258
|
||||
\tcb@upperfitdim=\dimen259
|
||||
\tcb@cur@hbadness=\count293
|
||||
) (/usr/share/texmf-dist/tex/latex/tcolorbox/tcbxparse.code.tex
|
||||
Library (tcolorbox): 'tcbxparse.code.tex' version '4.30'
|
||||
(/usr/share/texmf-dist/tex/latex/l3packages/xparse/xparse.sty (/usr/share/texmf-dist/tex/latex/l3kernel/expl3.sty
|
||||
Package: expl3 2020-06-03 L3 programming layer (loader)
|
||||
(/usr/share/texmf-dist/tex/latex/l3backend/l3backend-pdfmode.def
|
||||
File: l3backend-pdfmode.def 2020-06-03 L3 backend support: PDF mode
|
||||
\l__kernel_color_stack_int=\count294
|
||||
\l__pdf_internal_box=\box70
|
||||
))
|
||||
Package: xparse 2020-05-15 L3 Experimental document command parser
|
||||
(/usr/share/texmf-dist/tex/latex/l3packages/xparse/xparse-generic.tex
|
||||
\l__xparse_current_arg_int=\count295
|
||||
\g__xparse_grabber_int=\count296
|
||||
\l__xparse_m_args_int=\count297
|
||||
\l__xparse_v_nesting_int=\count298
|
||||
)))) (/usr/share/texmf-dist/tex/latex/parskip/parskip.sty
|
||||
Package: parskip 2020-05-19 v2.0e non-zero parskip adjustments
|
||||
) (/usr/share/texmf-dist/tex/latex/was/gensymb.sty
|
||||
Package: gensymb 2003/07/02 v1.0 (WaS)
|
||||
) (/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/lib/geometry.tex (/usr/share/texmf-dist/tex/latex/geometry/geometry.sty
|
||||
Package: geometry 2020/01/02 v5.9 Page Geometry
|
||||
(/usr/share/texmf-dist/tex/generic/iftex/ifvtex.sty
|
||||
Package: ifvtex 2019/10/25 v1.7 ifvtex legacy package. Use iftex instead.
|
||||
)
|
||||
\Gm@cnth=\count299
|
||||
\Gm@cntv=\count300
|
||||
\c@Gm@tempcnt=\count301
|
||||
\Gm@bindingoffset=\dimen260
|
||||
\Gm@wd@mp=\dimen261
|
||||
\Gm@odd@mp=\dimen262
|
||||
\Gm@even@mp=\dimen263
|
||||
\Gm@layoutwidth=\dimen264
|
||||
\Gm@layoutheight=\dimen265
|
||||
\Gm@layouthoffset=\dimen266
|
||||
\Gm@layoutvoffset=\dimen267
|
||||
\Gm@dimlist=\toks37
|
||||
)) (/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/lib/header.tex (/usr/share/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty
|
||||
Package: fancyhdr 2019/01/31 v3.10 Extensive control of page headers and footers
|
||||
\f@nch@headwidth=\skip53
|
||||
\f@nch@O@elh=\skip54
|
||||
\f@nch@O@erh=\skip55
|
||||
\f@nch@O@olh=\skip56
|
||||
\f@nch@O@orh=\skip57
|
||||
\f@nch@O@elf=\skip58
|
||||
\f@nch@O@erf=\skip59
|
||||
\f@nch@O@olf=\skip60
|
||||
\f@nch@O@orf=\skip61
|
||||
) (/usr/share/texmf-dist/tex/latex/titling/titling.sty
|
||||
Package: titling 2009/09/04 v2.1d maketitle typesetting
|
||||
\thanksmarkwidth=\skip62
|
||||
\thanksmargin=\skip63
|
||||
\droptitle=\skip64
|
||||
)) (/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/lib/math.tex (/usr/share/texmf-dist/tex/latex/cancel/cancel.sty
|
||||
Package: cancel 2013/04/12 v2.2 Cancel math terms
|
||||
) (/usr/share/texmf-dist/tex/latex/pgfplots/pgfplots.sty (/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.revision.tex)
|
||||
Package: pgfplots 2020/02/29 v1.17 Data Visualization (1.17)
|
||||
(/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.code.tex (/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscore.code.tex
|
||||
\t@pgfplots@toka=\toks38
|
||||
\t@pgfplots@tokb=\toks39
|
||||
\t@pgfplots@tokc=\toks40
|
||||
\pgfplots@tmpa=\dimen268
|
||||
\c@pgfplots@coordindex=\count302
|
||||
\c@pgfplots@scanlineindex=\count303
|
||||
(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgfplotssysgeneric.code.tex)) (/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgfplotslibrary.code.tex) (/usr/share/texmf-dist/tex/generic/pgfplots/oldpgfcompatib/pgfplotsoldpgfsupp_loader.code.tex (/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryfpu.code.tex)) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.code.tex (/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructure.code.tex) (/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsliststructureext.code.tex) (/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsarray.code.tex
|
||||
\c@pgfplotsarray@tmp=\count304
|
||||
) (/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsmatrix.code.tex) (/usr/share/texmf-dist/tex/generic/pgfplots/numtable/pgfplotstableshared.code.tex
|
||||
\c@pgfplotstable@counta=\count305
|
||||
\t@pgfplotstable@a=\toks41
|
||||
) (/usr/share/texmf-dist/tex/generic/pgfplots/liststructure/pgfplotsdeque.code.tex) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.code.tex (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsbinary.data.code.tex)) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotsutil.verb.code.tex) (/usr/share/texmf-dist/tex/generic/pgfplots/libs/pgflibrarypgfplots.surfshading.code.tex
|
||||
\c@pgfplotslibrarysurf@no=\count306
|
||||
(/usr/share/texmf-dist/tex/generic/pgfplots/sys/pgflibrarypgfplots.surfshading.pgfsys-pdftex.def))) (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolormap.code.tex (/usr/share/texmf-dist/tex/generic/pgfplots/util/pgfplotscolor.code.tex)) (/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsstackedplots.code.tex) (/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsplothandlers.code.tex (/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplothandler.code.tex (/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsmeshplotimage.code.tex))) (/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.scaling.code.tex) (/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotscoordprocessing.code.tex) (/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.errorbars.code.tex) (/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.markers.code.tex) (/usr/share/texmf-dist/tex/generic/pgfplots/pgfplotsticks.code.tex) (/usr/share/texmf-dist/tex/generic/pgfplots/pgfplots.paths.code.tex) (/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.code.tex (/usr/share/texmf-dist/tex/generic/pgf/modules/pgfmoduledecorations.code.tex
|
||||
\pgfdecoratedcompleteddistance=\dimen269
|
||||
\pgfdecoratedremainingdistance=\dimen270
|
||||
\pgfdecoratedinputsegmentcompleteddistance=\dimen271
|
||||
\pgfdecoratedinputsegmentremainingdistance=\dimen272
|
||||
\pgf@decorate@distancetomove=\dimen273
|
||||
\pgf@decorate@repeatstate=\count307
|
||||
\pgfdecorationsegmentamplitude=\dimen274
|
||||
\pgfdecorationsegmentlength=\dimen275
|
||||
)
|
||||
\tikz@lib@dec@box=\box71
|
||||
) (/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathmorphing.code.tex (/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathmorphing.code.tex)) (/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibrarydecorations.pathreplacing.code.tex (/usr/share/texmf-dist/tex/generic/pgf/libraries/decorations/pgflibrarydecorations.pathreplacing.code.tex))
|
||||
\pgfplots@numplots=\count308
|
||||
\pgfplots@xmin@reg=\dimen276
|
||||
\pgfplots@xmax@reg=\dimen277
|
||||
\pgfplots@ymin@reg=\dimen278
|
||||
\pgfplots@ymax@reg=\dimen279
|
||||
\pgfplots@zmin@reg=\dimen280
|
||||
\pgfplots@zmax@reg=\dimen281
|
||||
) (/usr/share/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tikzlibraryplotmarks.code.tex
|
||||
File: tikzlibraryplotmarks.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
(/usr/share/texmf-dist/tex/generic/pgf/libraries/pgflibraryplotmarks.code.tex
|
||||
File: pgflibraryplotmarks.code.tex 2020/01/08 v3.1.5b (3.1.5b)
|
||||
))) (/usr/share/texmf-dist/tex/latex/enumitem/enumitem.sty
|
||||
Package: enumitem 2019/06/20 v3.9 Customized lists
|
||||
\labelindent=\skip65
|
||||
\enit@outerparindent=\dimen282
|
||||
\enit@toks=\toks42
|
||||
\enit@inbox=\box72
|
||||
\enit@count@id=\count309
|
||||
\enitdp@description=\count310
|
||||
))
|
||||
Package hyperref Info: Option `colorlinks' set `true' on input line 24.
|
||||
(/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/lib/titling.tex) (/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.aux)
|
||||
LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 33.
|
||||
LaTeX Font Info: ... okay on input line 33.
|
||||
LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 33.
|
||||
LaTeX Font Info: ... okay on input line 33.
|
||||
LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 33.
|
||||
LaTeX Font Info: ... okay on input line 33.
|
||||
LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 33.
|
||||
LaTeX Font Info: ... okay on input line 33.
|
||||
LaTeX Font Info: Checking defaults for TS1/cmr/m/n on input line 33.
|
||||
LaTeX Font Info: ... okay on input line 33.
|
||||
LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 33.
|
||||
LaTeX Font Info: ... okay on input line 33.
|
||||
LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 33.
|
||||
LaTeX Font Info: ... okay on input line 33.
|
||||
LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 33.
|
||||
LaTeX Font Info: ... okay on input line 33.
|
||||
\AtBeginShipoutBox=\box73
|
||||
Package hyperref Info: Link coloring ON on input line 33.
|
||||
(/usr/share/texmf-dist/tex/latex/hyperref/nameref.sty
|
||||
Package: nameref 2019/09/16 v2.46 Cross-referencing by name of section
|
||||
(/usr/share/texmf-dist/tex/latex/refcount/refcount.sty
|
||||
Package: refcount 2019/12/15 v3.6 Data extraction from label references (HO)
|
||||
) (/usr/share/texmf-dist/tex/generic/gettitlestring/gettitlestring.sty
|
||||
Package: gettitlestring 2019/12/15 v1.6 Cleanup title references (HO)
|
||||
)
|
||||
\c@section@level=\count311
|
||||
)
|
||||
LaTeX Info: Redefining \ref on input line 33.
|
||||
LaTeX Info: Redefining \pageref on input line 33.
|
||||
LaTeX Info: Redefining \nameref on input line 33.
|
||||
(/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.out) (/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.out)
|
||||
\@outlinefile=\write6
|
||||
(/usr/share/texmf-dist/tex/context/base/mkii/supp-pdf.mkii
|
||||
[Loading MPS to PDF converter (version 2006.09.02).]
|
||||
\scratchcounter=\count312
|
||||
\scratchdimen=\dimen283
|
||||
\scratchbox=\box74
|
||||
\nofMPsegments=\count313
|
||||
\nofMParguments=\count314
|
||||
\everyMPshowfont=\toks43
|
||||
\MPscratchCnt=\count315
|
||||
\MPscratchDim=\dimen284
|
||||
\MPnumerator=\count316
|
||||
\makeMPintoPDFobject=\count317
|
||||
\everyMPtoPDFconversion=\toks44
|
||||
) (/usr/share/texmf-dist/tex/latex/epstopdf-pkg/epstopdf-base.sty
|
||||
Package: epstopdf-base 2020-01-24 v2.11 Base part for package epstopdf
|
||||
Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 485.
|
||||
(/usr/share/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg
|
||||
File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Live
|
||||
)) ABD: EveryShipout initializing macros
|
||||
LaTeX Info: Redefining \celsius on input line 33.
|
||||
Package gensymb Info: Faking symbols for \degree and \celsius on input line 33.
|
||||
|
||||
|
||||
Package gensymb Warning: Not defining \perthousand.
|
||||
|
||||
LaTeX Info: Redefining \ohm on input line 33.
|
||||
Package gensymb Info: Using \Omega for \ohm on input line 33.
|
||||
|
||||
Package gensymb Warning: Not defining \micro.
|
||||
|
||||
*geometry* driver: auto-detecting
|
||||
*geometry* detected driver: pdftex
|
||||
*geometry* verbose mode - [ preamble ] result:
|
||||
* driver: pdftex
|
||||
* paper: a4paper
|
||||
* layout: <same size as paper>
|
||||
* layoutoffset:(h,v)=(0.0pt,0.0pt)
|
||||
* modes:
|
||||
* h-part:(L,W,R)=(85.35826pt, 426.79135pt, 85.35826pt)
|
||||
* v-part:(T,H,B)=(85.35826pt, 702.78308pt, 56.9055pt)
|
||||
* \paperwidth=597.50787pt
|
||||
* \paperheight=845.04684pt
|
||||
* \textwidth=426.79135pt
|
||||
* \textheight=702.78308pt
|
||||
* \oddsidemargin=13.08827pt
|
||||
* \evensidemargin=13.08827pt
|
||||
* \topmargin=-23.91173pt
|
||||
* \headheight=12.0pt
|
||||
* \headsep=25.0pt
|
||||
* \topskip=10.0pt
|
||||
* \footskip=30.0pt
|
||||
* \marginparwidth=65.0pt
|
||||
* \marginparsep=11.0pt
|
||||
* \columnsep=10.0pt
|
||||
* \skip\footins=9.0pt plus 4.0pt minus 2.0pt
|
||||
* \hoffset=0.0pt
|
||||
* \voffset=0.0pt
|
||||
* \mag=1000
|
||||
* \@twocolumnfalse
|
||||
* \@twosidefalse
|
||||
* \@mparswitchfalse
|
||||
* \@reversemarginfalse
|
||||
* (1in=72.27pt=25.4mm, 1cm=28.453pt)
|
||||
|
||||
Package pgfplots notification 'compat/show suggested version=true': document has been generated with the most recent feature set (\pgfplotsset{compat=1.17}).
|
||||
|
||||
<lib/ntnu_alt_versjon_uten_slagord.pdf, id=91, 44.26768pt x 59.29051pt>
|
||||
File: lib/ntnu_alt_versjon_uten_slagord.pdf Graphic file (type pdf)
|
||||
<use lib/ntnu_alt_versjon_uten_slagord.pdf>
|
||||
Package pdftex.def Info: lib/ntnu_alt_versjon_uten_slagord.pdf used on input line 36.
|
||||
(pdftex.def) Requested size: 53.12093pt x 71.14822pt.
|
||||
|
||||
Overfull \hbox (10.4392pt too wide) in paragraph at lines 36--36
|
||||
[][]
|
||||
[]
|
||||
|
||||
(/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.toc)
|
||||
\tf@toc=\write7
|
||||
[1
|
||||
|
||||
{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map} </home/h7x4/Dropbox/university/projects/math/assignments/oeving1/lib/ntnu_alt_versjon_uten_slagord.pdf>] (/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/tasks/1.tex) (/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/tasks/2.tex) (/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/tasks/3.tex [2]) (/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/tasks/4.tex [3] [4]) [5] (/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/tasks/5.tex (/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/figures/5a.tex)
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no o in font nullfont!
|
||||
Missing character: There is no l in font nullfont!
|
||||
Missing character: There is no b in font nullfont!
|
||||
Missing character: There is no a in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no k in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no o in font nullfont!
|
||||
Missing character: There is no l in font nullfont!
|
||||
Missing character: There is no b in font nullfont!
|
||||
Missing character: There is no a in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no k in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no o in font nullfont!
|
||||
Missing character: There is no l in font nullfont!
|
||||
Missing character: There is no b in font nullfont!
|
||||
Missing character: There is no a in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no k in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no o in font nullfont!
|
||||
Missing character: There is no l in font nullfont!
|
||||
Missing character: There is no b in font nullfont!
|
||||
Missing character: There is no a in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no k in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no o in font nullfont!
|
||||
Missing character: There is no l in font nullfont!
|
||||
Missing character: There is no b in font nullfont!
|
||||
Missing character: There is no a in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no k in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no o in font nullfont!
|
||||
Missing character: There is no l in font nullfont!
|
||||
Missing character: There is no b in font nullfont!
|
||||
Missing character: There is no a in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no k in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no o in font nullfont!
|
||||
Missing character: There is no l in font nullfont!
|
||||
Missing character: There is no b in font nullfont!
|
||||
Missing character: There is no a in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no k in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no o in font nullfont!
|
||||
Missing character: There is no l in font nullfont!
|
||||
Missing character: There is no b in font nullfont!
|
||||
Missing character: There is no a in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no k in font nullfont!
|
||||
(/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/figures/5b.tex)
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no o in font nullfont!
|
||||
Missing character: There is no l in font nullfont!
|
||||
Missing character: There is no b in font nullfont!
|
||||
Missing character: There is no a in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no k in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no o in font nullfont!
|
||||
Missing character: There is no l in font nullfont!
|
||||
Missing character: There is no b in font nullfont!
|
||||
Missing character: There is no a in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no k in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no o in font nullfont!
|
||||
Missing character: There is no l in font nullfont!
|
||||
Missing character: There is no b in font nullfont!
|
||||
Missing character: There is no a in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no k in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no o in font nullfont!
|
||||
Missing character: There is no l in font nullfont!
|
||||
Missing character: There is no b in font nullfont!
|
||||
Missing character: There is no a in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no k in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no o in font nullfont!
|
||||
Missing character: There is no l in font nullfont!
|
||||
Missing character: There is no b in font nullfont!
|
||||
Missing character: There is no a in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no k in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no o in font nullfont!
|
||||
Missing character: There is no l in font nullfont!
|
||||
Missing character: There is no b in font nullfont!
|
||||
Missing character: There is no a in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no k in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no o in font nullfont!
|
||||
Missing character: There is no l in font nullfont!
|
||||
Missing character: There is no b in font nullfont!
|
||||
Missing character: There is no a in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no k in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no o in font nullfont!
|
||||
Missing character: There is no l in font nullfont!
|
||||
Missing character: There is no b in font nullfont!
|
||||
Missing character: There is no a in font nullfont!
|
||||
Missing character: There is no c in font nullfont!
|
||||
Missing character: There is no k in font nullfont!
|
||||
[6]) [7]
|
||||
Package atveryend Info: Empty hook `BeforeClearDocument' on input line 73.
|
||||
Package atveryend Info: Empty hook `AfterLastShipout' on input line 73.
|
||||
(/home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.aux)
|
||||
Package atveryend Info: Executing hook `AtVeryEndDocument' on input line 73.
|
||||
Package atveryend Info: Executing hook `AtEndAfterFileList' on input line 73.
|
||||
Package rerunfilecheck Info: File `main.out' has not changed.
|
||||
(rerunfilecheck) Checksum: 9CCBD48EB13C756CA934BC6DB9DD2674;963.
|
||||
Package atveryend Info: Empty hook `AtVeryVeryEnd' on input line 73.
|
||||
)
|
||||
Here is how much of TeX's memory you used:
|
||||
32741 strings out of 480478
|
||||
800038 string characters out of 5905959
|
||||
1254772 words of memory out of 5000000
|
||||
48172 multiletter control sequences out of 15000+600000
|
||||
534303 words of font info for 31 fonts, out of 8000000 for 9000
|
||||
1141 hyphenation exceptions out of 8191
|
||||
79i,19n,136p,1008b,2635s stack positions out of 5000i,500n,10000p,200000b,80000s
|
||||
</usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx10.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi7.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr10.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr7.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy7.pfb></usr/share/texmf-dist/fonts/type1/public/amsfonts/latxfont/line10.pfb>
|
||||
Output written on /home/h7x4/Dropbox/university/projects/math/assignments/oeving1/main.pdf (7 pages, 848069 bytes).
|
||||
PDF statistics:
|
||||
224 PDF objects out of 1000 (max. 8388607)
|
||||
187 compressed objects within 2 object streams
|
||||
30 named destinations out of 1000 (max. 500000)
|
||||
186 words of extra memory for PDF output out of 10000 (max. 10000000)
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
\BOOKMARK [1][-]{section.1}{Forberedende oppgaver}{}% 1
|
||||
\BOOKMARK [2][-]{Item.1}{Oppgave 1}{section.1}% 2
|
||||
\BOOKMARK [3][-]{Item.2}{a\)}{Item.1}% 3
|
||||
\BOOKMARK [3][-]{Item.3}{b\)}{Item.1}% 4
|
||||
\BOOKMARK [3][-]{Item.4}{c\)}{Item.1}% 5
|
||||
\BOOKMARK [2][-]{Item.5}{Oppgave 2}{section.1}% 6
|
||||
\BOOKMARK [1][-]{section.2}{Innleveringsoppgaver}{}% 7
|
||||
\BOOKMARK [2][-]{Item.6}{Oppgave 3}{section.2}% 8
|
||||
\BOOKMARK [3][-]{Item.7}{a\)}{Item.6}% 9
|
||||
\BOOKMARK [3][-]{Item.8}{b\)}{Item.6}% 10
|
||||
\BOOKMARK [3][-]{Item.9}{c\)}{Item.6}% 11
|
||||
\BOOKMARK [3][-]{Item.10}{d\)}{Item.6}% 12
|
||||
\BOOKMARK [3][-]{Item.11}{e\)}{Item.6}% 13
|
||||
\BOOKMARK [2][-]{Item.12}{Oppgave 4}{section.2}% 14
|
||||
\BOOKMARK [3][-]{Item.13}{a\)}{Item.12}% 15
|
||||
\BOOKMARK [3][-]{Item.14}{b\)}{Item.12}% 16
|
||||
\BOOKMARK [3][-]{Item.15}{c\)}{Item.12}% 17
|
||||
\BOOKMARK [3][-]{Item.16}{d\)}{Item.12}% 18
|
||||
\BOOKMARK [2][-]{Item.17}{Oppgave 5}{section.2}% 19
|
||||
\BOOKMARK [3][-]{Item.18}{a\)}{Item.17}% 20
|
||||
\BOOKMARK [3][-]{Item.19}{b\)}{Item.17}% 21
|
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,73 @@
|
|||
\documentclass{article}
|
||||
|
||||
\usepackage[norsk]{babel}
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage{hyperref}
|
||||
\usepackage{xcolor}
|
||||
\usepackage[fleqn]{amsmath}
|
||||
\usepackage[many]{tcolorbox}
|
||||
\usepackage{graphicx}
|
||||
\usepackage{parskip}
|
||||
\usepackage{gensymb}
|
||||
|
||||
\definecolor{ntnublue}{RGB}{0,80,158}
|
||||
|
||||
\input{lib/geometry.tex}
|
||||
\input{lib/header.tex}
|
||||
\input{lib/math.tex}
|
||||
|
||||
\hypersetup{
|
||||
colorlinks=true,
|
||||
linkcolor=blue,
|
||||
filecolor=magenta,
|
||||
urlcolor=blue,
|
||||
}
|
||||
|
||||
\pgfplotsset{compat=newest}
|
||||
|
||||
\author{Øystein Tveit}
|
||||
\title{MA0001 Øving 1}
|
||||
|
||||
\input{lib/titling.tex}
|
||||
|
||||
\begin{document}
|
||||
|
||||
\thispagestyle{plain}
|
||||
\tittel
|
||||
\tableofcontents
|
||||
|
||||
\newpage
|
||||
|
||||
\section{Forberedende oppgaver}
|
||||
|
||||
\begin{oppgaver}
|
||||
|
||||
\oppg
|
||||
\input{tasks/1.tex}
|
||||
|
||||
\oppg
|
||||
\input{tasks/2.tex}
|
||||
|
||||
\end{oppgaver}
|
||||
|
||||
\section{Innleveringsoppgaver}
|
||||
|
||||
\begin{oppgaver}
|
||||
\setoppg{2}
|
||||
|
||||
\oppg
|
||||
\input{tasks/3.tex}
|
||||
|
||||
\oppg
|
||||
\input{tasks/4.tex}
|
||||
|
||||
\break
|
||||
|
||||
\oppg
|
||||
\input{tasks/5.tex}
|
||||
|
||||
\end{oppgaver}
|
||||
|
||||
|
||||
|
||||
\end{document}
|
|
@ -0,0 +1,22 @@
|
|||
\babel@toc {norsk}{}
|
||||
\contentsline {section}{\numberline {1}Forberedende oppgaver}{2}{section.1}%
|
||||
\contentsline {subsection}{Oppgave 1}{2}{Item.1}%
|
||||
\contentsline {subsubsection}{a)}{2}{Item.2}%
|
||||
\contentsline {subsubsection}{b)}{2}{Item.3}%
|
||||
\contentsline {subsubsection}{c)}{2}{Item.4}%
|
||||
\contentsline {subsection}{Oppgave 2}{2}{Item.5}%
|
||||
\contentsline {section}{\numberline {2}Innleveringsoppgaver}{2}{section.2}%
|
||||
\contentsline {subsection}{Oppgave 3}{2}{Item.6}%
|
||||
\contentsline {subsubsection}{a)}{2}{Item.7}%
|
||||
\contentsline {subsubsection}{b)}{2}{Item.8}%
|
||||
\contentsline {subsubsection}{c)}{3}{Item.9}%
|
||||
\contentsline {subsubsection}{d)}{3}{Item.10}%
|
||||
\contentsline {subsubsection}{e)}{3}{Item.11}%
|
||||
\contentsline {subsection}{Oppgave 4}{3}{Item.12}%
|
||||
\contentsline {subsubsection}{a)}{3}{Item.13}%
|
||||
\contentsline {subsubsection}{b)}{3}{Item.14}%
|
||||
\contentsline {subsubsection}{c)}{4}{Item.15}%
|
||||
\contentsline {subsubsection}{d)}{4}{Item.16}%
|
||||
\contentsline {subsection}{Oppgave 5}{6}{Item.17}%
|
||||
\contentsline {subsubsection}{a)}{6}{Item.18}%
|
||||
\contentsline {subsubsection}{b)}{6}{Item.19}%
|
|
@ -0,0 +1,14 @@
|
|||
|
||||
\newcommand*\rfrac[2]{{}^{#1}\!/_{#2}}
|
||||
\begin{deloppgaver}
|
||||
|
||||
\delo
|
||||
\[ -135\degree \cdot \frac{\pi}{180\degree} \approx -2.35 \]
|
||||
|
||||
\delo
|
||||
\[ 1,5\pi \cdot \frac{180\degree}{\pi} = 270\deg \]
|
||||
|
||||
\delo
|
||||
\[ sin\left( \frac{-\pi}{2} \right) = -1\]
|
||||
|
||||
\end{deloppgaver}
|
|
@ -0,0 +1,43 @@
|
|||
\begin{deloppgaver}
|
||||
|
||||
\delo
|
||||
\begin{alignat*}{4}
|
||||
& 1^{-1} &&+ 2^{-1} &&+ 3^{-1} \\[1ex]
|
||||
& \frac{1}{1} &&+ \frac{1}{2} &&+ \frac{1}{3} \\[2ex]
|
||||
& \frac{6}{6} &&+ \frac{3}{6} &&+ \frac{2}{6} & \qquad \text{Største felles divisor er 6} \\[2ex]
|
||||
& \frac{11}{6} \\
|
||||
\end{alignat*}
|
||||
|
||||
\delo
|
||||
\begin{align*}
|
||||
& x^{-7} x^{6} \\
|
||||
& x^{-7+6} \\
|
||||
& x^{-1} \\
|
||||
& \frac{1}{x}
|
||||
\end{align*}
|
||||
|
||||
\delo
|
||||
\begin{align*}
|
||||
& \frac{ \left ( x^2 y z^3 \right )^2 }{ x^4 y^3 z^5 } \\[2ex]
|
||||
& \frac{ x^4 y^2 z^6 }{ x^4 y^3 z^5 } \\[2ex]
|
||||
& x^{4-4} y^{2-3} z^{6-5} \\
|
||||
& x^0 y^{-1} z^1 \\[2ex]
|
||||
& \frac{z}{y} \\
|
||||
\end{align*}
|
||||
|
||||
\delo
|
||||
\begin{align*}
|
||||
& \frac{ e^{z-x} }{ e^x e^z} \\[2ex]
|
||||
& \frac{ \cancel{e^z} }{ e^{x+x} \cancel{e^z} } \\[2ex]
|
||||
& \frac{1}{e^{2x}} \\
|
||||
\end{align*}
|
||||
|
||||
\delo
|
||||
\begin{align*}
|
||||
& \frac{ z^2 - y^2 }{ z+y } \\[2ex]
|
||||
& \frac{ (z+y)(z-y) }{ z+y } && \text{3. Kvadratsetning} \\[2ex]
|
||||
& \frac{ \cancel{(z+y)}(z-y) }{ \cancel{z+y} } \\[2ex]
|
||||
& z-y
|
||||
\end{align*}
|
||||
|
||||
\end{deloppgaver}
|
|
@ -0,0 +1,20 @@
|
|||
\relax
|
||||
\@setckpt{tasks/3.tex}{
|
||||
\setcounter{page}{3}
|
||||
\setcounter{equation}{0}
|
||||
\setcounter{enumi}{3}
|
||||
\setcounter{enumii}{0}
|
||||
\setcounter{enumiii}{0}
|
||||
\setcounter{enumiv}{0}
|
||||
\setcounter{footnote}{0}
|
||||
\setcounter{mpfootnote}{0}
|
||||
\setcounter{part}{0}
|
||||
\setcounter{section}{0}
|
||||
\setcounter{subsection}{0}
|
||||
\setcounter{subsubsection}{0}
|
||||
\setcounter{paragraph}{0}
|
||||
\setcounter{subparagraph}{0}
|
||||
\setcounter{figure}{0}
|
||||
\setcounter{table}{0}
|
||||
\setcounter{parentequation}{0}
|
||||
}
|
|
@ -0,0 +1,70 @@
|
|||
\begin{deloppgaver}
|
||||
|
||||
\delo
|
||||
\begin{align*}
|
||||
3+2x &= 2-x\\
|
||||
\cancel{3} +2x -\cancel{3} +x &= 2 -\cancel{x} -3 +\cancel{x} \\
|
||||
3x &= -1\\
|
||||
x &= -\frac{1}{3}\\
|
||||
\end{align*}
|
||||
|
||||
\delo
|
||||
\begin{align*}
|
||||
x^2 + x &= 3 \\
|
||||
x^2 + x - 3 &= 0 \\
|
||||
\end{align*}
|
||||
|
||||
Vi bruker andregradsformelen:
|
||||
\begin{equation*}
|
||||
x = \frac{-b \pm \sqrt{ b^2 - 4ac }}{ 2a }
|
||||
\end{equation*}
|
||||
|
||||
\begin{align*}
|
||||
x &= \frac{-1 \pm \sqrt{1^2 - 4 \cdot 1 \cdot -3}}{ 2 \cdot 1} \\[2ex]
|
||||
x &= \frac{-1 \pm \sqrt{1 - (-12)}}{2} \\[2ex]
|
||||
x &= -\frac{1}{2} \pm \frac{\sqrt{13}}{2}
|
||||
\end{align*}
|
||||
|
||||
\begin{equation*}
|
||||
x = -\frac{1}{2} + \frac{\sqrt{13}}{2} \quad \vee \quad x = -\frac{1}{2} - \frac{\sqrt{13}}{2}
|
||||
\end{equation*}
|
||||
|
||||
\delo
|
||||
\begin{align*}
|
||||
-x \left( x+2 \right) \left( 5x-4 \right) = 0 \\
|
||||
\end{align*}
|
||||
|
||||
Etter nullfaktorregelen må en av faktorene være 0 for at produktet skal bli 0.
|
||||
|
||||
\begin{align*}
|
||||
-x &= 0 &&\vee& x+2 &= 0 &&\vee& 5x-4 &=0 \\
|
||||
x &= 0 &&\vee& x &= -2 &&\vee& x &= \frac{4}{5} \\
|
||||
\end{align*}
|
||||
|
||||
\delo
|
||||
\begin{align*}
|
||||
\frac{x}{x+1} &= \frac{1}{3} + \frac{x-1}{3} \\[2ex]
|
||||
\frac{x}{x+1} &= \frac{x}{3} \\[2ex]
|
||||
\frac{3 \cdot x}{3 \cdot (x+1)} &= \frac{(x+1) \cdot x}{(x+1) \cdot 3} \\[2ex]
|
||||
\frac{3x - x(x+1)}{3(x+1)} &= 0 \\[2ex]
|
||||
\frac{x(3 - (x+1))}{3(x+1)} &= 0 \\[2ex]
|
||||
\frac{x(-x+2)}{3(x+1)} &= 0 \\[2ex]
|
||||
\end{align*}
|
||||
|
||||
Telleren må være 0 for at hele uttrykket skal bli 0, men x-verdien er ikke en gyldig løsning når nevner også blir 0. Vi deler opp telleren etter nullfaktorregelen:
|
||||
|
||||
\begin{align*}
|
||||
x &= 0 &&\vee& -x+2 &= 0 \\
|
||||
x &= 0 &&\vee& x &= 2 \\
|
||||
\end{align*}
|
||||
|
||||
Om vi løser for nevneren:
|
||||
|
||||
\begin{equation*}
|
||||
3(x+1) = 0 \rightarrow x=-1
|
||||
\end{equation*}
|
||||
|
||||
så ser vi at begge løsningene er gyldige.
|
||||
|
||||
|
||||
\end{deloppgaver}
|
|
@ -0,0 +1,20 @@
|
|||
\relax
|
||||
\@setckpt{tasks/4.tex}{
|
||||
\setcounter{page}{4}
|
||||
\setcounter{equation}{0}
|
||||
\setcounter{enumi}{4}
|
||||
\setcounter{enumii}{0}
|
||||
\setcounter{enumiii}{0}
|
||||
\setcounter{enumiv}{0}
|
||||
\setcounter{footnote}{0}
|
||||
\setcounter{mpfootnote}{0}
|
||||
\setcounter{part}{0}
|
||||
\setcounter{section}{0}
|
||||
\setcounter{subsection}{0}
|
||||
\setcounter{subsubsection}{0}
|
||||
\setcounter{paragraph}{0}
|
||||
\setcounter{subparagraph}{0}
|
||||
\setcounter{figure}{0}
|
||||
\setcounter{table}{0}
|
||||
\setcounter{parentequation}{0}
|
||||
}
|
|
@ -0,0 +1,47 @@
|
|||
\begin{deloppgaver}
|
||||
|
||||
\delo
|
||||
\begin{align*}
|
||||
y&=3-x \\
|
||||
y&=x-1
|
||||
\end{align*}
|
||||
|
||||
Ettersom utrykkene er rette linjer, vil de ha samme y-verdi på kun ett punkt:
|
||||
|
||||
\begin{align*}
|
||||
3-x &= x-1 \\
|
||||
2x &= 4 \\
|
||||
x = 2
|
||||
\end{align*}
|
||||
|
||||
Vi setter x-verdien i ett av uttrykkene og får at
|
||||
|
||||
\begin{align*}
|
||||
y &= 3-2 = 1
|
||||
\end{align*}
|
||||
|
||||
Linjene møtes i $(2, 1)$
|
||||
|
||||
Linjene har stigningstallene 1 og -1, og vi kan skissere dem ut ifra skjæringspunktet.
|
||||
|
||||
\begin{graphbox}
|
||||
\input{figures/5a.tex}
|
||||
\end{graphbox}
|
||||
|
||||
\delo
|
||||
Ettersom absoluttverdien av et uttrykk ikke kan bli mindre enn null, vil $|x-2|+1$ aldri være mindre enn 1. Dette skjer når
|
||||
|
||||
\begin{align*}
|
||||
|x-2| &= 0 \\
|
||||
x-2 &= \pm 0 \\
|
||||
x &= 2
|
||||
\end{align*}
|
||||
|
||||
Dermed vender stigningsfarta fra -1 til 1 i punktet $(2, 1)$.
|
||||
|
||||
Vi kan skissere grafen fra dette punktet.
|
||||
\begin{graphbox}
|
||||
\input{figures/5b.tex}
|
||||
\end{graphbox}
|
||||
|
||||
\end{deloppgaver}
|
Loading…
Reference in New Issue