diff options
| -rw-r--r-- | drafts/dn001.06/paper.tex | 38 | ||||
| -rw-r--r-- | tools/addpaper.ml | 19 |
2 files changed, 50 insertions, 7 deletions
diff --git a/drafts/dn001.06/paper.tex b/drafts/dn001.06/paper.tex new file mode 100644 index 0000000..7a894c2 --- /dev/null +++ b/drafts/dn001.06/paper.tex @@ -0,0 +1,38 @@ + +\documentclass[11pt, a4paper]{article} +\usepackage{graphicx} +\usepackage{listings} +\usepackage{xcolor} +\usepackage{hyperref} +\usepackage{amsfonts} +\usepackage[margin=0.5in,top=1in,bottom=1in]{geometry} + +\title{A Set of $\mathbb{C}$ Indices. (DRAFT)} +\author{Amlal El Mahrouss\\amlal@nekernel.org} +\date{Feburary 2026} + +\begin{document} +\bf +\maketitle +\begin{center} + \rule[0.01cm]{17cm}{0.01cm} +\end{center} +\abstract{ + This paper presents a definition of `objects'—as indexed $n \in \mathbb{R}$ valued in $\mathbb{C}$. +} +\begin{center} + \rule[0.01cm]{17cm}{0.01cm} +\end{center} + +\section{Introduction} + +\section{Definition} + +Let a set defined as $\Omega \in \mathbb{C}$ as the following indices of $\beta \in \mathbb{C}$: + +\begin{equation} + \Omega_{n} = (\beta_{0} \times \beta_{n}) \land \alpha: \Omega_{n} \cup \mathbb{C} +\end{equation}\\ +With a variable $\alpha$ with a remainder of $C$ defined as the result of $\beta_{n}$. + +\end{document} diff --git a/tools/addpaper.ml b/tools/addpaper.ml index e6cca9b..457524e 100644 --- a/tools/addpaper.ml +++ b/tools/addpaper.ml @@ -13,7 +13,8 @@ let email_index : int = 4 let author_index : int = 3 let title_index : int = 2 let file_index : int = 1 -let format = format_of_string " +let format = format_of_string +" \\documentclass[11pt, a4paper]{article} \\usepackage{graphicx} \\usepackage{listings} @@ -22,7 +23,7 @@ let format = format_of_string " \\usepackage[margin=0.5in,top=1in,bottom=1in]{geometry} \\title{%s} -\\author{%s.\\\\%s} +\\author{%s\\\\%s} \\date{\\today} \\begin{document} @@ -36,17 +37,21 @@ let format = format_of_string " \\rule[0.01cm]{17cm}{0.01cm} \\end{center} \\end{document} -";; +" +;; (* We just make a LaTeX file with the given title. *) let () = if Array.length Sys.argv >= 5 then let out_file : string = Sys.argv.(file_index)^".tex" in - let file : out_channel = open_text out_file in - fprintf file format Sys.argv.(title_index); - fprintf file format Sys.argv.(author_index); - fprintf file format Sys.argv.(email_index); + let file = open_text out_file in + let title = Sys.argv.(title_index) in + let author = Sys.argv.(author_index) in + let email = Sys.argv.(email_index) in + + fprintf file format title author email; + close_out file; else ( printf "addpaper: Creates papers for TeX.\n"; |
