<?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>Random Wisdom &#187; pdflatex</title>
	<atom:link href="http://scrolls.mafgani.net/tag/pdflatex/feed/" rel="self" type="application/rss+xml" />
	<link>http://scrolls.mafgani.net</link>
	<description>An attempt at organizing my thoughts ...</description>
	<lastBuildDate>Sun, 13 Mar 2011 22:54:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Duplicate identifiers with hyperref in pdflatex</title>
		<link>http://scrolls.mafgani.net/2007/10/duplicate-identifiers-with-hyperref-in-pdflatex/</link>
		<comments>http://scrolls.mafgani.net/2007/10/duplicate-identifiers-with-hyperref-in-pdflatex/#comments</comments>
		<pubDate>Mon, 01 Oct 2007 12:07:00 +0000</pubDate>
		<dc:creator>Mostafa</dc:creator>
				<category><![CDATA[LaTeX]]></category>
		<category><![CDATA[errors]]></category>
		<category><![CDATA[hyperref]]></category>
		<category><![CDATA[pdflatex]]></category>

		<guid isPermaLink="false">http://scrolls.mafgani.net/?p=92</guid>
		<description><![CDATA[The following warning is fairly common when hyperref is used with PDFLaTeX: ! pdfTeX warning (ext4): destination with the same identifier (name{page.1}) ha s been already used, duplicate ignored The solution is to use the &#8216;plainpages=false&#8216; option with hyperref. However, this appears to be insufficient for the article class with the &#8216;titlepage&#8216; option. To remedy [...]]]></description>
			<content:encoded><![CDATA[<p>The following warning is fairly common when hyperref is used with PDFLaTeX:</p>
<pre>
! pdfTeX warning (ext4): destination with the same identifier (name{page.1}) ha
s been already used, duplicate ignored
</pre>
<p>The solution is to use the &#8216;<span style="font-style:italic;">plainpages=false</span>&#8216; option with hyperref.</p>
<p>However, this appears to be insufficient for the article class with the &#8216;<span style="font-style:italic;">titlepage</span>&#8216; option. To remedy the warning the following is additionally needed around the \maketitle in the body of the document:<br />
<PRE>
\renewcommand{\thepage}{\roman{page}}
\maketitle
\renewcommand{\thepage}{\arabic{page}}
</pre><br />
By switching the style of page counter before and after the title page, any ambiguity regarding page numbers is resolved (title page is logically page 1 but LaTex re-initiates the counter on the actual page 1 &#8211; leading to 2 successive page 1s).</p>
]]></content:encoded>
			<wfw:commentRss>http://scrolls.mafgani.net/2007/10/duplicate-identifiers-with-hyperref-in-pdflatex/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

