Is it possible to produce representation of this fraction with ProfCollegepackage ?
My MWE :
\documentclass[12pt]{article}
\usepackage{mathtools}
\usepackage{ProfCollege}
\usepackage{tikz}
\begin{document}
Simple representation of fraction :
\Fraction[Rectangle,Reponse]{1/4}
And this is a little complicated:
\begin{tikzpicture}
\draw (0,0)rectangle(4,4);
\fillredrectangle(1,3);
\draw (2,0)--(2,4);
\draw (0,2)--(4,2);
\drawgray--(1,2);
\draw[gray] (0,3)--(2,3);
\end{tikzpicture}
\end{document}