Browse Source

new files organization, example per day

master
parent
commit
91efc90161
25 changed files with 81 additions and 143 deletions
  1. +0
    -0
      day-examples/1-secciones-ecuaciones/main.tex
  2. +0
    -0
      day-examples/2-bibtex/main.tex
  3. +0
    -0
      day-examples/2-bibtex/metalografia.jpg
  4. +0
    -0
      day-examples/2-bibtex/refs.bib
  5. BIN
      day-examples/3-tizk-circuitikz/.new.swp
  6. +81
    -0
      day-examples/3-tizk-circuitikz/main.tex
  7. +0
    -0
      demos/1-helloworld/main.tex
  8. +0
    -0
      demos/2-tikz-diagram/main.tex
  9. +0
    -0
      demos/3-archivos-referencias/bibliography.txt
  10. +0
    -0
      demos/3-archivos-referencias/referencias.bib
  11. BIN
      examples/0-hello/main.pdf
  12. BIN
      examples/2-introduccion/main-op2.pdf
  13. BIN
      examples/2-introduccion/main.pdf
  14. BIN
      examples/day-1/2-estructura/metodologia.jpg
  15. +0
    -27
      examples/day-2/2-diagrama/main.tex
  16. +0
    -35
      examples/day-3/4-introduccion/main-op2.tex
  17. +0
    -18
      examples/day-3/4-introduccion/main.tex
  18. +0
    -27
      examples/day-3/archivos-referencias/referencias.bib
  19. BIN
      examples/ieee/Boost_modo_1.png
  20. BIN
      examples/ieee/Boost_modo_2.png
  21. BIN
      examples/ieee/Boost_no_ideal.png
  22. BIN
      examples/ieee/How to use IEEEtran Latex class.pdf
  23. +0
    -31
      examples/ieee/How to use IEEEtran Latex class.tex
  24. BIN
      examples/ieee/fotoMarx.jpeg
  25. +0
    -5
      examples/ieee/referencias.bib

examples/day-1/2-estructura/main.tex → day-examples/1-secciones-ecuaciones/main.tex View File


examples/day-2/1-bibliografia/main.tex → day-examples/2-bibtex/main.tex View File


examples/day-2/1-bibliografia/metalografia.jpg → day-examples/2-bibtex/metalografia.jpg View File


examples/day-2/1-bibliografia/refs.bib → day-examples/2-bibtex/refs.bib View File


BIN
day-examples/3-tizk-circuitikz/.new.swp View File


+ 81
- 0
day-examples/3-tizk-circuitikz/main.tex View File

