mirror of
https://github.com/Wessel/boilerplate-tex.git
synced 2026-06-08 14:18:46 +02:00
feat: Populate repo
This commit is contained in:
@@ -1,2 +0,0 @@
|
||||
node_modules/
|
||||
dist/
|
||||
66
.eslintrc
66
.eslintrc
@@ -1,66 +0,0 @@
|
||||
{
|
||||
"env": {
|
||||
"es6": true,
|
||||
"amd": true,
|
||||
"jest": true,
|
||||
"node": true,
|
||||
"mongo": true,
|
||||
"jquery": true,
|
||||
"browser": true,
|
||||
"commonjs": true
|
||||
},
|
||||
"parserOptions": {
|
||||
"ecmaVersion": 9,
|
||||
"sourceType": "module",
|
||||
"ecmaFeatures": {
|
||||
"jsx": true,
|
||||
"forOf": true,
|
||||
"spread": true,
|
||||
"modules": true,
|
||||
"classes": true,
|
||||
"generators": true,
|
||||
"restParams": true,
|
||||
"regexUFlag": true,
|
||||
"regexYFlag": true,
|
||||
"globalReturn": true,
|
||||
"destructuring": true,
|
||||
"impliedStrict": true,
|
||||
"blockBindings": true,
|
||||
"defaultParams": true,
|
||||
"octalLiterals": true,
|
||||
"arrowFunctions": true,
|
||||
"binaryLiterals": true,
|
||||
"templateStrings": true,
|
||||
"superInFunctions": true,
|
||||
"unicodeCodePointEscapes": true,
|
||||
"experimentalObjectRestSpread": true,
|
||||
"objectLiteralShorthandMethods": true,
|
||||
"objectLiteralComputedProperties": true,
|
||||
"objectLiteralDuplicateProperties": true,
|
||||
"objectLiteralShorthandProperties": true
|
||||
}
|
||||
},
|
||||
"plugins": [],
|
||||
"rules": {
|
||||
"semi": "warn",
|
||||
"indent": [ "off", "error" ],
|
||||
"strict": "off",
|
||||
"eqeqeq": "error",
|
||||
"no-var": "warn",
|
||||
"no-undef": "warn",
|
||||
"valid-jsdoc": "warn",
|
||||
"comma-dangle": "warn",
|
||||
"no-dupe-args": "warn",
|
||||
"no-dupe-keys": "warn",
|
||||
"require-await": "warn",
|
||||
"spaced-comment": "error",
|
||||
"space-in-parens": "error",
|
||||
"no-global-assign": "warn",
|
||||
"no-duplicate-imports": "error",
|
||||
"no-dupe-class-members": "error"
|
||||
},
|
||||
"globals": {
|
||||
"_config": false,
|
||||
"console": false
|
||||
}
|
||||
}
|
||||
54
src/main.tex
Normal file
54
src/main.tex
Normal file
@@ -0,0 +1,54 @@
|
||||
\documentclass[10pt]{article}
|
||||
|
||||
%/ Use case: margins
|
||||
\usepackage[letterpaper,
|
||||
top=2cm,
|
||||
bottom=2cm,
|
||||
left=2cm,
|
||||
right=2cm,
|
||||
marginparwidth=1.75cm]{geometry}
|
||||
%/ Use case: language and spell checking
|
||||
\usepackage[utf8]{inputenc}
|
||||
\usepackage[english]{babel}
|
||||
%/ Use case: uppercase headers
|
||||
\usepackage{titlecaps}
|
||||
\usepackage{sectsty}
|
||||
%/ Use case: text formatting
|
||||
\usepackage{url}
|
||||
\usepackage[outputdir=tmp]{minted}
|
||||
\usepackage[colorlinks=true, allcolors=teal]{hyperref}
|
||||
\usepackage{textcomp}
|
||||
\usepackage{amsmath}
|
||||
%/ Use case: images
|
||||
\usepackage{graphicx}
|
||||
\usepackage[export]{adjustbox}
|
||||
\usepackage[font=small,labelfont=bf]{caption}
|
||||
%/ Use case: tables
|
||||
\usepackage{booktabs}
|
||||
\usepackage[flushleft]{threeparttable}
|
||||
\usepackage{pgfplots}
|
||||
\usepackage{pgfplotstable}
|
||||
|
||||
\pgfplotsset{compat=1.18}
|
||||
|
||||
\allsectionsfont{\mdseries\scshape}
|
||||
|
||||
\title{\titlecap{\scshape Title}}\normalfont
|
||||
\author{Wessel Tip $<$contact@wessel.gg$>$ (Student number 696770, \url{https://wessel.gg/})}
|
||||
\date{Computer Engineering at InHolland (Year 1, Semester x, Month. year - Month. year)}
|
||||
|
||||
\begin{document}
|
||||
|
||||
\maketitle
|
||||
|
||||
\begin{abstract}
|
||||
\end{abstract}
|
||||
|
||||
\tableofcontents
|
||||
|
||||
\input{sections/1 introduction}
|
||||
|
||||
\bibliographystyle{IEEEtran}
|
||||
\bibliography{references.bib}
|
||||
|
||||
\end{document}
|
||||
1
src/references.bib
Normal file
1
src/references.bib
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
6
src/sections/1 introduction.tex
Normal file
6
src/sections/1 introduction.tex
Normal file
@@ -0,0 +1,6 @@
|
||||
\newpage
|
||||
|
||||
\section{Introduction}
|
||||
\label{sec:introduction}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user