Skip to content

Commit 00414fe

Browse files
committed
Initial commit
0 parents  commit 00414fe

File tree

3 files changed

+203
-0
lines changed

3 files changed

+203
-0
lines changed

.gitignore

+180
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,180 @@
1+
## Core latex/pdflatex auxiliary files:
2+
*.aux
3+
*.lof
4+
*.log
5+
*.lot
6+
*.fls
7+
*.out
8+
*.toc
9+
*.fmt
10+
*.fot
11+
*.cb
12+
*.cb2
13+
14+
## Intermediate documents:
15+
*.dvi
16+
*-converted-to.*
17+
# these rules might exclude image files for figures etc.
18+
# *.ps
19+
# *.eps
20+
# *.pdf
21+
22+
## Bibliography auxiliary files (bibtex/biblatex/biber):
23+
*.bbl
24+
*.bcf
25+
*.blg
26+
*-blx.aux
27+
*-blx.bib
28+
*.brf
29+
*.run.xml
30+
31+
## Build tool auxiliary files:
32+
*.fdb_latexmk
33+
*.synctex
34+
*.synctex.gz
35+
*.synctex.gz(busy)
36+
*.pdfsync
37+
38+
## Auxiliary and intermediate files from other packages:
39+
# algorithms
40+
*.alg
41+
*.loa
42+
43+
# achemso
44+
acs-*.bib
45+
46+
# amsthm
47+
*.thm
48+
49+
# beamer
50+
*.nav
51+
*.snm
52+
*.vrb
53+
54+
# cprotect
55+
*.cpt
56+
57+
# fixme
58+
*.lox
59+
60+
#(r)(e)ledmac/(r)(e)ledpar
61+
*.end
62+
*.?end
63+
*.[1-9]
64+
*.[1-9][0-9]
65+
*.[1-9][0-9][0-9]
66+
*.[1-9]R
67+
*.[1-9][0-9]R
68+
*.[1-9][0-9][0-9]R
69+
*.eledsec[1-9]
70+
*.eledsec[1-9]R
71+
*.eledsec[1-9][0-9]
72+
*.eledsec[1-9][0-9]R
73+
*.eledsec[1-9][0-9][0-9]
74+
*.eledsec[1-9][0-9][0-9]R
75+
76+
# glossaries
77+
*.acn
78+
*.acr
79+
*.glg
80+
*.glo
81+
*.gls
82+
*.glsdefs
83+
84+
# gnuplottex
85+
*-gnuplottex-*
86+
87+
# hyperref
88+
*.brf
89+
90+
# knitr
91+
*-concordance.tex
92+
# TODO Comment the next line if you want to keep your tikz graphics files
93+
*.tikz
94+
*-tikzDictionary
95+
96+
# listings
97+
*.lol
98+
99+
# makeidx
100+
*.idx
101+
*.ilg
102+
*.ind
103+
*.ist
104+
105+
# minitoc
106+
*.maf
107+
*.mlf
108+
*.mlt
109+
*.mtc
110+
*.mtc[0-9]
111+
*.mtc[1-9][0-9]
112+
113+
# minted
114+
_minted*
115+
*.pyg
116+
117+
# morewrites
118+
*.mw
119+
120+
# mylatexformat
121+
*.fmt
122+
123+
# nomencl
124+
*.nlo
125+
126+
# sagetex
127+
*.sagetex.sage
128+
*.sagetex.py
129+
*.sagetex.scmd
130+
131+
# sympy
132+
*.sout
133+
*.sympy
134+
sympy-plots-for-*.tex/
135+
136+
# pdfcomment
137+
*.upa
138+
*.upb
139+
140+
# pythontex
141+
*.pytxcode
142+
pythontex-files-*/
143+
144+
# thmtools
145+
*.loe
146+
147+
# TikZ & PGF
148+
*.dpth
149+
*.md5
150+
*.auxlock
151+
152+
# todonotes
153+
*.tdo
154+
155+
# xindy
156+
*.xdy
157+
158+
# xypic precompiled matrices
159+
*.xyc
160+
161+
# endfloat
162+
*.ttt
163+
*.fff
164+
165+
# Latexian
166+
TSWLatexianTemp*
167+
168+
## Editors:
169+
# WinEdt
170+
*.bak
171+
*.sav
172+
173+
# Texpad
174+
.texpadtmp
175+
176+
# Kile
177+
*.backup
178+
179+
# KBibTeX
180+
*~[0-9]*

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2016 LibreIM
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# tutorials
2+
Pequeños tutoriales introductorios a herramientas de Informática y Matemáticas

0 commit comments

Comments
 (0)