<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>4x PDF Blog &#38; PDF News - Archived by Planet PDF - Debenu &#187; Tips and Tutorials</title>
	<atom:link href="http://www.4xpdf.com/category/tips-tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.4xpdf.com</link>
	<description>PDF News, PDF Articles, PDF Tips and PDF Rants on ... PDF!</description>
	<lastBuildDate>Thu, 06 Jan 2011 12:54:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Technical background to PDF font options</title>
		<link>http://www.4xpdf.com/2010/03/technical-background-to-pdf-font-options/</link>
		<comments>http://www.4xpdf.com/2010/03/technical-background-to-pdf-font-options/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 14:00:11 +0000</pubDate>
		<dc:creator>Kevin Newman</dc:creator>
				<category><![CDATA[PDF Editor]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[Under The PDF Hood]]></category>
		<category><![CDATA[adobe font packs]]></category>
		<category><![CDATA[cmaps]]></category>
		<category><![CDATA[encoding formats]]></category>
		<category><![CDATA[font data]]></category>
		<category><![CDATA[font embedding]]></category>
		<category><![CDATA[fonts]]></category>
		<category><![CDATA[pdf font options]]></category>
		<category><![CDATA[pdf standard fonts]]></category>
		<category><![CDATA[predefined cmaps]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[text in pdf files]]></category>

		<guid isPermaLink="false">http://www.4xpdf.com/?p=3713</guid>
		<description><![CDATA[The PDF specification provides many options for the display of textual content and the related extraction of the text content. In this article I will try to highlight the key areas and terms that you will encounter when working under the hood with fonts in PDF files.<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2010/03/technical-background-to-pdf-font-options/">Technical background to PDF font options</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<p><em><strong>Editors Note:</strong></em><em> This article is part of our </em><strong><em>Under The Hood of a PDF</em></strong><em> series which examines PDF files from a technical perspective.</em></p>
<p>The PDF specification provides many options for the display of textual content and the related extraction of the text content. In this article I will try to highlight the key areas and terms that you will encounter when working under the hood with fonts in PDF files. Key terms that you should take note of are in bold.</p>
<h3>PDF text definitions</h3>
<p>Each block of text in a PDF document consists of four sets of data.</p>
<ol>
<li>The <strong>encoded characters</strong> which are sequences of bytes that represent the individual character codes that make up the text</li>
<li>The <strong>font data</strong> which is a group of glyphs (character visualisations) accessed by a unique number called a <strong>Glyph ID</strong></li>
<li>A map that links the encoded character codes to Glyph IDs</li>
<li>A map that links the character codes to Unicode values. This map is not needed when displaying the PDF but is required to allow the user to extract text content from the document (for example when selecting text and copying it to the clipboard to be pasted into another application).</li>
</ol>
<p>Multiple blocks of encoded characters can be linked to the same maps and font data.</p>
<h3>Font data</h3>
<p>The font data can be stored in a number of possible formats:</p>
<ol>
<li>Adobe Type 1 Font Format, known as a<strong> Type 1</strong> font</li>
<li>Adobe Compact Font Format, known as a <strong>CFF</strong> font</li>
<li>A standard <strong>TrueType</strong> font</li>
<li>An <strong>OpenType</strong> font which has a similar structure to a TrueType font but allows the glyph outline descriptions to be either TrueType or CFF format.</li>
<li>A <strong>Type 3</strong> font which uses PDF drawing commands to define the glyph outlines. This font format allows greater flexibility over the appearance of the glyphs but does not include a <strong>hinting </strong>mechanism resulting in reduced visual quality for small text or low resolutions.</li>
</ol>
<h3>Font embedding</h3>
<p>Font data can be <strong>embedded </strong>into the PDF. This allows the PDF to be viewed in exactly the same way on any computer. If the font data is not embedded the PDF viewer it is simply specified by name.</p>
<p><strong>Non-embedded</strong> fonts force the PDF viewer application to look on the user&#8217;s computer for a similar font. This may result in differences in the display of the text when viewed on different computers with different installed fonts.</p>
<p>Embedded font data can consist of a complete font file or it can be a<strong> font subset</strong> which contains only the font data for a smaller number of glyphs. For example, if a PDF consists mainly of English text with a small piece of Japanese text, the font for the Japanese text could be subsetted to only include the glyphs actually used discarding the font data for the unused glyphs. This dramatically reduces the size of the embedded font data resulting in a smaller file size for the PDF.</p>
<h3>Encoding formats</h3>
<p>Fonts can specify either simple or composite encoding.</p>
<p><strong>Simple encoding</strong> uses 8-bit character codes mapped to a character set. This means that a maximum of 255 characters can be displayed from the font.</p>
<p>Predefined character sets can be used directly or adjusted using a <strong>differences array</strong>. The predefined character set encodings are:</p>
<ol>
<li><strong>StandardEncoding</strong> is the default character set used for Latin-text Type 1 font programs. This is a direct mapping to the order of the glyphs in the font.</li>
<li><strong>MacRomanEncoding</strong> is the standard 8-bit character set used in Western versions of the Apple Mac OS operating system. Type 1 and TrueType fonts usually contain an internal cmap table to map character codes to Glyph IDs.</li>
<li><strong>WinAnsiEncoding</strong> is the standard Windows-1252 character set used in Western versions of the Microsoft Windows operating system. Type 1 and TrueType fonts usually contain an internal cmap table to map character codes to Glyph IDs.</li>
</ol>
<p>The alternative is <strong>composite encoding</strong> which uses a two step process to encode characters:</p>
<ol>
<li>In the first step, the defined encoding format is used to translate a character code to a <strong>character identifier</strong> or CID. The CID value is used to look up font metrics for the character (such as the vertical and horizontal width of the character).</li>
<li>The second step uses a setting from the font definition to translate the CID to a Glyph ID allowing the character to be displayed using the glyph description in the font data.</li>
</ol>
<p>Composite encoding allows characters to be encoded using multiple bytes. <strong>Fixed‑length encoding</strong> uses the same number of bytes for each character while <strong>variable‑length</strong> encoding can use varying byte lengths for different character codes.</p>
<p>For example, <strong>UCS‑2 </strong>is a fixed‑length encoding that always uses two bytes for each character with the character codes representing characters in the Unicode character set.</p>
<p><strong>UTF‑16 </strong>is another encoding for the Unicode character set. It is a variable‑length encoding that uses two bytes for most common characters and four bytes for others.</p>
<p>The variable-length <strong>UTF-8</strong> encoding uses from one to four bytes to encode the Unicode character set. Single-byte character codes are used for most English text, two or three bytes for common characters in other languages and four bytes for rarely used characters.</p>
<p><strong>Shift JIS</strong> uses one or two bytes to encode Japanese characters corresponding to Code Page 932 used in the Japanese version of Microsoft Windows.</p>
<p><strong>Identity‑H</strong> is a simple fixed-length mapping that uses 16-bit character codes. Each two-byte character code maps directly to a CID value.</p>
<p>For composite encoding a structure called a <strong>CMap </strong>is used to define the encoding format and the character set of the encoded character codes. A special type of CMap called a <strong>ToUnicode </strong>CMap is used to translate from CID values to Unicode character codes.</p>
<p>When composite encoding is used with either TrueType fonts or OpenType fonts containing TrueType glyph outlines a <strong>CIDToGIDMap </strong>structure is used to translate CIDs to Glyph IDs.</p>
<p>When composite encoding is used with either CFF fonts or OpenType fonts containing CFF glyph outlines the font data is used to translate CIDs to Glyph IDs.</p>
<h3>PDF Standard Fonts</h3>
<p>The PDF specification provides a list of fonts known as the <strong>standard 14 fonts</strong>. These fonts are guaranteed to be available in all PDF viewer applications that conform to the PDF specification so text using these standard fonts do not require embedded font data.</p>
<h3>Adobe Font Packs</h3>
<p>Adobe Acrobat and Adobe Reader have a feature that automatically downloads and installs a Font Pack when a PDF document is opened containing non-embedded fonts with font names that match the fonts in the Font Pack.</p>
<p>For example, the font named HeiseiKakuGo-W5 is part of the Asian Font Pack. A PDF document could contain a non-embedded font with this font name. If Adobe Acrobat or Adobe Reader opens such a PDF document and the font isn&#8217;t available on the system it will offer to automatically download the Asian Font Pack and successfully display the content of the PDF.</p>
<h3>Predefined CMaps</h3>
<p>The PDF specification provides a list of predefined CMaps. A PDF document may contain text that has been encoded using any of these predefined CMaps without embedding the CMap into the file. This reduces the file size of the PDF and allows text to be extracted easily.</p>
<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2010/03/technical-background-to-pdf-font-options/">Technical background to PDF font options</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.4xpdf.com/2010/03/technical-background-to-pdf-font-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Earning Money in the Freelance Market with PDF Conversion (to source documents)</title>
		<link>http://www.4xpdf.com/2010/03/earning-money-in-the-freelance-market-with-pdf-conversion-to-source-documents/</link>
		<comments>http://www.4xpdf.com/2010/03/earning-money-in-the-freelance-market-with-pdf-conversion-to-source-documents/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 06:00:44 +0000</pubDate>
		<dc:creator>4x PDF Tutorial Team</dc:creator>
				<category><![CDATA[PDF Conversion]]></category>
		<category><![CDATA[PDF Security]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[freelance]]></category>
		<category><![CDATA[freelancing]]></category>
		<category><![CDATA[pdf tips]]></category>
		<category><![CDATA[PDF Tips and Tutorials]]></category>

		<guid isPermaLink="false">http://www.4xpdf.com/?p=2972</guid>
		<description><![CDATA[If you are one of the skilled and adept in the ever-increasing freelance market and you are looking to do something really new, try 'PDF conversion', and read on...<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2010/03/earning-money-in-the-freelance-market-with-pdf-conversion-to-source-documents/">Earning Money in the Freelance Market with PDF Conversion (to source documents)</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<p>If you are one of the many skilled and adept workers in the ever-increasing freelance market and you are looking to do something really new, try &#8216;PDF conversion&#8217;, and read on&#8230;</p>
<p><strong>Search out a good freelance market</strong></p>
<p>There are various websites offering freelance work, choose the one you are comfortable with. You can choose from Elance, Getafreelancer or Limexchange and many more like these.</p>
<p><strong>Learn how to bid</strong></p>
<p>Bidding is an essential part of the process. Try to bid in a productive way and provide your working hours and availability too. Make a bid between the range specified by the provider if you feel you can live up to the provider&#8217;s expectation.</p>
<p><strong>Converting PDF to other documents professionally</strong></p>
<p>You might wonder why would you opt for PDF conversion? Well firstly, PDF conversion to is one of the hottest projects that you can find on the freelance market because once a PDF has been created &#8212; it be can be almost considered to be like a printed piece of paper. With very few exceptions, it has almost no knowledge of its source application.  Second, editing PDF is generally not easy for &#8220;non-experts&#8221; &#8212; many PDF users do not have the ability or even capability to convert PDF to Word, PowerPoint or even HTML. Thirdly, PDF files can have security restrictions, people cannot copy or paste the content to Word document because of these restrictions. Many times there are users who have the legal right to get the content but don&#8217;t want to retype the PDF again hence they post these kinds of projects to freelance market</p>
<p>Job providers will send you some PDF files, and then you need to convert them to the formats they want. Usually, the provider will require that the original text content, images, layouts and even hyperlinks should be retained in the final format. Though various PDF converters are available in the market, you need to find the best one or even purchase a few to assemble a collection so you can produce the best results for your clients.</p>
<p>If the provider wants you to convert a scanned PDF, then you need an OCR converter. OCR&#8217;ing is required to create text in the PDF by analyzing the scanned image for characters that it recognizes as text.</p>
<p>Good luck!</p>
<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2010/03/earning-money-in-the-freelance-market-with-pdf-conversion-to-source-documents/">Earning Money in the Freelance Market with PDF Conversion (to source documents)</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.4xpdf.com/2010/03/earning-money-in-the-freelance-market-with-pdf-conversion-to-source-documents/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PDFs And MAC OS X Preview</title>
		<link>http://www.4xpdf.com/2010/03/pdfs-and-mac-os-x%e2%80%99s-preview/</link>
		<comments>http://www.4xpdf.com/2010/03/pdfs-and-mac-os-x%e2%80%99s-preview/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 11:55:59 +0000</pubDate>
		<dc:creator>4x PDF Tutorial Team</dc:creator>
				<category><![CDATA[Free]]></category>
		<category><![CDATA[PDF Reader]]></category>
		<category><![CDATA[PDF Tools]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Preview]]></category>

		<guid isPermaLink="false">http://www.4xpdf.com/?p=3555</guid>
		<description><![CDATA[Do you know that if you are using MAC OS X, you don't need a PDF reader to view your PDF files? If you want to discover this secret, read on...<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2010/03/pdfs-and-mac-os-x%e2%80%99s-preview/">PDFs And MAC OS X Preview</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<p>Do you know that if you are using MAC OS X, you don&#8217;t need a PDF reader to view your PDF files?</p>
<p>If you want to discover this secret do the following:</p>
<p>1- Go to: <em>Macintosh HD:Applications:Preview</em>.</p>
<p>2- Double click at the <em>Preview</em> icon.</p>
<p>3- The <em>Preview </em>icon will appear at the <em>Dock</em> (appears at the bottom of the screen where your frequently used applications, files, and folders appear), and at the top of the screen, the Preview <em>menu</em> appears.</p>
<p>4- Now, it is time to open your PDF. Here, you can do this in three ways:</p>
<p>4.1. From Preview&#8217;s menu, choose: File -&gt; Open&#8230;</p>
<p>4.2. Drag the PDF document to the Preview application icon.</p>
<p>4.3. If Adobe Reader is not installed, by double clicking the PDF document.</p>
<p>You should get something as shown in figure (1) below.</p>
<p style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-13.png"><img class="size-medium wp-image-3502  aligncenter" src="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-13-299x239.png" alt="" width="299" height="239" /></a></p>
<p style="text-align: center;"><strong>Figure (1):</strong> <em>Opening A PDF Document Using Preview</em></p>
<p>There are also many other things you can do with <em>Preview</em>. A really nice feature here is that you can save your PDF document pages to different formats (GIF, JPEG, JPEG-2000, Microsoft BMP, OpenEXR, Photoshop, PICT, PNG, SGI, TGA, TIFF).</p>
<p>So, in order for example to save a PDF document&#8217;s page to JPEG format, do the following:</p>
<div>1- Open the PDF document using Preview as shown in the preceding steps.</div>
<div>2- From Preview&#8217;s menu, choose: File -&gt; Save As&#8230;, in which case, you should have a dialog appear as shown in figure (2).</div>
<div style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-23.png"><img class="aligncenter size-medium wp-image-3509" src="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-23-300x231.png" alt="" width="300" height="231" /></a><strong> </strong></div>
<div style="text-align: center;"><strong>Figure (2): </strong>P<em>review&#8217;s Save As Dialog Box</em></div>
<div style="text-align: center;">
<div style="text-align: left;">3- In <em>Format</em>, choose <em>JPEG</em>.</div>
<div style="text-align: left;">4- If you want, change the <em>quality</em> and <em>resolution</em>.</div>
<div style="text-align: left;">5- Click the <em>Save</em> button. In this case, you should have something similar to what is shown in figure (3).</div>
<div style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-32.png"><img class="aligncenter size-medium wp-image-3512" src="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-32-230x300.png" alt="" width="230" height="300" /></a><strong> </strong></div>
<div style="text-align: center;"><strong>Figure (3): </strong><em>First Page Of The PDF Document Saved As A JPEG Format</em></div>
<div style="text-align: left;"><em><br />
</em></div>
</div>
<p>A final feature I want to talk about here that you can do to your PDFs is the feature of sending your PDF document as an email <strong>directly</strong> from within Preview.</p>
<p>To do this, try the following steps:</p>
<div>1- Open the PDF document using Preview as previously shown.</p>
<div>2- From Preview&#8217;s menu, choose: File -&gt; Mail Document, in which case, the <em>Mail</em> application opens and the <em>New Message</em> window appears so you can send the PDF document. Look at figure (4).</div>
<div style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-42.png"><img class="aligncenter size-medium wp-image-3515" src="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-42-300x206.png" alt="" width="300" height="206" /></a></p>
<div><strong>Figure (4):</strong> <em>Sending The PDF Document Directly From Within Preview Through Mail</em></div>
<div style="text-align: left;">3- In the <em>New Message</em> window, type the receiver&#8217;s email and the subject, and hit the <em>Send </em>button located at the top left of the <em>New Message</em> window. Isn&#8217;t that beautiful?</div>
</div>
<div style="text-align: left;"><em><br />
</em></div>
<p><strong>Reference:</strong><br />
<em>PDF Hacks, 100 Industrial-Strength Tips &amp; Tool</em><br />
By: Sid Steward<br />
<a href="http://www.oreillynet.com/pub/au/1754?x-t=book.view" target="_blank"></a>Publisher: O&#8217;Reilly Media, Inc.<br />
Pub. Date: August 16, 2004<br />
Print ISBN-13: 978-0-596-00655-6</p>
<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2010/03/pdfs-and-mac-os-x%e2%80%99s-preview/">PDFs And MAC OS X Preview</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.4xpdf.com/2010/03/pdfs-and-mac-os-x%e2%80%99s-preview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Viewing PDF Documents In MAC OS X Using Firefox</title>
		<link>http://www.4xpdf.com/2010/03/viewing-pdf-documents-in-mac-os-x-using-firefox/</link>
		<comments>http://www.4xpdf.com/2010/03/viewing-pdf-documents-in-mac-os-x-using-firefox/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 06:00:41 +0000</pubDate>
		<dc:creator>4x PDF Tutorial Team</dc:creator>
				<category><![CDATA[Free]]></category>
		<category><![CDATA[PDF Online]]></category>
		<category><![CDATA[PDF Reader]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[Firefox PDF Plugin]]></category>
		<category><![CDATA[Firefox: 3.6b1pre – 3.6]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://www.4xpdf.com/?p=3189</guid>
		<description><![CDATA[Are you using MAC OS X and Firefox and would like to view PDF documents directly through Firefox? Then this article is for you. In order to do that using Firefox, we need an extra "Add-on" for Firefox, since this feature does not come built-in with your Firefox installation. The "Add-on" that we need for this task is called: Firefox PDF Plugin for Mac OS X 1.1.3.<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2010/03/viewing-pdf-documents-in-mac-os-x-using-firefox/">Viewing PDF Documents In MAC OS X Using Firefox</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<p>Are you using MAC OS X and Firefox and would like to view PDF documents directly through Firefox? Then this article is for you.</p>
<p>In order to do that using Firefox, we need an extra &#8220;Add-on&#8221; for Firefox, since this feature does not come built-in with your Firefox installation.</p>
<p>So, what &#8220;Add-on&#8221; do we need here?</p>
<p>The &#8220;Add-on&#8221; that we need for this task is called: <strong>Firefox PDF Plugin for Mac OS X 1.1.3</strong>.</p>
<p>Let us now go ahead and see how to get this &#8220;Add-on&#8221;, install it, and use it in Firefox.</p>
<p>1- Fire up your Firefox browser.</p>
<p>2- Go to this web page: <a href="https://addons.mozilla.org" target="_blank">https://addons.mozilla.org</a></p>
<p>3- In the <strong>search for add-ons</strong> text box, copy the following sentence: <strong>Firefox PDF Plugin for Mac OS X 1.1.3</strong>,<strong> </strong>which is the name of the add-on, and paste it in the text box.</p>
<p>4- Leave the second text box<strong> all add-ons </strong>as is, and click the <span style="color: #008000;"><strong>green</strong></span> button that has a white triangle inside it.</p>
<p>5- You will get a new search results page with one result displayed in it. Look at figure (1).</p>
<p style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-12.png"><img class="size-medium wp-image-3206    aligncenter" src="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-12-300x250.png" alt="" width="300" height="250" /></a><strong> </strong><strong> </strong></p>
<p style="text-align: center;"><strong>Figure (1):</strong> <em>The Search Results Page</em></p>
<p>6- Click at the <strong>Firefox PDF Plugin for MAC OS X</strong> link, in which case, the <em>download</em> page such as the one shown in figure (2) below should appear.</p>
<p style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-22.png"><img class="size-medium wp-image-3207    aligncenter" src="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-22-300x250.png" alt="" width="300" height="250" /></a><strong> </strong></p>
<p style="text-align: center;"><strong>Figure (2): </strong><em>The Firefox PDF Plugin for Mac OS X 1.1.3 Download Page</em></p>
<p>7- Before going ahead and adding the &#8220;Add-on&#8221;, check first that the &#8220;Add-on&#8221; is compatible with the version of the Firefox installation you have.</p>
<p>If you look under the <strong><span style="color: #008000;">green</span></strong> <strong>Add to Firefox (MacOSX) </strong>button, and beside <strong>Works with</strong>, you will notice the following written: <strong>F</strong><strong><em>irefox: 3.6b1pre – 3.6.*</em><span style="font-weight: normal;">, which represents the Firefox versions the current release of the &#8220;Add-on&#8221; works with.</span></strong></p>
<p><strong><span style="font-weight: normal;">If you don&#8217;t have suitable version of Firefox the add-on works with, you can <em>update</em> your Firefox version by going to </span>Help -&gt; Check for Updates&#8230;</strong>, or, if you want to keep your older version of Firefox, you can check if there are other older releases of the &#8220;add-on&#8221; that work with your version of Firefox by clicking the <strong>View All Versions</strong> link at the bottom of the &#8220;Add-on&#8221; download page. Look at figure (2).</p>
<p>8- When you are ready for adding the &#8220;Add-on&#8221;, simply click at the <span style="color: #008000;"><strong>green</strong></span> <strong>Add to Firefox (MacOSX) </strong>button, in which case, a dialog box appears as shown in figure (3).</p>
<div style="text-align: center;"><em><a href="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-31.png"><em> </em></a></em></div>
<div style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-31.png"><img class="aligncenter size-medium wp-image-3210" src="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-31-300x250.png" alt="" width="300" height="250" /></a></div>
<div style="text-align: center;"><strong>Figure (3):</strong><em> The Install Add-on Dialog Box</em></div>
<p>9- Click the <strong>Install Now</strong> button.</p>
<p>10- When the &#8220;Add-on&#8221; is being downloaded, click on the <strong>Restart Firefox</strong> button in order to complete your changes. Look at figure (4).</p>
<p style="text-align: center;"><img class="size-medium wp-image-3213  aligncenter" src="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-41-300x250.png" alt="" width="300" height="250" /><em> </em></p>
<p style="text-align: center;"><strong>Figure (4):</strong><em> Firefox PDF Plugin For Mac OS X 1.1.3 Installed And Restarting Firefox Required For Changes To Take Place</em></p>
<p>11- After installing and restarting Firefox, let us check if the &#8220;Add-on&#8221; was installed successfully. In order to do that, and in the Firefox menu bar, click on <strong>Tools</strong> and then choose <strong>Add-ons</strong>.</p>
<p>If your &#8220;Add-on&#8221; was installed successfully, you should see a message saying: <strong>1 new add-on has been installed </strong>with an <span style="color: #ff6600;"><strong>orange</strong></span> background. Look at figure (5).</p>
<div style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-7.png"><img class="aligncenter size-medium wp-image-3229" src="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-7-300x250.png" alt="" width="300" height="250" /></a></div>
<div style="text-align: center;"><strong>Figure (5):</strong> <em>Firefox PDF Plugin For Mac OS X 1.1.3 Installed Successfully</em></div>
<p>And, thus, should have the <em>Firefox PDF Plugin For Mac OS X </em>available in the <em>Add-ons</em> list. Look at figure (6).</p>
<div style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-5.png"><img class="aligncenter size-medium wp-image-3224" src="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-5-300x250.png" alt="" width="300" height="250" /></a></div>
<div style="text-align: center;"><strong>Figure (6):</strong> Firefox PDF Plugin For Mac OS X Available in the Add-ons List</div>
<p>Having installed the &#8220;Add-on&#8221; successfully, let us see now how we can use it.<br />
a- Go to: <a href="http://www.google.com" target="_blank">http://www.google.com</a><br />
b- Click on the <strong>Advanced Search</strong> link.<br />
c- Under  <strong>Find web pages that have&#8230; </strong>and beside the <strong>all these words: </strong>field, type <em>Software Engineering </em>or whatever you like.<br />
d- Under <strong>Need more tools? </strong>and beside the <strong>File type:</strong> field, choose <strong>Adobe Acrobat PDF (.pdf)</strong>. Look at figure (7).</p>
<div style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-6.png"><img class="aligncenter size-medium wp-image-3227" src="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-6-300x250.png" alt="" width="300" height="250" /></a></div>
<div style="text-align: center;"><strong>Figure (7):</strong> <em>Google Advanced Search</em></div>
<p>e- Click the <strong>Advanced Search</strong> button.</p>
<p>f- In the results page, choose whatever link you like. Say we chose <strong>Process Models in Software Engineering</strong>.<br />
Notice that instead of being prompted to choose a PDF viewer you use in order to <em>open</em> the PDF file, or <em>save</em> it and view it using any PDF viewer you use, and this was the case before installing this &#8220;Add-on&#8221;, you can view the PDF file <strong>directly </strong>from within your Firefox browser.</p>
<p>So, if you hadn&#8217;t had the <em>Firefox PDF Plugin for Mac OS X</em>, you will have as shown in figure (8).</p>
<div style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-10.png"><img class="aligncenter size-medium wp-image-3235" src="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-10-300x250.png" alt="" width="300" height="250" /></a></div>
<div style="text-align: center;"><strong>Figure (8):</strong> <em>The Way Of Viewing PDF Files Without The Firefox PDF Plugin for Mac OS X</em></div>
<p>But, when you are having the <em>Firefox PDF Plugin for Mac OS X</em>, and thus the ability of viewing the PDF files within your Firefox browser, you should have something like shown in figure (9) after clicking on the PDF file link.</p>
<div style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-111.png"><img class="aligncenter size-medium wp-image-3236" src="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-111-300x250.png" alt="" width="300" height="250" /></a></div>
<div style="text-align: center;"><strong>Figure  (9):</strong> <em>The Way Of Viewing PDF Files Through The Firefox PDF Plugin  for Mac OS X</em></div>
<div style="text-align: center;"><em><br />
</em></div>
<div style="text-align: center;"><strong>Voila!</strong></div>
<div style="text-align: center;"><em><br />
</em></div>
<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2010/03/viewing-pdf-documents-in-mac-os-x-using-firefox/">Viewing PDF Documents In MAC OS X Using Firefox</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.4xpdf.com/2010/03/viewing-pdf-documents-in-mac-os-x-using-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Downloading Your Google Docs Document As PDF</title>
		<link>http://www.4xpdf.com/2010/03/downloading-your-google-docs-document-as-pdf/</link>
		<comments>http://www.4xpdf.com/2010/03/downloading-your-google-docs-document-as-pdf/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 00:11:38 +0000</pubDate>
		<dc:creator>4x PDF Tutorial Team</dc:creator>
				<category><![CDATA[Editorials]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[PDF Online]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[google docs]]></category>
		<category><![CDATA[google pdf]]></category>
		<category><![CDATA[pdf online]]></category>

		<guid isPermaLink="false">http://www.4xpdf.com/?p=2927</guid>
		<description><![CDATA[Google Docs is really a wonderful alternative to Office applications where you can create your documents, spreadsheets, presentations, and forms. Suppose you have created a "Document" through Google Docs and wanted that document in PDF format.<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2010/03/downloading-your-google-docs-document-as-pdf/">Downloading Your Google Docs Document As PDF</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<p>Google Docs is really a wonderful alternative to Office applications where you can create your documents, spreadsheets, presentations, and forms.</p>
<p>Suppose you have created a &#8220;Document&#8221; through Google Docs and wanted that document in PDF format. What to do?</p>
<p>Simply follow the steps below.</p>
<p>1- Open your document using Google Docs. Look at figure (1).</p>
<p style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-1.png"><img class="aligncenter size-medium wp-image-2930" src="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-1-300x240.png" alt="" width="300" height="240" /></a><strong> </strong></p>
<p style="text-align: center;"><strong>Figure(1</strong>): <em>Google Docs Document</em></p>
<p style="text-align: left;">2- Click on the &#8220;<strong>File</strong>&#8221; option from the menu bar.</p>
<p style="text-align: left;">3- Choose <strong>Download As</strong> &#8212;&gt; <strong>PDF</strong>.</p>
<p style="text-align: left;">In this case, the PDF file will be downloaded to your machine, and will open automatically, in which case you should get something like as shown in figure (2) below.</p>
<p style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-2.png"><img class="aligncenter size-medium wp-image-2935" src="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-2-300x166.png" alt="" width="300" height="166" /></a><strong> </strong></p>
<p style="text-align: center;"><strong>Figure(2):</strong> <em>The Downloaded PDF File</em></p>
<div><em><br />
</em></div>
<p style="text-align: center;">
<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2010/03/downloading-your-google-docs-document-as-pdf/">Downloading Your Google Docs Document As PDF</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.4xpdf.com/2010/03/downloading-your-google-docs-document-as-pdf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Viewing PDF Attachments As Plain HTML In Gmail</title>
		<link>http://www.4xpdf.com/2010/03/viewing-pdf-attachments-as-plain-html-in-gmail/</link>
		<comments>http://www.4xpdf.com/2010/03/viewing-pdf-attachments-as-plain-html-in-gmail/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 00:09:58 +0000</pubDate>
		<dc:creator>4x PDF Tutorial Team</dc:creator>
				<category><![CDATA[Editorials]]></category>
		<category><![CDATA[PDF Online]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[Gmail PDF]]></category>
		<category><![CDATA[pdf viewing in gmail]]></category>

		<guid isPermaLink="false">http://www.4xpdf.com/?p=2938</guid>
		<description><![CDATA[As you know, as a Gmail user, you can view the PDF attachments directly from within Gmail. But, did you know that you can view the PDF files in Plain HTML format using Gmail?<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2010/03/viewing-pdf-attachments-as-plain-html-in-gmail/">Viewing PDF Attachments As Plain HTML In Gmail</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<p>As you know, as a Gmail user, you can view the PDF attachments <strong>directly</strong> from within Gmail.</p>
<p>But, did you know that you can view the PDF files in Plain HTML format using Gmail?</p>
<p>In order to do this, simply follow the following steps:</p>
<p>1- Open the email message that contains a PDF attachment within it. Look at figure (1).</p>
<p style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-11.png"><img class="aligncenter size-medium wp-image-2944" src="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-11-300x161.png" alt="" width="300" height="161" /></a><strong> </strong></p>
<p style="text-align: center;"><strong>Figure (1):</strong> <em>Part Of A Gmail Message With A PDF Attachment</em></p>
<p style="text-align: left;">2- Click at the &#8220;<strong>View</strong>&#8221; link, in which case you should have something similar to what is shown in figure (2).</p>
<p style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-21.png"><img class="aligncenter size-medium wp-image-2948" src="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-21-300x239.png" alt="" width="300" height="239" /></a></p>
<p style="text-align: center;"><strong>Figure (2):</strong> <em>The Way The Document Appears After Clicking At The View Link</em></p>
<p>3- Now, since you want to view the PDF file as Plain HTML, simply click at the <strong>Plain HTML</strong> link at the top of the page, in which case you should have something similar to what is shown in figure (3).</p>
<div style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-3.png"><img class="aligncenter size-medium wp-image-2951" src="http://www.4xpdf.com/wp-content/uploads/2010/03/CM-Capture-3-299x239.png" alt="" width="299" height="239" /></a><strong> </strong></div>
<div style="text-align: center;"><strong>Figure (3):</strong> <em>The Plain HTML View Of The PDF Document</em></div>
<div style="text-align: center;">
<div><em><br />
</em></div>
</div>
<p style="text-align: left;">
<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2010/03/viewing-pdf-attachments-as-plain-html-in-gmail/">Viewing PDF Attachments As Plain HTML In Gmail</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.4xpdf.com/2010/03/viewing-pdf-attachments-as-plain-html-in-gmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>From Microsoft Office PowerPoint Mac 2008 To PDF</title>
		<link>http://www.4xpdf.com/2010/02/from-microsoft-office-powerpoint-mac-2008-to-pdf/</link>
		<comments>http://www.4xpdf.com/2010/02/from-microsoft-office-powerpoint-mac-2008-to-pdf/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 17:38:33 +0000</pubDate>
		<dc:creator>4x PDF Tutorial Team</dc:creator>
				<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[Mac PowerPoint to PDF]]></category>
		<category><![CDATA[PDF Conversion]]></category>
		<category><![CDATA[PDF Tips and Tutorials]]></category>

		<guid isPermaLink="false">http://www.4xpdf.com/?p=2260</guid>
		<description><![CDATA[Maybe you have done some presentation slides that you want to share but don't want to be modified for example. For this purpose, the solution might to go with PDF.<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2010/02/from-microsoft-office-powerpoint-mac-2008-to-pdf/">From Microsoft Office PowerPoint Mac 2008 To PDF</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<p>Maybe you have done some presentation slides that you want to share but don&#8217;t want to be modified for example. For this purpose, the solution might to go with PDF.</p>
<p>So, you have a presentation created with <em>Microsoft Office PowerPoint Mac 2008</em> and want to convert to PDF. In order to do so, simply follow the steps below:</p>
<p>1- Open your presentation using <em>Microsoft Office PowerPoint Mac 2008</em>. Look at figure (1).</p>
<p style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/02/1.png"><img class="size-medium wp-image-2262    aligncenter" src="http://www.4xpdf.com/wp-content/uploads/2010/02/1-300x190.png" alt="" width="300" height="190" /></a><strong> </strong></p>
<p style="text-align: center;"><strong>Figure (1):</strong> <em>Presentation opened using Microsoft Office PowerPoint Mac 2008</em></p>
<p style="text-align: left;">2- Click at the “<strong>File</strong>” option from the menu bar.</p>
<p style="text-align: left;">3- Choose “<strong>Save As…</strong>“. Look at figure (2).</p>
<p style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/02/CM-Capture-2.png"><img class="size-medium wp-image-2264  aligncenter" src="http://www.4xpdf.com/wp-content/uploads/2010/02/CM-Capture-2-300x190.png" alt="" width="300" height="190" /></a><strong> </strong></p>
<p style="text-align: center;"><strong>Figure (2):</strong> <em>The Save As dialog box in Microsoft Office PowerPoint Mac 200</em></p>
<p style="text-align: left;"><em><span style="font-style: normal;">4- In the “<strong>Format</strong>” option, choose PDF.</span></em></p>
<div>5- Navigate to the place where you stored your PDF file.</div>
<div>6- Double click on the PDF file to open it, in which case, you should have something as shown in figure (3).</div>
<div style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/02/CM-Capture-3.png"><img class="aligncenter size-medium wp-image-2265" src="http://www.4xpdf.com/wp-content/uploads/2010/02/CM-Capture-3-300x172.png" alt="" width="300" height="172" /></a></div>
<div><a href="http://www.4xpdf.com/wp-content/uploads/2010/02/CM-Capture-3.png"></a></p>
<p style="text-align: center;"><strong>Figure (3):</strong> <em>The created PDF file</em></p>
<p style="text-align: left;">And that&#8217;s it&#8230;</p>
<div><em><br />
</em></div>
</div>
<p style="text-align: center;">
<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2010/02/from-microsoft-office-powerpoint-mac-2008-to-pdf/">From Microsoft Office PowerPoint Mac 2008 To PDF</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.4xpdf.com/2010/02/from-microsoft-office-powerpoint-mac-2008-to-pdf/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>From Microsoft Office Word Mac 2008 To PDF</title>
		<link>http://www.4xpdf.com/2010/02/from-microsoft-office-word-mac-2008-to-pdf/</link>
		<comments>http://www.4xpdf.com/2010/02/from-microsoft-office-word-mac-2008-to-pdf/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 20:51:40 +0000</pubDate>
		<dc:creator>4x PDF Tutorial Team</dc:creator>
				<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[Conversion Word Mac to PDF]]></category>
		<category><![CDATA[PDF Conversion]]></category>
		<category><![CDATA[PDF Tips and Tutorials]]></category>
		<category><![CDATA[pdf tutorial]]></category>

		<guid isPermaLink="false">http://www.4xpdf.com/?p=2210</guid>
		<description><![CDATA[Imagine yourself working with your Microsoft Office: Word Mac 2008 writing that document that you will be sending to your manager. What is that?! A guideline is telling you that you have to submit the document in PDF format. And, there is no time, what to do?<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2010/02/from-microsoft-office-word-mac-2008-to-pdf/">From Microsoft Office Word Mac 2008 To PDF</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<p>Imagine yourself working with your <em>Microsoft Office: Word Mac 2008 </em>writing that document that you will be sending to your manager.</p>
<p>You are working calmly since you recognized that you are able to meet the deadline which is after a couple of hours.</p>
<p>You have finished now, and ready to submit the document.</p>
<p>But, there seems that there are submission <em>guidelines</em> you have to follow that you told yourself you&#8217;ll see once finished writing the document.</p>
<p><strong>What is that</strong>?! A guideline is telling you that you have to submit the document in <strong>PDF</strong> format. And, there is no time, what to do?</p>
<p>Don&#8217;t worry, this is so simple with <em>Microsoft Office: Word Mac 2008</em>. Just follow the following steps:</p>
<p>1- Open your document using <em>Microsoft Office: Word Mac 2008</em>. Look at figure (1).</p>
<p style="text-align: center;">
<p style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/02/Document-opened-using-Microsoft-Office-Word-Mac-2008.png"><img class="size-medium wp-image-2229    aligncenter" src="http://www.4xpdf.com/wp-content/uploads/2010/02/Document-opened-using-Microsoft-Office-Word-Mac-2008-300x221.png" alt="" width="300" height="221" /></a><strong> </strong></p>
<p style="text-align: center;"><strong>Figure(1): </strong><em>Document opened using Microsoft Office Word Mac 2008</em></p>
<p>2- Click at the &#8220;<strong>File</strong>&#8221; option from the menu bar.</p>
<p>3- Choose &#8220;<strong>Save As&#8230;</strong>&#8220;. Look at figure (2).</p>
<p style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/02/2.png"><img class="size-medium wp-image-2243  aligncenter" src="http://www.4xpdf.com/wp-content/uploads/2010/02/2-300x220.png" alt="" width="300" height="220" /></a><strong> </strong></p>
<p style="text-align: center;"><strong>Figure(2):</strong> <em>The Save As dialog box in Microsoft Office Word Mac 2008</em></p>
<p style="text-align: left;">4- In the &#8220;<strong>Format</strong>&#8221; option, choose PDF.</p>
<p>5- Navigate to the place where you stored your PDF file.</p>
<p>6- Double click on the PDF file to open it, in which case, you should have something as shown in figure (3).</p>
<p style="text-align: center;"><a href="http://www.4xpdf.com/wp-content/uploads/2010/02/3.png"><img class="size-medium wp-image-2244  aligncenter" src="http://www.4xpdf.com/wp-content/uploads/2010/02/3-300x166.png" alt="" width="300" height="166" /></a><strong> </strong></p>
<p style="text-align: center;"><strong>Figure(3):</strong> <em>The created PDF file</em></p>
<div>You are all set. Go ahead an send the document to your manager. But, don&#8217;t forget the other guidelines!</div>
<p style="text-align: center;">
<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2010/02/from-microsoft-office-word-mac-2008-to-pdf/">From Microsoft Office Word Mac 2008 To PDF</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.4xpdf.com/2010/02/from-microsoft-office-word-mac-2008-to-pdf/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Improving the Reading Experience in the Sony Reader</title>
		<link>http://www.4xpdf.com/2009/12/improving-the-reading-experience-in-the-sony-reader/</link>
		<comments>http://www.4xpdf.com/2009/12/improving-the-reading-experience-in-the-sony-reader/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 04:41:02 +0000</pubDate>
		<dc:creator>4x PDF Tutorial Team</dc:creator>
				<category><![CDATA[Ebooks]]></category>
		<category><![CDATA[Editorials]]></category>
		<category><![CDATA[PDF Reader]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[pdf tips]]></category>
		<category><![CDATA[pdf tips and tricks]]></category>
		<category><![CDATA[pdf tutorial]]></category>
		<category><![CDATA[sony reader]]></category>

		<guid isPermaLink="false">http://www.4xpdf.com/?p=3141</guid>
		<description><![CDATA[PDF format is one of the most popular formats in e-readers. Among over 40 types of e-readers in the marketplace, the Sony Reader is one of the most favorite for many users worldwide. Read this article for improving your reading experience with the Sony Reader.<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2009/12/improving-the-reading-experience-in-the-sony-reader/">Improving the Reading Experience in the Sony Reader</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<p>Today there are variety of reading devices available in the marketplace, among these Sony Reader has been a very popular choice for users. The official format for Sony Reader is BBeB Book (LRF) but as PDF is such a widely used document format, it has also necessary been necessary for Sony to provide support for this as well.</p>
<p>Here&#8217;s how to enhance the reading experience in the Sony Reader when you&#8217;re using PDF?</p>
<p><strong>a) Resize/Reformat the PDF</strong></p>
<p>Why not just convert the PDF to Word then resize the content for the Reader screen size, then save as .rtf format. Put into Sony Reader by using any free PDF Converter, which can keep all the layouts and text content after conversion.</p>
<p><strong>b) Increasing page refresh speed</strong></p>
<p>Speed of page refresh is one of the most important factors for enhancing reading experience. Books in BBeB format are good, but there will be about one second delay when you switch to the next page when you read in PDF format. Reading text document (.txt) is much faster. If your PDF is text based file, then convert it to plain text first using any PDF to text converter  and then enjoy.</p>
<p><strong>c) Create PDF for Sony Reader</strong></p>
<p>All versions of Sony Reader does not support Word format. Take for example, the Sony Reader PRS-505 only supports PDF, BBeB and Text. Those who are using the former version of Sony Reader can create their own PDF files and make them portable. Microsoft Office 2007 provides the ’save as PDF’ add-on, just click on &#8220;save as&#8221; and you can see PDF is on the list. By this way, you can save the Word document, PowerPoint presentation, Excel spreadsheet as PDF format.</p>
<p>To learn more tips and tricks visit <a href="http://www.4pdf.com">www.4pdf.com</a> regularly.</p>
<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2009/12/improving-the-reading-experience-in-the-sony-reader/">Improving the Reading Experience in the Sony Reader</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.4xpdf.com/2009/12/improving-the-reading-experience-in-the-sony-reader/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips for Converting PDF to Excel</title>
		<link>http://www.4xpdf.com/2009/11/tips-for-converting-pdf-to-excel/</link>
		<comments>http://www.4xpdf.com/2009/11/tips-for-converting-pdf-to-excel/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 02:54:08 +0000</pubDate>
		<dc:creator>4x PDF Tutorial Team</dc:creator>
				<category><![CDATA[PDF Conversion]]></category>
		<category><![CDATA[PDF Editor]]></category>
		<category><![CDATA[PDF Tools]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[pdf tips]]></category>
		<category><![CDATA[pdf tips and tricks]]></category>
		<category><![CDATA[pdf to excel]]></category>
		<category><![CDATA[PDF Tutorials]]></category>

		<guid isPermaLink="false">http://www.4xpdf.com/?p=3158</guid>
		<description><![CDATA[Often there is still a requirement to revise the data, and as we know, this is (usually) not possible once a file has been converted to a PDF. That said, one can convert PDF files back to Excel using some of the conversion software available. On such software is AnyBizSoft PDF to Excel Converter. Here's how...<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2009/11/tips-for-converting-pdf-to-excel/">Tips for Converting PDF to Excel</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<p>PDF has become a common document format for exchanging and transferring files for a number of reasons including its security features, compact size and compatibility. A variety of financial statements, budget statistics and other data summary Excel spreadsheets are saved into PDF files after they are finished with editing. However, often there is still a requirement to revise the data, and as we know, this is (usually) not possible once a file has been converted to a PDF.</p>
<p>That said, one can convert PDF files back to Excel using some of the conversion software available. On such software is AnyBizSoft PDF to Excel Converter. The application is specifically designed for converting PDF files to Microsoft Excel documents (.xls, .xlsx). With the use of this application, all the original layouts, text content, and images can be retained in the generated Excel document. After the document conversion, you can copy and modify the content of PDF file in Excel.</p>
<p>The following steps guide you through conversion of PDF to Excel:</p>
<p><strong>a) Download and install AnyBizSoft PDF to Excel Converter</strong></p>
<p>One can download the program here: <strong><a href="http://www.anypdftools.com/pdf-to-excel-converter.html#168">PDF to Excel Converter</a></strong>. When finished downloading, click on the anybizsoft-pdf-to-excel.exe file and follow the installation wizard instructions to install it.</p>
<p><strong>b) Launch PDF to Excel Converter</strong></p>
<p>Run the shortcut of PDF to Excel Converter on your desktop to launch it. Then click on the Add Files button above the panel to add files for conversion or one can directly drag PDF files into the panel. The application supports conversion of up to 200 files at one time. It also supports conversion of PDF files with copy and print restrictions.</p>
<p><strong>Advance Settings: Select certain pages and set an output files path</strong></p>
<p>In case you want to convert just some pages of files, click Selected Pages field and type the page numbers to be converted. The Excel file converted will save in the source file folder if you select Save in the same folder as source. Also, one can choose another destination by clicking Customize.</p>
<p><strong>c)  Start converting</strong></p>
<p>Now all you need is to click the Convert button below the panel, and your PDF files will be converted one by one. When the conversion completes, you can open the converted Excel files directly through the links in the panel or open the destination folder by clicking the button Open below the panel.</p>
<p>To learn more tips and tricks, visit <a href="http://www.4pdf.com">www.4pdf.com</a></p>
<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2009/11/tips-for-converting-pdf-to-excel/">Tips for Converting PDF to Excel</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.4xpdf.com/2009/11/tips-for-converting-pdf-to-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2 Ways to Convert PDF to PowerPoint</title>
		<link>http://www.4xpdf.com/2009/11/2-ways-to-convert-pdf-to-powerpoint/</link>
		<comments>http://www.4xpdf.com/2009/11/2-ways-to-convert-pdf-to-powerpoint/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 12:24:21 +0000</pubDate>
		<dc:creator>4x PDF Tutorial Team</dc:creator>
				<category><![CDATA[Free]]></category>
		<category><![CDATA[PDF Tools]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[anybizsoft]]></category>
		<category><![CDATA[pdf tips]]></category>
		<category><![CDATA[PDF Tips and Tutorials]]></category>

		<guid isPermaLink="false">http://www.4xpdf.com/?p=2975</guid>
		<description><![CDATA[Many people look for the solutions to convert PDF back to PowerPoint as they often need to alter and adjust their presentations. Take for example, teachers, lectures, technology commentators, etc. Luckily, there are a couple of free ways online to do this.<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2009/11/2-ways-to-convert-pdf-to-powerpoint/">2 Ways to Convert PDF to PowerPoint</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<p>Today PDF is arguably the most widely used &#8220;final form&#8221; of document. Some of the reasons behind this are its paper-like property, quality of layout, security, compact size, accessibility and usage restrictions. Due to this, most documents formats like Word, Excel and PowerPoint are converted to PDF after finalized editing.</p>
<p>That said, the limited features of PDF editing sometimes can come as a drawback for people as they cannot edit them easily &#8212; for whatever reason.</p>
<p>Let&#8217;s take take PowerPoint slides that have been converted to PDF &#8212;  and teachers, lectures, technology commentators, etc.  If changes are necessary and the source document is nowhere to be found, then the most effective method (aside from starting again from scratch) is to convert the PDF back to PowerPoint.</p>
<p>Luckily, there are a couple of  free ways of doing this:</p>
<p><strong>Indirect Conversion through Image Conversion</strong></p>
<p>1) PDF to Image</p>
<p>One can use a free online service like <a href="http://www.convertpdftoimage.com/">convertpdftoimage.com</a> to convert your PDF to Image files.</p>
<p>2) Insert Images into PowerPoint slides</p>
<p>Start PPT presentation, click Insert Slide (from outline), then click Insert Album from File/Disk, browse and find your desired images and select them to Insert, now you&#8217;ll find your PDF files are converted into PPT slides. After this, simply adjust and add content onto them.</p>
<p><strong>Indirect Conversion via Word</strong></p>
<p>1) PDF to Word</p>
<p>There is a free online service like <a href="http://www.pdfonline.com/PDF2word/">PDF Online</a> to convert your PDF to Word documents.</p>
<p>2) Word to PowerPoint</p>
<p>Start the PPT presentation, click Insert Slide (from outline), then click Object and Create from file to browse to find your desired images, select them and Insert. The content of Word file will insert into slides so that you can do further addition of content.</p>
<p>Note: You&#8217;re lucky &#8212; a few years ago &#8212; this used to be a) a whole harder and b) costly!</p>
<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2009/11/2-ways-to-convert-pdf-to-powerpoint/">2 Ways to Convert PDF to PowerPoint</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.4xpdf.com/2009/11/2-ways-to-convert-pdf-to-powerpoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tip On Adding Bookmarks To A PDF Portfolio</title>
		<link>http://www.4xpdf.com/2009/01/tip-on-adding-bookmarks-to-a-pdf-portfolio/</link>
		<comments>http://www.4xpdf.com/2009/01/tip-on-adding-bookmarks-to-a-pdf-portfolio/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 17:11:39 +0000</pubDate>
		<dc:creator>Rowan Hanna</dc:creator>
				<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[Acrobat 9]]></category>
		<category><![CDATA[add bookmarks to pdf portfolio]]></category>
		<category><![CDATA[PDF Bookmarks]]></category>
		<category><![CDATA[PDF Portfolios]]></category>
		<category><![CDATA[PDF Tips and Tutorials]]></category>

		<guid isPermaLink="false">http://www.4xpdf.com/?p=1295</guid>
		<description><![CDATA[Acrobat for Legal Professionals has a great tip on how to add bookmarks to a PDF Portfolio.<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2009/01/tip-on-adding-bookmarks-to-a-pdf-portfolio/">Tip On Adding Bookmarks To A PDF Portfolio</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogs.adobe.com/acrolaw/">Acrobat for Legal Professionals</a> has a great tip on how to add bookmarks to a PDF Portfolio.</p>
<blockquote><p>People like Bookmarks so much, they wish they could have the same organization tool for a PDF Portfolio, which is a collection of individual documents in a PDF container. I have several other articles you can read on Portfolios in my <a href="http://blogs.adobe.com/acrolaw/portfolios_and_packages/">Portfolio Category</a>.</p>
<p>While PDF Portfolios don&#8217;t have bookmarks per se, I do have a workaround that might make many of you happy</p></blockquote>
<p>Read the full tip: <a href="http://blogs.adobe.com/acrolaw/2009/01/can_a_pdf_portfolio_have_bookmar.html">Can a PDF Portfolio have bookmarks?</a></p>
<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2009/01/tip-on-adding-bookmarks-to-a-pdf-portfolio/">Tip On Adding Bookmarks To A PDF Portfolio</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.4xpdf.com/2009/01/tip-on-adding-bookmarks-to-a-pdf-portfolio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Book Chapter: How to Create a PDF Portfolio</title>
		<link>http://www.4xpdf.com/2009/01/free-book-chapter-how-to-create-a-pdf-portfolio/</link>
		<comments>http://www.4xpdf.com/2009/01/free-book-chapter-how-to-create-a-pdf-portfolio/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 18:00:04 +0000</pubDate>
		<dc:creator>Rowan Hanna</dc:creator>
				<category><![CDATA[Acrobat 9]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[acrobat 9 howtos]]></category>
		<category><![CDATA[donna baker]]></category>
		<category><![CDATA[Free]]></category>
		<category><![CDATA[PDF Portfolios]]></category>

		<guid isPermaLink="false">http://www.4xpdf.com/?p=1288</guid>
		<description><![CDATA[Peachpit has published a chapter from Donna Baker's latest book, Acrobat 9 HowTo's online. The free chapter deals with how to create PDF Portfolios in Acrobat 9.<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2009/01/free-book-chapter-how-to-create-a-pdf-portfolio/">Free Book Chapter: How to Create a PDF Portfolio</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<p>Peachpit has published a chapter from Donna Baker&#8217;s latest book, <a href="http://www.peachpit.com/store/product.aspx?isbn=0321552946">Acrobat 9 HotTo&#8217;s</a> online. The free chapter deals with how to create PDF Portfolios in Acrobat 9.</p>
<blockquote><p>A portfolio is a great way to bring all the material for a project or a task together, while maintaining the features of the component files and including navigation controls.</p></blockquote>
<p>Free chapter: <a href="http://www.peachpit.com/articles/article.aspx?p=1237025">How to Produce a PDF Portfolio in Adobe Acrobat 9</a>.</p>
<p>Donna has written quite a few books about Acrobat, as well as Dreamweaver, Indesign and other Adobe products&#8230;</p>
<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2009/01/free-book-chapter-how-to-create-a-pdf-portfolio/">Free Book Chapter: How to Create a PDF Portfolio</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.4xpdf.com/2009/01/free-book-chapter-how-to-create-a-pdf-portfolio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PDF Tools For Linux</title>
		<link>http://www.4xpdf.com/2008/12/pdf-tools-for-linux/</link>
		<comments>http://www.4xpdf.com/2008/12/pdf-tools-for-linux/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 22:55:26 +0000</pubDate>
		<dc:creator>Rowan Hanna</dc:creator>
				<category><![CDATA[Editorials]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[cups-pdf]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[linux pdf]]></category>
		<category><![CDATA[PDF Tips and Tutorials]]></category>
		<category><![CDATA[pdf tools for linux]]></category>

		<guid isPermaLink="false">http://www.4xpdf.com/?p=998</guid>
		<description><![CDATA[Linux hasn't received much attention from the PDF world over the years and it's not hard to understand why. First, Linux relies on open source developers (i.e. people doing stuff for free) and PDF creators, editors and viewers don't appear to be on the priority list.<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2008/12/pdf-tools-for-linux/">PDF Tools For Linux</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<p>Linux hasn&#8217;t received much attention from the PDF world over the years and it&#8217;s not hard to understand why. First, Linux relies on open source developers (i.e. people doing stuff for free) and PDF creators, editors and viewers don&#8217;t appear to be on the priority list. Second, most of the PDF community &#8212; Adobe as well as independent PDF developers &#8212; do their work for profit, so they aren&#8217;t willing to dedicate time to making their applications Linux compatible if there isn&#8217;t a tangible return. Mac and Windows users are generally happy to buy software; Linux users, not so much.</p>
<p>Having said that, some good time have given up their time to create some PDF applications for Linux. Here&#8217;s a quick reference point if you&#8217;re looking for some of these applications:</p>
<ul>
<li><a href="http://www.4xpdf.com/2008/10/creating-pdfs-on-linux/">Creating PDFs on Linux</a></li>
<li><a href="http://aldeby.org/blog/index.php/pdf-editing-on-linux.html">PDF editing on linux</a></li>
<li><a href="http://www.4xpdf.com/2008/10/how-to-create-pdfs-on-the-eee-pc/">How to Create PDFs on the Eee PC</a></li>
<li><a href="http://www.foxitsoftware.com/pdf/desklinux/">Foxit Reader for desktop Linux</a></li>
<li><a href="http://www.linux.com/feature/58592">A survey of Linux PDF viewers</a></li>
</ul>
<p>Post a link in the comments if you think any other Linux PDF relevant links should be added to this list. Enjoy!</p>
<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2008/12/pdf-tools-for-linux/">PDF Tools For Linux</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.4xpdf.com/2008/12/pdf-tools-for-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Technical Guide To Creating And Sharing Digital Documents</title>
		<link>http://www.4xpdf.com/2008/10/a-technical-guide-to-creating-and-sharing-digital-documents/</link>
		<comments>http://www.4xpdf.com/2008/10/a-technical-guide-to-creating-and-sharing-digital-documents/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 17:32:07 +0000</pubDate>
		<dc:creator>Rowan Hanna</dc:creator>
				<category><![CDATA[PDF Scanners]]></category>
		<category><![CDATA[Tips and Tutorials]]></category>
		<category><![CDATA[guide to sharing documents]]></category>
		<category><![CDATA[image to pdf]]></category>
		<category><![CDATA[ocr]]></category>
		<category><![CDATA[Scanners]]></category>
		<category><![CDATA[scanning]]></category>
		<category><![CDATA[Sharing Documents]]></category>

		<guid isPermaLink="false">http://digitaldocuments.debenu.com/?p=960</guid>
		<description><![CDATA[Do you want to learn how to create high-quality digital documents from paper documents? If you replied with an emphatic yes, then I&#8217;ve got the perfect article for you. A guide to sharing documents takes you through the entire process: from getting the best results when scanning, to explaining the OCR&#8217;ing process and finally a demonstration on how to the best results when converting the scanned image to PDF.
This guide specializes on how to produce a digital document that is worth sharing. Namely the technical aspect, the trade-off between quality ...<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2008/10/a-technical-guide-to-creating-and-sharing-digital-documents/">A Technical Guide To Creating And Sharing Digital Documents</a></p>



No related posts.]]></description>
			<content:encoded><![CDATA[<p>Do you want to learn how to create high-quality digital documents from paper documents? If you replied with an emphatic <em>yes</em>, then I&#8217;ve got the perfect article for you. A <a href="http://filesharing.wikidot.com/guide:sharing-documents">guide to sharing documents</a> takes you through the entire process: from getting the best results when scanning, to explaining the OCR&#8217;ing process and finally a demonstration on how to the best results when converting the scanned image to PDF.</p>
<blockquote><p>This guide specializes on how to produce a digital document that is worth sharing. Namely the technical aspect, the trade-off between quality and file size. This guide aims to empower you to get most out of that trade-off. Too many people share low quality documents that are too big, and that is not only a waste of bandwidth, but also of time, because others will have to scan the same document again later, or at least spend considerable time cleaning it up. Scanning documents is a lot of work, and it&#8217;s a pity if it has to happen twice.</p></blockquote>
<p>Full article: <a href="http://filesharing.wikidot.com/guide:sharing-documents">Guide to sharing documents</a>.</p>
<p>Post from: <a href="http://www.4xpdf.com">4x PDF Blog</a><br/><br/><a href="http://www.4xpdf.com/2008/10/a-technical-guide-to-creating-and-sharing-digital-documents/">A Technical Guide To Creating And Sharing Digital Documents</a></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.4xpdf.com/2008/10/a-technical-guide-to-creating-and-sharing-digital-documents/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

