473,386 Members | 1,621 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Is there such a thing as printing to "%" scale?

Hi, I have a version of my resume that is (almost) web ready and I'm pleased with its
appearance on the screen (well, sort of heh heh, it's my first HTML). I also created
a tighter, scaled-down version from my original (Pagemaker 6.0) as an Adobe PDF, so
employers can have something that is graphically identical to the original PM6
document.

But I was just curious: For someone who (for whatever reason) wanted to quickly
print out the ENLARGED (HTML, screen)version that appears on their browser screen, is
there a way I can accommodate them by instructing the entire page to "Shrink all data
(fonts, images etc.) by xx%" when printing so it doesn't look quite so gaudy?

Thank you everyone :)

Angel
Jul 20 '05 #1
11 22195
Curious Angel <by*******@usa.net> wrote in
news:MP************************@news.intergate.com :
Hi, I have a version of my resume that is (almost) web ready and I'm
pleased with its appearance on the screen (well, sort of heh heh, it's
my first HTML). I also created a tighter, scaled-down version from my
original (Pagemaker 6.0) as an Adobe PDF, so employers can have
something that is graphically identical to the original PM6 document.
You might possibly want to post a link to this HTML file of your résumé
in another thread, so that people here can have fun ripping your HTML to
pieces. :) Then again, I presume too much.
But I was just curious: For someone who (for whatever reason) wanted
to quickly print out the ENLARGED (HTML, screen)version that appears
on their browser screen, is there a way I can accommodate them by
instructing the entire page to "Shrink all data (fonts, images etc.)
by xx%" when printing so it doesn't look quite so gaudy?


Remember that, as a rule, every browser is going to render your document
differently. Especially when printing. The trick is to use print-only
CSS:

@media print {
/* style sheet for print goes here */
}

Specifically, you might want:
@media print {
body { font-size: .8em; }
}

for the font size to be multiplied by 0.8. If all stylistic aspects of
your document are given sizes relative to font size, then everything
would presumably shrink. I suspect that might not be the case, if you
used PageMaker. Providing a URL might help the people here
help/criticize/point you further in the right direction.

--
Accessible web designs go easily unnoticed;
the others are remembered and avoided forever.
Jul 20 '05 #2
In article <Xn**************************@130.133.1.4>, hu****@rpi.edu says...
You might possibly want to post a link to this HTML file of your résumé
in another thread, so that people here can have fun ripping your HTML to
pieces. :) Then again, I presume too much.
Well "pieces" is the operative word heh heh. Don't ask me how I got it to this
point, it's . . . it's all a blur LOL.
Remember that, as a rule, every browser is going to render your document
differently. Especially when printing. The trick is to use print-only
CSS:

@media print {
/* style sheet for print goes here */
}

Specifically, you might want:
@media print {
body { font-size: .8em; }
}

for the font size to be multiplied by 0.8. If all stylistic aspects of
your document are given sizes relative to font size, then everything
would presumably shrink. I suspect that might not be the case, if you
used PageMaker. Providing a URL might help the people here
help/criticize/point you further in the right direction.
Actually the only way I was able to get this far was by exporting the PM6 to Rich
Text Format (~.rtf) . . . and then importing that into AceFile . . . and then
cleaning it up in Netscape. Other than the maddening inability for me to format the
letting (vertical spacing) on each respective line (and a few other issues related to
underscoring) it isn't too bad. It's a rough approximation of its Pagemaker
original. The PDF looks great wth LOL.

"Print only CSS" ? That is a "Cascading Style Sheet" correct? I don't suppose I
could slip those 3 lines @media print {
body { font-size: .8em; }
}

somewhere in the document and have Insta-Shrink (?) on print?

Angel
Jul 20 '05 #3
On Mon, 2 Aug 2004, Sam Hughes wrote:
Remember that, as a rule, every browser is going to render your document
differently. Especially when printing.
Damn right it is...
The trick is to use print-only CSS:
Is it? IMHO the "trick" is to keep in mind that CSS may or may not be
honoured by the client, and to design for flexibility. Printing is
only one aspect of that - the principle is a much wider one.

If you're so desperate to get a particular visual result on printing,
then I'd have to recommend offering a PDF alternative. But I'll
probably still print the HTML version, at -my- settings, even so. If
the CSS tries too hard to oppose my settings, then I'll turn it off.
That's part of the design concept of CSS, which I fully support:
clients can take it where it makes sense - disable if where it
doesn't.
Specifically, you might want:
@media print {
body { font-size: .8em; }
}


Why on Earth might you want that? Or rather, why would you want -me-
to want that? 1.0em is my preferred body font size, by definition.
Jul 20 '05 #4
Curious Angel <by*******@usa.net> wrote:
Actually the only way I was able to get this far was by exporting the PM6 to Rich
Text Format (~.rtf) . . . and then importing that into AceFile . . . and then
cleaning it up in Netscape. Other than the maddening inability for me to format the
letting (vertical spacing)


"Leading", FYI. Pronounced like "ledding".
--
Harlan Messinger
Remove the first dot from my e-mail address.
Veuillez ôter le premier point de mon adresse de courriel.
Jul 20 '05 #5
Curious Angel <by*******@usa.net> wrote in
news:MP************************@news.intergate.com :
In article <Xn**************************@130.133.1.4>, hu****@rpi.edu
says...

[...]
Actually the only way I was able to get this far was by exporting the
PM6 to Rich Text Format (~.rtf) . . . and then importing that into
AceFile . . . and then cleaning it up in Netscape. Other than the
maddening inability for me to format the letting (vertical spacing) on
each respective line (and a few other issues related to underscoring)
it isn't too bad. It's a rough approximation of its Pagemaker
original. The PDF looks great wth LOL.


Sounds like quite an adventure!

"Print only CSS" ? That is a "Cascading Style Sheet" correct? I
don't suppose I could slip those 3 lines
@media print {
body { font-size: .8em; }
}

somewhere in the document and have Insta-Shrink (?) on print?


It would need to be in a CSS file or a STYLE element, of course. I'm not
sure you think the text should shrink though.

--
Accessible web designs go easily unnoticed;
the others are remembered and avoided forever.
Jul 20 '05 #6
/-----------------------------------\
| Curious Angel <by*******@usa.net> |
\-----------------------------------/
_
/|\
/ | \
| "Alan J. Flavell" <fl*****@ph.gla.ac.uk> wrote in
| news:Pi*****************************@ppepc56.ph.gl a.ac.uk:
|
| On Mon, 2 Aug 2004, Sam Hughes wrote:
|
| Specifically, you might want:
| @media print {
| body { font-size: .8em; }
| }

|
| Why on Earth might you want that? Or rather, why would you want
| -me- to want that? 1.0em is my preferred body font size, by
| definition.

|
Huh?| I don't want that at all. He does ---\
| for some reason. \
| /
| /
\---------------------------------------/

--
Accessible web designs go easily unnoticed;
the others are remembered and avoided forever.
Jul 20 '05 #7
Sam Hughes wrote:
Curious Angel wrote:
For someone who (for whatever reason) wanted to quickly print out
the ENLARGED (HTML, screen)version that appears on their browser
screen, is there a way I can accommodate them by instructing the
entire page to "Shrink all data (fonts, images etc.) by xx%" when
printing so it doesn't look quite so gaudy?
Remember that, as a rule, every browser is going to render your
document differently. Especially when printing. The trick is to use
print-only CSS:

@media print {
/* style sheet for print goes here */
}


Note that IE/Mac, while otherwise a good CSS browser, cannot parse
@media rules, so linking multiple stylesheets might be better.

<link href="foo.css" media="screen">
<link href="bar.css" media="print">

Specifically, you might want:
@media print {
body { font-size: .8em; }
}


Why would he want to set the font size for the <body> to less than 100%
of the user's default? Sure, the op asked how, but that doesn't mean
it's a good idea. ;-)

--
Brian (remove ".invalid" to email me)
http://www.tsmchughs.com/
Jul 20 '05 #8
Curious Angel wrote:
For someone who (for whatever reason) wanted to quickly print out the
ENLARGED (HTML, screen)version that appears on their browser screen,
What do you mean by "englarged...version"? As usual, a url would help.
is there a way I can accommodate them by instructing the entire page
to "Shrink all data (fonts, images etc.) by xx%" when printing so it
doesn't look quite so gaudy?


You could try to create your own widget, in the page, to shrink the text
size, but that would mean users would have to learn something that will
only work on your site. You could create an alternate stylesheet with a
smaller font size, and explain to users how they can select that
alternate stylesheet, but IE/Win cannot do such a thing. Besides, if
you're going to teach them how to perform some function in their
browser, why not teach them how to change the font size? Simpler, more
broadly supported.

--
Brian (remove ".invalid" to email me)
http://www.tsmchughs.com/
Jul 20 '05 #9
Curious Angel <by*******@usa.net> wrote in
news:MP************************@news.intergate.com :
Hi, I have a version of my resume that is (almost) web ready and I'm
pleased with its appearance on the screen (well, sort of heh heh, it's
my first HTML). I also created a tighter, scaled-down version from my
original (Pagemaker 6.0) as an Adobe PDF, so employers can have
something that is graphically identical to the original PM6 document.

