aboutsummaryrefslogtreecommitdiff
path: root/tareas-fp.cls
diff options
context:
space:
mode:
authorFelipe Portales-Oliva <f.portales.oliva@gmail.com>2019-03-28 03:31:16 -0300
committerFelipe Portales-Oliva <f.portales.oliva@gmail.com>2019-03-28 03:31:16 -0300
commit24e904987e6586a67ee5b2eb5fba7c41b0564cd4 (patch)
tree0f8b90b2f6fb5c24925f5acf40b5e0a8b622d216 /tareas-fp.cls
parent93ff5e8a4e94b6caac5cc3f605749321fce3e618 (diff)
modificada estructura y agregados elementos al paquete
Diffstat (limited to 'tareas-fp.cls')
-rw-r--r--tareas-fp.cls26
1 files changed, 0 insertions, 26 deletions
diff --git a/tareas-fp.cls b/tareas-fp.cls
deleted file mode 100644
index a898435..0000000
--- a/tareas-fp.cls
+++ /dev/null
@@ -1,26 +0,0 @@
-%% Tareas Estilosas
-%% Felipe Portales-Oliva (f.portales.oliva@gmail.com)
-%%
-%% Clase para crear respuestas a tareas de manera sencilla
-
-\NeedsTeXFormat{LaTeX2e} % we need to have LaTeX2e for this to compile
-\ProvidesClass{tareas-fp}[2019/03/19 LaTeX class to deliver your homework]
-
-% We will use the article class as a template, with a fontsize of 11pt
-\LoadClass{article}
-
-% UTF-8 is best coding
-\RequirePackage[utf8]{inputenc}
-
-% We won't need those ugly margins
-\RequirePackage{geometry}
-
-
-
-% two columns are really difficult to grade, this is to avoid them
-\DeclareOption{twocolumn}{\OptionNotUsed}
-
-% As we loaded the article class we need to pass it options not specifically defined, such as font size
-\DeclareOption*{\PassOptionsToClass{\CurrentOption}{article}}
-
-