Skip to content
Snippets Groups Projects
Commit 315a1747 authored by Stefan Gehr's avatar Stefan Gehr
Browse files

initial commit

parents
No related branches found
No related tags found
No related merge requests found
Pipeline #94499 failed
/build
/src/*
!/src/*.tex
!/src/*.bib
stages:
- build
compile_pdf:
image: aergus/latex
script:
- make
stage: build
artifacts:
expire_in: 2 weeks
paths:
- "build/qmc-loop-algorithm-report.pdf"
[submodule "fau-beamer"]
path = fau-beamer
url = https://github.com/FAU-AMMN/fau-beamer.git
Makefile 0 → 100644
.PHONY: clean show default
name=qmc-loop-algorithm-report
refs=src/references.bib
default: build/$(name).pdf
build/$(name).pdf: src/$(name).tex $(refs) fau-beamer/styles/beamerthemefau.sty
mkdir -p build
find fau-beamer/* -maxdepth 0 -type d -execdir ln -rsf "{}" ../build \;
cp $(refs) build
latexmk -pdf -output-directory=build src/$(name).tex
clean:
rm -rf build
find src/ ! -name src ! -name $(name).tex ! -name *.bib ! -exec rm -rf {} +
show: build/$(name).pdf
xdg-open build/$(name).pdf
# QMC Loop Algorithm Report
This is my presentation about the Quantum Monte Carlo Loop Algorithm.
The compiled PDF is available at [https://gitlab.cs.fau.de/oz73ifuv/qmc-loop-algorithm-report/-/jobs/artifacts/main/raw/build/qmc-loop-algorithm-report.pdf](https://gitlab.cs.fau.de/oz73ifuv/qmc-loop-algorithm-report/-/jobs/artifacts/main/raw/build/qmc-loop-algorithm-report.pdf).
Subproject commit 8b74a98ad8b6a75343d59d4c0ef1bd71bb63f5ed
\ifx\pdfminorversion\undefined\else\pdfminorversion=4\fi
\documentclass[aspectratio=169,t]{beamer}
\usepackage[institute=Nat,aspectratio=169]{styles/beamerthemefau}
\usepackage[UKenglish]{babel}
\usepackage[utf8]{inputenc}
\usepackage[style=iso]{datetime2}
\usepackage{amsmath,amssymb}
\usepackage{booktabs}
\usepackage{physics}
\usepackage{ragged2e}
\usepackage{bbm}
\usepackage[separate-uncertainty=true, binary-units]{siunitx}
%\usepackage{algpseudocode}
\graphicspath{{../figures/}}
\usepackage[backend=biber,urldate=iso,date=iso]{biblatex}
\addbibresource{references.bib}
\date{2022-12-12}
\title{Quantum Monte Carlo and the Loop Algorithm}
\author{Stefan Gehr}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}{Table of contents}
\tableofcontents
\end{frame}
\section{Monte Carlo Basics}
\begin{frame}{Monte Carlo Basics}
\begin{minipage}{0.40\linewidth}
\begin{align*}
a^2 + b^2 = c^2
\end{align*}
\end{minipage}
\hfill
\begin{minipage}{0.55\linewidth}
\begin{align*}
\sqrt{a} + \sqrt{b} \ne \sqrt{c}
\end{align*}
\end{minipage}
\end{frame}
{
\nocite{*}
\printbibliography
}
\end{document}
@book{Gubernatis2016,
doi = {10.1017/cbo9780511902581},
url = {https://doi.org/10.1017/cbo9780511902581},
year = {2016},
publisher = {Cambridge University Press},
author = {James Gubernatis and Naoki Kawashima and Philipp Werner},
title = {Quantum Monte Carlo Methods}
}
@unpublished{bchformula,
author = {Robin Zhang},
title = {The Baker-Campbell-Hausdorff Formula},
institution = {Columbia University in the City of New York},
url = {http://www.math.columbia.edu/~rzhang/files/BCHFormula.pdf},
year = {2017},
note = {Personal note}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment