diff --git a/.gitignore b/.gitignore index e714521..f20680e 100644 --- a/.gitignore +++ b/.gitignore @@ -47,3 +47,6 @@ superconductivity_assignment1_kvkempen.pdf # Assignment 2 superconductivity_assignment2_kvkempen.pdf + +# Assignment 3 +superconductivity_assignment3_kvkempen.pdf diff --git a/makefile b/makefile index e2036ee..57cf557 100644 --- a/makefile +++ b/makefile @@ -6,3 +6,6 @@ ass1: ass2: latexmk -xelatex superconductivity_assignment2_kvkempen + +ass3: + latexmk -xelatex superconductivity_assignment3_kvkempen diff --git a/superconductivity_assignment3_kvkempen.tex b/superconductivity_assignment3_kvkempen.tex new file mode 100755 index 0000000..792346e --- /dev/null +++ b/superconductivity_assignment3_kvkempen.tex @@ -0,0 +1,66 @@ +\documentclass[a4paper, 11pt]{article} +\usepackage[utf8]{inputenc} + +\usepackage[ + a4paper, + headheight = 20pt, + margin = 1in, + tmargin = \dimexpr 1in - 10pt \relax +]{geometry} + +\usepackage{fancyhdr} % for headers and footers +\usepackage{graphicx} % for including figures +\usepackage{booktabs} % for professional tables +\setlength{\headheight}{14pt} + + +\fancypagestyle{plain}{ + \fancyhf{} + \fancyhead[L]{\sffamily Radboud University Nijmegen} + \fancyhead[R]{\sffamily Superconductivity (NWI-NM117), Q3+Q4} + \fancyfoot[R]{\sffamily\bfseries\thepage} + \renewcommand{\headrulewidth}{0.5pt} + \renewcommand{\footrulewidth}{0.5pt} +} +\pagestyle{fancy} + +\usepackage{siunitx} +\usepackage{hyperref} +\usepackage{float} +\usepackage{mathtools} +\usepackage{amsmath} +\usepackage{todonotes} +\setuptodonotes{inline} +\usepackage{mhchem} + +\newcommand{\pfrac}[2]{\frac{\partial #1}{\partial #2}} + +\title{Superconductivity - Assignment 3} +\author{ + Kees van Kempen (s4853628)\\ + \texttt{k.vankempen@student.science.ru.nl} +} +\AtBeginDocument{\maketitle} + +% Start from 8 +\setcounter{section}{7} + +\begin{document} + +\section{\ce{Nb3Sn} cylinder} + +\section{Superconducting wire} + +\section{Fine type-II superconducting wire} + +\section{Critical currents} + +\section{A weak junction} + + +\bibliographystyle{vancouver} +\bibliography{references.bib} + +%\appendix + +\end{document}