Contact Us!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
Avatar for stephanie's main branch.

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

| Download

Research done and presented in relation to "Cubulated Holonomy", our chosen direction of research at the IU Bloomington 2024 REU. Mentor: Seppo Niemi Colvin Collaborator: Josue Molina

Views: 132
Image: ubuntu2204
1
%% Examples of how to add theorem-like statements
2
\newtheoremstyle{statement}{3pt}{3pt}{}{}{\bfseries}{:}{.5em}{}
3
\newtheorem{thm}{Theorem}[section] % theorems will be numbered in order
4
\newtheorem{definition}{Definition}[section] % definitions will be numbered in order independently from theorems, and using [section] as optional third argument means the numbering is within sections
5
\newtheorem{property}{Property}[section]
6
\newtheorem{lemma}[thm]{Lemma} % using [thm] as optional second argument ensures that lemmas and theorems will be numbered together (i.e. using \thm and then \lemma will lead to Theorem 1 and Lemma 2)
7
\newtheorem*{remark*}{Remark} % use * to avoid numbering (ex. remarks will not have numbering like theorems do)
8
\newtheorem{prop}[thm]{Propositon}
9
\newtheorem{corollary}[thm]{Corollary}
10
%% Examples of macros
11
\newenvironment{atmProof}{\noindent\ignorespaces\paragraph{\textbf{Proof:}}}{\hfill \ding{122}\par\noindent}
12
\def \R {\mathbb{R}} % macro for set of real numbers
13
\def \Z {\mathbb{Z}} % macro for set of integers
14
\def \Q {\mathbb{Q}} % macro for set of rational numbers
15
\def \C {\mathcal{C}}
16
\DeclareMathOperator{\sd}{sd}
17
\DeclareMathOperator{\st}{st}
18
19