diff --git a/.gitignore b/.gitignore index 0dbc976..e714521 100644 --- a/.gitignore +++ b/.gitignore @@ -44,3 +44,6 @@ # Assignment 1 sc_elements.pdf superconductivity_assignment1_kvkempen.pdf + +# Assignment 2 +superconductivity_assignment2_kvkempen.pdf diff --git a/makefile b/makefile index 53cd6de..e2036ee 100644 --- a/makefile +++ b/makefile @@ -3,3 +3,6 @@ ass1: ./sc_elements.py latexmk -xelatex superconductivity_assignment1_kvkempen + +ass2: + latexmk -xelatex superconductivity_assignment2_kvkempen diff --git a/superconductivity_assignment2_kvkempen.pdf b/superconductivity_assignment2_kvkempen.pdf new file mode 100644 index 0000000..f7a9e49 Binary files /dev/null and b/superconductivity_assignment2_kvkempen.pdf differ diff --git a/superconductivity_assignment2_kvkempen.tex b/superconductivity_assignment2_kvkempen.tex new file mode 100755 index 0000000..88290df --- /dev/null +++ b/superconductivity_assignment2_kvkempen.tex @@ -0,0 +1,57 @@ +\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} + +\title{Superconductivity - Assignment 2} +\author{ + Kees van Kempen (s4853628)\\ + \texttt{k.vankempen@student.science.ru.nl} +} +\AtBeginDocument{\maketitle} + +% Start from 4 +\setcounter{section}{3} + +\begin{document} + +\section{Temperature dependence in Ginzburg-Landau model} + +\section{Type-I superconducting foil} + +\section{Type II superconductors and the vortex lattice} + +\section{Currents inside type-II superconducting cylinder} + +\bibliographystyle{vancouver} +\bibliography{references.bib} + +%\appendix + +\end{document}