mirror of
https://git.adityakumar.xyz/fphw.git
synced 2024-11-09 14:59:45 +00:00
27 lines
776 B
OpenEdge ABL
27 lines
776 B
OpenEdge ABL
|
%% 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}}
|
||
|
|
||
|
|