mirror of
https://github.com/kuhyx/testsAndMisc.git
synced 2026-07-04 15:03:01 +02:00
- Add +x to Python scripts with shebangs (3 files) - Remove -x from non-script files like .cpp, .txt, makefile (23 files) - Move shebang to first line in C/imageViewer/lint.sh
22 lines
422 B
TeX
22 lines
422 B
TeX
\documentclass[a4paper]{article}
|
|
\usepackage{background}
|
|
\usepackage{lipsum}
|
|
\pagestyle{empty} % Disable page numbering
|
|
|
|
\newlength\mylen
|
|
\setlength\mylen{\dimexpr\paperwidth/40\relax}
|
|
|
|
\SetBgScale{1}
|
|
\SetBgAngle{0}
|
|
\SetBgColor{blue!30}
|
|
\SetBgContents{\tikz{\draw[step=\mylen] (-.5\paperwidth,-.5\paperheight) grid (.5\paperwidth,.5\paperheight);}}
|
|
|
|
\begin{document}
|
|
\newpage
|
|
|
|
\ % The empty page
|
|
|
|
\newpage
|
|
|
|
\end{document}
|