I'm writing my homework and I would like to change the environment's dimensions of
\documentclass[10pt,spanish]{article}
% INICIO PAQUETES
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[strict]{changepage} % para cambiar dimensiones (recomendado en la web)
\usepackage{fancyhdr}
\usepackage{mathrsfs}
\usepackage[spanish]{babel}
\usepackage[utf8]{inputenc}
\usepackage{color}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsthm} % gracias a este paquete podemos enlistar los teoremas
\usepackage{hyperref} % permite agregar links
\let\UPproof\proof\def\proof{\small\UPproof}
\newtheorem{teo}{Teorema}[section]
\newtheorem{pro}{Proposici\'on}[section]
\newtheorem{cor}{Corolario}[section]
\newtheorem{lem}{Lema}[section]
\newtheorem{mydef}{Definici\'on}[section]
\textwidth 19cm
\topmargin -2cm
\textheight 23cm
\oddsidemargin -1,2cm
\parindent 0em
\parskip 2ex
\title{Un título}
\date{Una fecha}
\begin{pro} This tense is false.
\end{pro}
\begin{proof}
Because yes, yes.
\end{proof}
\end{document}
I want to make it (the "box" where the proof is being written) an x % smaller than the original "box" where the proposition is, but I don't know how to do it so if someone can help me, I'd be grateful.


\let\UPproof\proof\def\proof{\small\UPproof}placed in the preamble should do. It would certainly be easier to answer your question if you provided a minimal working example (MWE). – yo' Oct 17 '15 at 19:45proofenvironment takes up with respect to the\textwidthor text block containing other text, correct – Werner Oct 17 '15 at 19:56@Werner yes I wanted to mean the lengths of the "box" where the proof is being written (it was my misstake, I'm sorry!)
– UnPerrito Oct 17 '15 at 19:59adjustwidthfromchangepage. See Indenting a whole paragraph. What package do you use to provide theproofenvironment? – Werner Oct 17 '15 at 20:04amsthm,svjour,ntheoremand others implementproof, but each in a different way. – yo' Oct 17 '15 at 20:07The followings are the packages I'm using: amsmath, fancyhdr, graphicx, mathrsfs, babel, inputenc, color, amsfonts, amssymb, amsthm.
– UnPerrito Oct 17 '15 at 20:47! LaTeX Error: Environment prop undefined.Instead of listing which packages you use, you could simply construct a short working document which starts with\documentclass, contains\usepackagewith the packages, then\begin{document}, then the short piece of code you show, and\end{document}. – yo' Oct 17 '15 at 20:55\let\UPproof\proof\def\proof{\small\UPproof}from @yo' answer should not be in the question. It's the answer. – touhami Oct 17 '15 at 21:08Change environment's fontsizeno? – touhami Oct 17 '15 at 21:10