I am writing a math work, and I'd like to create a background which looks like a math notebook. Any idea how to do it ?
I found this solution, but I don't know how to put it in a mini-page …
%%%
%%% quarre Kaestchenmuster
%%%
\def\quarre{%
\raisebox{\footskip}[0pt][0pt]{%
setlength{\unitlength}{.01\textwidth}% Einheit_1/100_Textweite
\begin{picture}(100,115)%
\color{black!10}%
\linethickness{0.075mm}%
\multiput(2,0)(2,0){49}{\line(0,1){110}}% 110-VER
\multiput(0,2)(0,2){54}{\line(1,0){100}}% 54-HOR
\color{black}%
\put(1,112.1){%
\begin{footnotesize}
\textsl{\textbf{Notizen}}
\end{footnotesize}}%
\end{picture}%
}%
}
would be great to combine it with this:
Background image for minipage
Best Answer
Here's one possible solution using the
background
package:And here's an adaptation for TikZ of the code found here, for the case of
minipage
s; the main environment isgridmp
with an optional argument (the color for the rules) and a mandatory argument (the width of theminipage
):