@ -0,0 +1,81 @@
%Preamble
\documentclass{article}
%\usepackage[spanish]{babel}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{blindtext}
\usepackage[american]{circuitikz}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows}
\title{Reporte de Práctica}
\author{Gerardo Marx}
% 1:
\tikzstyle{block} = [draw, fill=gray!20, rectangle, minimum height=3em, minimum width=6em]
%Document's body
\begin{document}
\maketitle{}
\tableofcontents
\listoffigures
\section{Introducción}
\section{Metodología}
\begin{figure}[htb]
\centering
\begin{tikzpicture}[auto, node distance=4cm,>=latex']
\node [block] (in) {Input};
\node [block, right of=in] (amp) {Amplificador};
\node [block, right of=amp] (fil) {Filtro};
\node [block, right of=fil] (out) {Output};
\draw [->] (in)--(amp);
\draw [->] (amp)--(fil);
\draw [->] (fil)--(out);
\end{tikzpicture}
\caption[Texto alternativo]{Texto de la figura Texto de la figura Texto de la figura Texto de la figura Texto de la figura Texto de la figura Texto de la figura}
\end{figure}
\section{Desarrollo}
\begin{figure}[htb!]
\centering
\begin{circuitikz}
\draw (0,0) to[R=$R_1$, i=?, v=2$V$] (2,0)
-- (2,2) to[V] (0,2) -- (0,0);
\end{circuitikz}
\caption{Texto.}
\end{figure}
\begin{circuitikz}
\draw (0,2) to[V] (0,0);
\draw (0,0) -- (2,0);
\draw (0,2) -- (2,2);
\draw (2,2) to[R=2$\Omega$] (2,0);
\end{circuitikz}
\section{Resultados}
\section{Conclusiones}
\end{document}

examples/day-1/1-hello/main.tex → demos/1-helloworld/main.tex View File


examples/day-1/3-metodologia/main.tex → demos/2-tikz-diagram/main.tex View File


examples/day-3/archivos-referencias/bibliography.txt → demos/3-archivos-referencias/bibliography.txt View File


examples/day-3/4-introduccion/referencias.bib → demos/3-archivos-referencias/referencias.bib View File


BIN
examples/0-hello/main.pdf View File


BIN
examples/2-introduccion/main-op2.pdf View File


BIN
examples/2-introduccion/main.pdf View File


BIN
examples/day-1/2-estructura/metodologia.jpg View File

Before After
Width: 593  |  Height: 333  |  Size: 77 KiB

+ 0
- 27
examples/day-2/2-diagrama/main.tex View File

@ -1,27 +0,0 @@
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{shapes,arrows}
\usepackage{graphicx}
\begin{document}
% 1:
\tikzstyle{block} = [draw, fill=gray!20, rectangle,
minimum height=3em, minimum width=6em]
\tikzstyle{sum} = [draw, fill=gray!20, circle, node distance=1cm]
\tikzstyle{input} = [coordinate]
\tikzstyle{output} = [coordinate]
\tikzstyle{pinstyle} = [pin edge={to-,thin,black}]
% The block diagram code is probably more verbose than necessary
\begin{tikzpicture}[auto, node distance=2cm,>=latex']
%2: We start by placing the blocks
\node [input, name=input] {};
\node [sum, right of=input] (sum) {};
\node [block, right of=sum] (controller) {Texto};
\node [block, right of=controller] (element) {Some};
\end{tikzpicture}
\end{document}

+ 0
- 35
examples/day-3/4-introduccion/main-op2.tex View File

@ -1,35 +0,0 @@
\documentclass{IEEEtran}
\usepackage[spanish]{babel}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{blindtext}
\usepackage{graphicx}
\title{Curso de Redacción de Artículos Técnico-Científicos con \LaTeX en el ITVM}
\author{Gerardo Marx Chávez-Campos}
\begin{document}
\maketitle
\section{Introducción}
\blindtext[1]
Quiero hacer una cita bibliográfica \cite{einstein}. Algunas otras
citas se pueden ver en \cite[pag.25]{knuthwebsite,latexcompanion}.
%\bibliographystyle{ieeetr}
%\bibliography{referencias}
%-------------------
\begin{thebibliography}{9}
\bibitem{latexcompanion}
Michel Goossens, Frank Mittelbach, and Alexander Samarin.
\textit{The \LaTeX\ Companion}.
Addison-Wesley, Reading, Massachusetts, 1993.
\bibitem{einstein}
Albert Einstein.
\textit{Zur Elektrodynamik bewegter K{\"o}rper}. (German)
[\textit{On the electrodynamics of moving bodies}].
Annalen der Physik, 322(10):891–921, 1905.
\bibitem{knuthwebsite}
Knuth: Computers and Typesetting,
\\\texttt{http://www-cs-faculty.stanford.edu/index.html}
\end{thebibliography}
\end{document}

+ 0
- 18
examples/day-3/4-introduccion/main.tex View File

@ -1,18 +0,0 @@
\documentclass{IEEEtran}
\usepackage[spanish]{babel}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{blindtext}
\usepackage{graphicx}
\title{Curso de Redacción de Artículos Técnico-Científicos con \LaTeX en el ITVM}
\author{Gerardo Marx Chávez-Campos}
\begin{document}
\maketitle
\section{Introducción}
\blindtext[1]
Quiero hacer una cita bibliográfica \cite{romanya2007analisis}. Algunas otras
citas se pueden ver en \cite[pag.25]{alvarez2019influencia, verdenelli2019proteinas}.
\bibliographystyle{ieeetr}
\bibliography{referencias}
\end{document}

+ 0
- 27
examples/day-3/archivos-referencias/referencias.bib View File

@ -1,27 +0,0 @@
@article{romanya2007analisis,
title={An{\'a}lisis del carbono en los suelos agr{\'\i}colas de Espa{\~n}a. Aspectos relevantes en relaci{\'o}n a la reconversi{\'o}n a la agricultura ecol{\'o}gica en el {\'a}mbito mediterr{\'a}neo.},
author={Romany{\'a}, JA and Rovira, P and Vallejo, R},
journal={Revista Ecosistemas},
volume={16},
number={1},
year={2007}
}
@article{verdenelli2019proteinas,
title={Prote{\'\i}nas totales y perfiles SDS-PAGE de suelos agr{\'\i}colas bajo fertilizaci{\'o}n mineral},
author={Verdenelli, Romina Ayl{\'e}n and Mascanfroni, Gisela Daniela and Dominchin, Mar{\'\i}a Florencia and Barbero, Florencia Magali and Gil, Silvina Vargas and Meriles, Jos{\'e} Manuel},
journal={Revista de la Facultad de Ciencias Exactas, F{\'\i}sicas y Naturales},
volume={6},
number={1},
pages={51},
year={2019}
}
@article{alvarez2019influencia,
title={Influencia de herbicidas preemergentes sobre el desarrollo de dermatofitos geof{\'\i}licos en suelos agr{\'\i}colas},
author={Alvarez, Delia P and Luque, Alicia G and Marini, Patricia and Gamberate, Mar{\'\i}a E},
journal={Bolet{\'\i}n Micol{\'o}gico},
volume={3},
number={4},
year={2019}
}

BIN
examples/ieee/Boost_modo_1.png View File

Before After
Width: 2050  |  Height: 641  |  Size: 51 KiB

BIN
examples/ieee/Boost_modo_2.png View File

Before After
Width: 2050  |  Height: 640  |  Size: 51 KiB

BIN
examples/ieee/Boost_no_ideal.png View File

Before After
Width: 1915  |  Height: 641  |  Size: 54 KiB

BIN
examples/ieee/How to use IEEEtran Latex class.pdf View File


+ 0
- 31
examples/ieee/How to use IEEEtran Latex class.tex View File

@ -1,31 +0,0 @@
\documentclass[9pt]{IEEEtran}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage{lipsum}
\usepackage[utf8]{inputenc}
%\usepackage[spanish]{babel}
\title{How to Use the IEEEtran \LaTeX{} Class}
\author{Chávez-Campos~Gerardo~Marx,
~\IEEEmembership{Member,~IEEE.}%
\thanks{This work was supported by the IEEE.}}
\begin{document}
\maketitle
\begin{abstract} Put your abstract here...
\end{abstract}
\begin{IEEEkeywords} Broad band networks, quality of service, WDM. \end{IEEEkeywords}
\section{Introduction}
\IEEEPARstart{T}{he} LED
\begin{table}[!t] \renewcommand{\arraystretch}{1.3} \caption{A Simple Example Table} \label{table_example} \centering \begin{tabular}{cc} \bfseries First & \bfseries Next\\ \hline 1.0 & 2.0\\ \hline \end{tabular} \end{table}
Como lo indica el autor \cite{gratzer2013math}
\bibliography{referencias}
\bibliographystyle{IEEEtran}
\end{document}

BIN
examples/ieee/fotoMarx.jpeg View File

Before After
Width: 583  |  Height: 673  |  Size: 60 KiB

+ 0
- 5
examples/ieee/referencias.bib View File

@ -1,5 +0,0 @@
@book{gratzer2013math,
title={Math into LATEX},
author={Gr{\"a}tzer, George},
year={2013},
publisher={Springer Science \& Business Media}}

Loading…
Cancel
Save