Add paper template
This commit is contained in:
parent
b044057737
commit
d2e5a750c0
6 changed files with 95 additions and 0 deletions
BIN
paper/CC-by.pdf
Normal file
BIN
paper/CC-by.pdf
Normal file
Binary file not shown.
27
paper/Makefile
Normal file
27
paper/Makefile
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
|
||||||
|
SHELL := bash
|
||||||
|
.ONESHELL:
|
||||||
|
.SHELLFLAGS := -eu -o pipefail -c
|
||||||
|
.DELETE_ON_ERROR:
|
||||||
|
MAKEFLAGS += --warn-undefined-variables
|
||||||
|
MAKEFLAGS += --no-builtin-rules
|
||||||
|
|
||||||
|
main_tex ?= paper
|
||||||
|
|
||||||
|
VERSION_STRING := $(shell git describe --tags --long --dirty)
|
||||||
|
|
||||||
|
all: ${main_tex}.pdf
|
||||||
|
|
||||||
|
%.pdf: %.tex paper.bib version.tex
|
||||||
|
pdflatex -shell-escape $<
|
||||||
|
biber $*
|
||||||
|
pdflatex -shell-escape $<
|
||||||
|
|
||||||
|
version.tex: ${main_tex}.tex paper.bib
|
||||||
|
echo "${VERSION_STRING}" > $@
|
||||||
|
|
||||||
|
.PHONY: clean
|
||||||
|
clean:
|
||||||
|
rm -f ${main_tex}.aux ${main_tex}.bbl ${main_tex}.bcf ${main_tex}.log ${main_tex}.blg
|
||||||
|
rm -f ${main_tex}.out ${main_tex}.run.xml texput.log
|
||||||
|
|
||||||
0
paper/paper.bib
Normal file
0
paper/paper.bib
Normal file
BIN
paper/paper.pdf
Normal file
BIN
paper/paper.pdf
Normal file
Binary file not shown.
67
paper/paper.tex
Normal file
67
paper/paper.tex
Normal file
|
|
@ -0,0 +1,67 @@
|
||||||
|
\documentclass[conference,compsoc]{IEEEtran}
|
||||||
|
|
||||||
|
\usepackage[T1]{fontenc}
|
||||||
|
\usepackage[
|
||||||
|
backend=biber,
|
||||||
|
style=numeric,
|
||||||
|
natbib=true,
|
||||||
|
url=false,
|
||||||
|
doi=true,
|
||||||
|
eprint=false
|
||||||
|
]{biblatex}
|
||||||
|
\addbibresource{paper.bib}
|
||||||
|
\usepackage{amssymb,amsmath}
|
||||||
|
\usepackage{eurosym}
|
||||||
|
\usepackage{wasysym}
|
||||||
|
|
||||||
|
\usepackage[binary-units]{siunitx}
|
||||||
|
\DeclareSIUnit{\baud}{Bd}
|
||||||
|
\DeclareSIUnit{\year}{a}
|
||||||
|
\usepackage{commath}
|
||||||
|
\usepackage{graphicx,color}
|
||||||
|
\usepackage{subcaption}
|
||||||
|
\usepackage{array}
|
||||||
|
\usepackage{censor}
|
||||||
|
\usepackage{hyperref}
|
||||||
|
\usepackage{makecell}
|
||||||
|
|
||||||
|
\renewcommand{\floatpagefraction}{.8}
|
||||||
|
\newcommand{\degree}{\ensuremath{^\circ}}
|
||||||
|
\newcolumntype{P}[1]{>{\centering\arraybackslash}p{#1}}
|
||||||
|
\newcommand{\partnum}[1]{\texttt{#1}}
|
||||||
|
|
||||||
|
\begin{document}
|
||||||
|
|
||||||
|
\date{}
|
||||||
|
\title{Self Balancing Single Board Inertial Hardware Security Modules}
|
||||||
|
\maketitle
|
||||||
|
|
||||||
|
\begin{abstract}
|
||||||
|
\end{abstract}
|
||||||
|
|
||||||
|
\section{Introduction}
|
||||||
|
|
||||||
|
\section{Related Work}
|
||||||
|
\subsection{Hardware Security Module Design}
|
||||||
|
\subsection{Rotor Balancing}
|
||||||
|
\subsection{Wireless Power \& Data Transfer}
|
||||||
|
|
||||||
|
\section{Rotation-Invariant Wireless Power Transfer}
|
||||||
|
|
||||||
|
\section{A Design Approach to Balancing Structural PCBs}
|
||||||
|
|
||||||
|
\section{Single-Board IHSM Use Cases}
|
||||||
|
|
||||||
|
\section{Conclusion}
|
||||||
|
|
||||||
|
\section*{Availability}
|
||||||
|
This is version \texttt{\input{version.tex}\unskip} of this paper, generated on \today.
|
||||||
|
|
||||||
|
% The git repository with the
|
||||||
|
% LaTeX source for this paper as well as our data analysis and demo code can be found at:
|
||||||
|
|
||||||
|
% \center{\url{https://git.jaseg.de/self-balancing-ihsm.git}}
|
||||||
|
|
||||||
|
\printbibliography[heading=bibintoc]
|
||||||
|
|
||||||
|
\end{document}
|
||||||
1
paper/version.tex
Normal file
1
paper/version.tex
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue