Text Formattingset trim box and bleed box

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
hm24_arul
Posts: 11
Joined: Tue Mar 31, 2009 8:04 am

set trim box and bleed box

Post by hm24_arul »

Hi all
pdf from created from adobe indesign can view the trim and bleed box in adobe Acrobat is there any way to set trim and bleed box or mark in latex

thanks in advance

regards
a r u l

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

set trim box and bleed box

Post by localghost »

I'm not familiar with Adobe Acrobat and the term »bleed box« is completely new to me. But I think that you need the trim or viewpoint option for the \includegraphics command from the graphicx package.


Best regards
Thorsten¹
hm24_arul
Posts: 11
Joined: Tue Mar 31, 2009 8:04 am

Re: set trim box and bleed box

Post by hm24_arul »

Hi localghost

I am talking about Edit>Preferences>General>Pagedisplay> Show art, trim & bleed boxes in Adobe Acrobat I can see the bleed area and trim area using this option in PDFs created in Indesign but PDFs created from Latex I cant get the items

I hope now I am clear from myside

thanks in advance

regards
a r u l
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Re: set trim box and bleed box

Post by localghost »

Obviously LaTeX doesn't set these parameters. And to me they seem superfluous for document preparation like it's done with LaTeX. They are more common in the DTP scene.
WillAdams
Posts: 1
Joined: Wed May 29, 2013 4:29 pm

set trim box and bleed box

Post by WillAdams »

There are packages and document classes which will set and handle such boxes, which are not superfluous, and are not limited to the pejoratively named Desktop Publishing (DTP).

Here is the command for the preamble to directly place a 6in. by 9in. trim box w/ 9pts. of bleed on a standard letter sized page:

Code: Select all

\pdfpageattr{
/MediaBox [0 0 612.00000 792.00000]
/BleedBox [81.0 63.0 531.0 729.0]
/CropBox [0 0 612.00000 792.00000]
/TrimBox [90.0 72.0 522.0 720.0]
}
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

set trim box and bleed box

Post by localghost »

WillAdams wrote:There are packages and document classes which will set and handle such boxes, which are not superfluous, and are not limited to the pejoratively named Desktop Publishing (DTP). […]
Perhaps you can list some of those classes and packages. Just saying there are some is not so helpful.
WillAdams wrote:Here is the command for the preamble to directly place a 6in. by 9in. trim box w/ 9pts. of bleed on a standard letter sized page:

Code: Select all

\pdfpageattr{
/MediaBox [0 0 612.00000 792.00000]
/BleedBox [81.0 63.0 531.0 729.0]
/CropBox [0 0 612.00000 792.00000]
/TrimBox [90.0 72.0 522.0 720.0]
}
Nice answer. But for solutions it's the same as for questions. A complete example is best. To me these lines are quite meaningless. Perhaps you can add some explanations.
Post Reply