This commit is contained in:
2022-12-12 00:13:40 -05:00
parent 60074da995
commit 32c8859c45
7 changed files with 326 additions and 7 deletions
+54
View File
@@ -22,7 +22,9 @@
\RequirePackage{geometry}
\RequirePackage{graphicx}
\RequirePackage[usenames,dvipsnames]{xcolor}
\RequirePackage{siunitx}
\RequirePackage{physics}
\let\qty\SI%
\RequirePackage{bm}
\RequirePackage{pgfplots}
\pgfplotsset{
@@ -30,6 +32,8 @@
}
\usepgfplotslibrary{fillbetween}
\usetikzlibrary{patterns}
\RequirePackage[framemethod=TikZ]{mdframed}
\mdfsetup{skipabove=1em, skipbelow=0em, innertopmargin=5pt, innerbottommargin=6pt}
\let\sidesum\sum
@@ -45,3 +49,53 @@
\newcommand\C{\ensuremath{\mathbb{C}}}
\geometry{top=20mm,bottom=20mm}
\newcommand{\specialquote}[2]
{
\begin{flushright}
\begin{tikzpicture}
\draw (0,0) node [right,text width=8.75cm] {
\begin{mdframed}[
linecolor=black,
rightline=false,
topline=false,
bottomline=false,
backgroundcolor=black!5,
linewidth=2pt
]
{``#1''}
\vspace{1mm}
\hfill-- \small{#2}
\end{mdframed}
};
\end{tikzpicture}
\end{flushright}
}
\newcommand{\specialnoquote}[2]
{
\begin{flushright}
\begin{tikzpicture}
\draw (0,0) node [right,text width=8.75cm] {
\begin{mdframed}[
linecolor=black,
rightline=false,
topline=false,
bottomline=false,
backgroundcolor=black!5,
linewidth=2pt
]
{#1}
\vspace{1mm}
\hfill-- \small{#2}
\end{mdframed}
};
\end{tikzpicture}
\end{flushright}
}