@ -0,0 +1,38 @@ | |||||
\documentclass{article} | |||||
\usepackage{tikz} | |||||
\usetikzlibrary{shapes,arrows} | |||||
\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) {Controller}; | |||||
\node [block, right of=controller, pin={[pinstyle]above:Disturbances}, | |||||
node distance=3cm] (system) {System}; | |||||
%3: We draw an edge between the controller and system block to | |||||
% calculate the coordinate u. We need it to place the measurement block. | |||||
\draw [->] (controller) -- node[name=u] {$u$} (system); | |||||
\node [output, right of=system] (output) {}; | |||||
\node [block, below of=u] (measurements) {Measurements}; | |||||
%4: Once the nodes are placed, connecting them is easy. | |||||
\draw [draw,->] (input) -- node {$r$} (sum); | |||||
\draw [->] (sum) -- node {$e$} (controller); | |||||
\draw [->] (system) -- node [name=y] {$y$}(output); | |||||
\draw [->] (y) |- (measurements); | |||||
\draw [->] (measurements) -| node[pos=0.99] {$-$} | |||||
node [near end] {$y_m$} (sum); | |||||
\end{tikzpicture} | |||||
\end{document} |
@ -0,0 +1,73 @@ | |||||
\documentclass{article} | |||||
\usepackage[spanish]{babel} | |||||
\usepackage[utf8]{inputenc} | |||||
\usepackage{hyperref} | |||||
\usepackage{float} | |||||
\usepackage{amsmath} | |||||
\usepackage{blindtext} | |||||
\usepackage{graphicx} | |||||
\title{Mi reporte de prácticas de la metería X} | |||||
\author{Gerardo Marx} | |||||
\begin{document} | |||||
\maketitle{} | |||||
\newpage | |||||
\tableofcontents | |||||
\newpage | |||||
\section{Introducción} | |||||
\blindtext[1] | |||||
\section{Metodología} | |||||
\blindtext[1] | |||||
En la figura \ref{fig:metal} | |||||
\begin{figure}[H] | |||||
\centering | |||||
\includegraphics[width=3in]{metalografia} | |||||
\caption{Metalografía de acero xxxx.} | |||||
\label{fig:metal} | |||||
\end{figure} | |||||
\section{Desarrollo} | |||||
\blindtext[1] | |||||
\section{Resultados} | |||||
\blindtext[1] | |||||
En \autoref{fig:metal2} \cite{rim1994complete} | |||||
\begin{figure}[H] | |||||
\centering | |||||
\includegraphics[scale=0.25]{metalografia} | |||||
\caption{Texto de la figura} | |||||
\label{fig:metal2} | |||||
\end{figure} | |||||
\section{Conclusiones} | |||||
\blindtext[1] | |||||
Según \cite{patashnik1984bibtex} es posible considerar. | |||||
\bibliographystyle{ieeetr} | |||||
\bibliography{refs} | |||||
\end{document} |
@ -0,0 +1,17 @@ | |||||
@article{rim1994complete, | |||||
title={A complete DC and AC analysis of three-phase controlled-current PWM rectifier using circuit DQ transformation}, | |||||
author={Rim, Chun T and Choi, Nam S and Cho, Guk C and Cho, Gyu H}, | |||||
journal={IEEE Transactions on Power Electronics}, | |||||
volume={9}, | |||||
number={4}, | |||||
pages={390--396}, | |||||
year={1994}, | |||||
publisher={IEEE} | |||||
} | |||||
@article{patashnik1984bibtex, | |||||
title={BIBTEX 101}, | |||||
author={Patashnik, Oren}, | |||||
year={1984} | |||||
} | |||||
@ -0,0 +1,27 @@ | |||||
\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} |