Hi
I have a fairly complex LaTeX document, intended for printing at a press. The press would like all pages in the output document to be mirror images of the original pages for the highest quality of output.
Is there some way to mirror all pages of a LaTeX file (or its output PDF) ?
thanks
s.b.
Page Layout ⇒ Generating mirror-image pages
NEW: TikZ book now 40% off at Amazon.com for a short time.
Re: Generating mirror-image pages
Hi there,
Not being an expert in press related topics, could you give me more details on what you mean by mirror page? Do you want to have the same text on the forth and the back of the page? Do you want to have the headers/footers placed so that the page number is always on the outside/inside of the page? Any additional information would be helpful, like the document class you are using. The different packages used that you might find important for your document.
With a bit more help, I believe we can help you find a suitable solution. Cheers
Not being an expert in press related topics, could you give me more details on what you mean by mirror page? Do you want to have the same text on the forth and the back of the page? Do you want to have the headers/footers placed so that the page number is always on the outside/inside of the page? Any additional information would be helpful, like the document class you are using. The different packages used that you might find important for your document.
With a bit more help, I believe we can help you find a suitable solution. Cheers
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Generating mirror-image pages
There are two possible solutions. The easier one is to use the crop package with the mirror option.sierra1bravo wrote:[...] I have a fairly complex LaTeX document, intended for printing at a press. The press would like all pages in the output document to be mirror images of the original pages for the highest quality of output.
Is there some way to mirror all pages of a LaTeX file (or its output PDF) ? [...]
Code: Select all
\usepackage[mirror]{crop}
Code: Select all
dvips -h mirr.hd document.dvi
Best regards
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
-
- Posts: 11
- Joined: Sun Jan 04, 2009 7:28 am
Generating mirror-image pages
Thanks for your response. What I meant was that the content in each page should be 'reflected' as would be seen in a mirror. I'm not sure why the press should want it thus.fatra2 wrote:Hi there,
Not being an expert in press related topics, could you give me more details on what you mean by mirror page? Do you want to have the same text on the forth and the back of the page? Do you want to have the headers/footers placed so that the page number is always on the outside/inside of the page? Any additional information would be helpful, like the document class you are using. The different packages used that you might find important for your document.
With a bit more help, I believe we can help you find a suitable solution. Cheers
In any case, the solution provided below by Thorsten (the first one) does this in a beautifully simple manner.
best
s.b.