mirror of
https://git.adityakumar.xyz/fphw.git
synced 2024-11-08 14:39:43 +00:00
commit inicial
This commit is contained in:
parent
6d5bb8edb6
commit
93ff5e8a4e
3 changed files with 45 additions and 0 deletions
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
# We don need the auxiliary files created by LaTeX to be tracked
|
||||
**.aux
|
||||
**.log
|
||||
**.pdf
|
||||
**.dvi
|
26
tareas-fp.cls
Normal file
26
tareas-fp.cls
Normal file
|
@ -0,0 +1,26 @@
|
|||
%% 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}}
|
||||
|
||||
|
14
test.tex
Normal file
14
test.tex
Normal file
|
@ -0,0 +1,14 @@
|
|||
% this is a test document for the class we defined in this project
|
||||
|
||||
\documentclass{tareas-fp}
|
||||
|
||||
\title{my tytle}
|
||||
\author{me}
|
||||
\date{today}
|
||||
|
||||
\begin{document}
|
||||
\maketitle
|
||||
|
||||
hóla beééééébééééé
|
||||
|
||||
\end{document}
|
Loading…
Reference in a new issue