Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified release/CommonUnits.pdf
Binary file not shown.
29 changes: 29 additions & 0 deletions src/2.Guidelines.tex
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
\chapter{Guidelines}
This Chapter sets Guidelines that Units inside \cu\ should follow.
\section{Prefixes}
Units should use \fhref{metric prefixes}{https://en.wikipedia.org/wiki/Metric_prefix} to indicate a multiple or a fraction of the unit.\\
These are as follows:\\~\\
\begin{tabular}{l c r l}
\rowalign{c}{Text} & \rowalign{c}{Symbol} & \rowalign{c}{Factor} & \rowalign{c}{Power} \\
\(yotta\) & \(Y\) & 1000000000000000000000000 & \(10^{24}\) \\
\(zetta\) & \(Z\) & 1000000000000000000000 & \(10^{24}\) \\
\(exa\) & \(E\) & 1000000000000000000 & \(10^{18}\) \\
\(peta\) & \(P\) & 1000000000000000 & \(10^{15}\) \\
\(tera\) & \(T\) & 1000000000000 & \(10^{12}\) \\
\(giga\) & \(G\) & 1000000000 & \(10^{9}\) \\
\(mega\) & \(M\) & 1000000 & \(10^{6}\) \\
\(kilo\) & \(k\) & 1000 & \(10^{3}\) \\
\(hecto\) & \(h\) & 100 & \(10^{2}\) \\
\(deca\) & \(d\) & 10 & \(10^{1}\) \\
--- & --- & 1 & \(10^{0}\) \\
\(deci\) & \(d\) & 0.1 & \(10^{−1}\) \\
\(centi\) & \(c\) & 0.01 & \(10^{−2}\) \\
\(milli\) & \(m\) & 0.001 & \(10^{−3}\) \\
\(micro\) & \(\mu \) & 0.000001 & \(10^{−6}\) \\
\(nano\) & \(n\) & 0.000000001 &\(10^{−9}\) \\
\(pico\) & \(p\) & 0.000000000001 & \(10^{−12}\) \\
\(femto\) & \(f\) & 0.000000000000001 & \(10^{−15}\) \\
\(atto\) & \(a\) & 0.000000000000000001 & \(10^{−18}\) \\
\(zepto\) & \(z\) & 0.000000000000000000001 &\(10^{−21}\) \\
\(yocto\) & \(y\) & 0.000000000000000000000001 & \(10^{−24}\)
\end{tabular}
6 changes: 5 additions & 1 deletion src/CommonUnits.tex
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
\documentclass[a4paper]{report}

%% Language and font encodings
\usepackage[english]{babel}
\usepackage[utf8x]{inputenc}
Expand All @@ -10,6 +9,7 @@
\usepackage[hidelinks]{hyperref}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{bookmark}

%% Put Chapter Number and name on one line
\titleformat{\chapter}[hang]
Expand All @@ -28,6 +28,9 @@
\href{#2}{#1}\footnote{\url{#2}}
}

\newcommand*{\rowalign}[2]{\multicolumn{1}{#1}{#2}}
\setlength{\parskip}{1em}

\begin{document}
\maketitle

Expand All @@ -38,4 +41,5 @@
\include{Contributors}
\pagenumbering{arabic}
\include{1.Challenges}
\include{2.Guidelines}
\end{document}