33 lines
818 B
TeX
33 lines
818 B
TeX
\documentclass[10pt]{datasheet}
|
|
\usepackage{palatino}
|
|
\usepackage{textgreek}
|
|
\usepackage{minted}
|
|
\usepackage{tcolorbox}
|
|
\usepackage{etoolbox}
|
|
|
|
\usepackage[justification=centering]{caption}
|
|
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage[english]{babel}
|
|
\usepackage[english]{isodate}
|
|
|
|
\usepackage{graphicx}
|
|
\usepackage{subfig}
|
|
|
|
\usepackage{tikz}
|
|
\usepackage{pgfplots}
|
|
\pgfplotsset{compat=1.18}
|
|
\usepackage{circuitikz}
|
|
\usepackage{pifont}
|
|
|
|
\usetikzlibrary{calc}
|
|
\usetikzlibrary{fit,backgrounds}
|
|
|
|
\newcommand*{\twocm}[3][2cm]{\parbox{#1}{\centering #2 \\ #3}}
|
|
\newcommand*{\fourcm}[3][4cm]{\parbox{#1}{\centering #2 \\ #3}}
|
|
\newcommand{\inputcolorboxminted}[3][4]{%
|
|
\begin{tcolorbox}[colback=white]
|
|
\inputminted[#2, gobble=#1]{python}{#3}
|
|
\end{tcolorbox}
|
|
}
|
|
\newcommand{\repeatfootnote}[1]{\textsuperscript{\ref{#1}}} |