[Tex/LaTex] Hiding watermark for first page

xwatermark

I haven't seen a question on this website that deals with hiding watermarks with xwatermark. Here's the preamble of the document I'm working on that is relevant:

\usepackage[printwatermark]{xwatermark}
\newwatermark*[page=1, textmark=]{}
\newwatermark*[allpages,color=gray,angle=0,scale=1,xpos=46,ypos=-134]{Some watermark}

In section 3.2 of the documentation:

If you issue any of the statements

page=x 
pages=x-y 
pagex={x,y,z} 
firstpage 
lastpage 
allpages=true 
evenpages=true 
oddpages=true

together with printwatermark=true but you don’t want the mark on any particular
page, we can simply set \newwatermark[other keys,textmark=]{} or, to
the same effect, we may set \newwatermark[other keys]{}, where ‘other
keys’ may include the page specifiers.

I'm trying to hide the watermark for the first page. As you see in the code above, I have \newwatermark*[page=1, textmark=]{}. I have also tried using firstpage instead of page = 1, and I have also tried placing this line after \newwatermark*[allpages,color=gray,angle=0,scale=1,xpos=46,ypos=-134]{Some watermark}.

Can someone explain what I'm doing wrong?

MWE: as far as I could tell, this is the minimum necessary to get the watermark to look exactly how I need it to.

\documentclass[11pt]{article}
\usepackage[margin=2cm]{geometry}
\usepackage{tikz}
\usepackage[version=3]{mhchem}
\usepackage [english]{babel}
\usepackage[printwatermark]{xwatermark}\newwatermark*[pages=2-,color=gray,angle=0,scale=1,xpos=46,ypos=-134]{\footnotesize Copyright \textcopyright\:2014 by some company.}
\begin{document}
Stuff
\newpage 
More stuff
\end{document}

Received an error, as mentioned in the comments: No end-page for page-range of watermark: ||||I have used the default end-page '5' instead.

Best Answer

You can skip the first page by selecting the pages

..., page=2-\lastdocpage, ...

in your options. \lastdocpage references the last page in the document.