Here's a MWE for a journal with a generic background texture, one for the odd pages and another one for the even pages (I commented out the textures so the code could compile here) :
Code: Select all
\documentclass[12pt,letterpaper,twoside]{book}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage{anysize}
\marginsize{1.0in}{1.0in}{0.5in}{0.5in}
\usepackage[]{hyperref}
\usepackage{eso-pic}
\usepackage{changepage}
\strictpagecheck
\usepackage{blindtext}
\begin{document}
\AddToShipoutPicture{\checkoddpage
\ifoddpage
%\put(0,0){\includegraphics[width=\paperwidth,height=\paperheight]{Textures/odd_page.jpg}}
\else
%\put(0,0){\includegraphics[width=\paperwidth,height=\paperheight]{Textures/even_page.jpg}}
\fi
}
\Blinddocument
\end{document}
Some pages could render without any details added, some other pages would have a single folded corner, some other pages would have both corners folded, etc.
I don't know if my idea is well described (sorry, English isn't my native language).
I guess that each LaTeX compilation would give a different output. I don't think this is a problem.
Any idea about how to implement this ?