New assignment for ISO.

This commit is contained in:
Nicolás A. Ortega Froysa 2021-11-25 19:11:01 +01:00
parent 4e98af2304
commit 664e8fc501
3 changed files with 99 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,95 @@
\documentclass[12pt,a4paper]{article}
\usepackage[spanish]{babel}
\title{Tema IV Ejercicio III: Comandos DOS}
\author{Nicolás A. Ortega Froysa}
\begin{document}
\maketitle
\pagebreak
\tableofcontents
\pagebreak
\section{Hoja De Control Del Documento}
\begin{table}[h!]
\begin{center}
\caption{Documento/Archivo}
\label{tab:document}
\begin{tabular}{|l|c|l|c|}
\hline
{\bf Fecha Última Modificación} & \the\day/\the\month/\the\year &
{\bf Versión/Revisión} & v01r01 \\ \hline
{\bf Fecha Creación} & \the\day/\the\month/\the\year & \hfill & \hfill \\ \hline
{\bf Fecha Finalización} & \the\day/\the\month/\the\year & \hfill &
\hfill \\ \hline
\end{tabular}
\end{center}
\end{table}
\begin{table}[h!]
\begin{center}
\caption{Registro De Cambios}
\label{tab:registro-cambios}
\begin{tabular}{|c|c|c|}
\hline
{\bf Versión/Revisión} & {\bf Página(s)} & {\bf Descripción} \\
\hline
v01r01 & Todas & Creación y elaboración del documento. \\ \hline
\end{tabular}
\end{center}
\end{table}
\begin{table}[h!]
\begin{center}
\caption{Autores Del Documento}
\label{tab:autores}
\begin{tabular}{|c|c|}
\hline
{\bf Apellidos, Nombre} & {\bf Curso} \\ \hline
Ortega Froysa, Nicolás Andrés & 1 \\ \hline
\end{tabular}
\end{center}
\end{table}
\begin{table}[h!]
\begin{center}
\begin{tabular}{|p{4cm}|p{4cm}|p{4cm}|}
\hline
{\bf Preparado} & {\bf Revisado} & {\bf Aprobado} \\ \hline
Ortega Froysa, Nicolás Andrés & \hfill & \hfill \\ \hline
\end{tabular}
\end{center}
\end{table}
\pagebreak
\section{Manejo de Archivos}
Para poder crear carpetas en el {\em shell} de DOS, usamos el comando
\texttt{mkdir}. Esto también lo podemos usar para crear todo un {\em path} de
directorios, uno dentro de otro, simplemente especificando el camino. De este
modo podemos crear una estructura de directorio con los siguientes comandos:
\begin{verbatim}
>mkdir carp1\carp11
>mkdir carp1\carp12
>mkdir carp2\carp21
>mkdir carp3
\end{verbatim}
% TODO: Add tree command
Para borrar archivos usamos el comando \texttt{del <archivo>}. Lo cual, para
borrar el archivo \texttt{arch11.txt} que se encuentra en la carpeta:
\begin{verbatim}
carp2\carp21\arch11.txt
\end{verbatim}
\pagebreak
\section{Derechos de Autor y Licencia}
Copyright \copyright\ \the\year\ Nicolás A. Ortega Froysa <nicolas@ortegas.org>
\\
Este documento se distribuye bajo los términos y condiciones de la licencia
Creative Commons Attribution No Derivatives 4.0 International.
\end{document}

View File

@ -0,0 +1,4 @@
\babel@toc {spanish}{}
\contentsline {section}{\numberline {1}Hoja De Control Del Documento}{3}{}%
\contentsline {section}{\numberline {2}Manejo de Archivos}{4}{}%
\contentsline {section}{\numberline {3}Derechos de Autor y Licencia}{5}{}%