But I was just curious: For someone who (for whatever reason) wanted
to quickly print out the ENLARGED (HTML, screen)version that appears
on their browser screen, is there a way I can accommodate them by
instructing the entire page to "Shrink all data (fonts, images etc.)
by xx%" when printing so it doesn't look quite so gaudy?


Note that the web is not a medium in which you can or should try to
succeed at making a document look exactly as intended. For all the
neatness and niceness and cool horizontal lines a résumé is supposed to
have, that whole idea goes down the drain when it comes to the web.
Users have control over the document, not you. Why would the HTML
document be "enlarged"? As other people have heckled me for not having
reminded you, the document is merely displayed at the size the visitor
prefers.

--
Accessible web designs go easily unnoticed;
the others are remembered and avoided forever.
Jul 20 '05 #10
Curious Angel wrote:
But I was just curious: For someone who (for whatever reason) wanted to quickly
print out the ENLARGED (HTML, screen)version that appears on their browser screen, is
there a way I can accommodate them by instructing the entire page to "Shrink all data
(fonts, images etc.) by xx%" when printing so it doesn't look quite so gaudy?


That's a user/browser job, not yours. Firefox can scale prints easily.

--
Mark.
Jul 20 '05 #11
In article <Xn*************************@130.133.1.4>, hu****@rpi.edu says...
Note that the web is not a medium in which you can or should try to
succeed at making a document look exactly as intended. For all the
neatness and niceness and cool horizontal lines a résumé is supposed to
have, that whole idea goes down the drain when it comes to the web.
Users have control over the document, not you. Why would the HTML
document be "enlarged"? As other people have heckled me for not having
reminded you, the document is merely displayed at the size the visitor
prefers.


Sam . . . I believe this is where I say "DUH" and go find a wall to bang my head
against LOL.

I don't know why the fact of User-Preferenced Font-Size (directly from the browser,
DUH) didn't dawn on me. Of COURSE this makes my entire thread irrelevant ha ha.

Thank you anyway friends. And yes, I'll get the resume up so that everyone can
roundly issue their verdicts. Believe me, after being self-employed for 20 years,
there is nothing anyone could say that would depress me more than the fact that I am
even doing a resume (sigh).

Angel
Jul 20 '05 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

42
by: Prashanth Badabagni | last post by:
Hi, Can any body tell me how to print "hello,world" with out using semicolon Thanks in advance .. Bye Prashanth Badabagni
0
by: Harry Whitehouse | last post by:
I misposted this quesiton earlier in this newsgroup. The print dialog in my application (the one where you select a printer) can be centered on the parent form without much trouble. But can one...
25
by: mdh | last post by:
I wrote a little insignificant program, to help me write a more significant one!!...that was supposed to print all Ascii values from 0 to 127: >>>> #include <stdio.h> # define UPPER_LIMT 127...
0
by: Emby | last post by:
Hi, I am aware that the "Printing" dialog displayed by a PrintDocument during the invocation of the doc.Print method can be suppressed by setting the doc's PrintController property to an instance...
0
by: Emby | last post by:
Hi, I am aware that the "Printing" dialog displayed by a PrintDocument during the invocation of the doc.Print method can be suppressed by setting the doc's PrintController property to an...
1
by: Eric Hanchrow | last post by:
(This is with Python 2.5.2, on Ubuntu Hardy, if it matters.) This seems so basic that I'm surprised that I didn't find anything about it in the FAQ. (Yes, I am fairly new to Python.) Here are...
3
by: J. Cliff Dyer | last post by:
On Thu, 2008-05-08 at 12:00 -0700, Eric Hanchrow wrote: It's the same reason as this: 5 5 6 5 Python "variables" are just names that point at objects. When you
1
by: samneil | last post by:
I have 1 Database( MS Access) with 9 tables and 6 queries, Now I'm trying to view my 2 different tables on my VB6.0 using 2 Datagrids and 2"adodc".... here are the names of my two tables:...
0
by: Tim | last post by:
Our application has used this PrintersClass module for some time without a problem but some new Toughbooks have caused problems. We use laser printers, usually the default choice, and some label...
1
by: =?Utf-8?B?Y2FzdGVyYnJpZGdl?= | last post by:
HP deskjet F2180 printer, windows XP with SP3 installed. Bought printer when we were still at SP2 and it was fine printing all my works database stuff, haven't used it for a while but now I get an...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.