Text FormattingFormatting Problem for Watermark

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
sachinrajsharma
Posts: 35
Joined: Sun Apr 08, 2012 5:48 am

Formatting Problem for Watermark

Post by sachinrajsharma »

Hi,

I am using draftwatermark package in the below code and it is showing some error.

Code: Select all

\documentclass[10pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{draftwatermark}
\SetWatermarkText{$MATHSTUDY^{\circledR}$}

\begin{document}
  \begin{enumerate}
    \item Find the integral with two methods : $\frac{1}{2}\int^\pi_0\sin^6\alpha \,d\alpha$
    \item The sum of the series:  \[\sum_{i=0}^\infty \frac{3(-1)^{n+1}}{2^n}\] is 
      \begin{enumerate}
        \item $-2$
        \item $-3$
        \item $2$
        \item $3$
        \item none of these 
      \end{enumerate}
  \end{enumerate}
\end{document}[*]
Request you to please look into this and help me to sort out this issue.


Thanks.

Sachin Sharmaa

Recommended reading 2024:

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

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

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

Formatting Problem for Watermark

Post by localghost »

Code: Select all

\documentclass[10pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{amsmath}

\usepackage{draftwatermark}
\SetWatermarkText{MATHSTUDY\textsuperscript{\textregistered}}
\SetWatermarkScale{0.8}

\begin{document}
  \begin{enumerate}
    \item Find the integral with two methods : $\frac{1}{2}\int^\pi_0\sin^6\alpha \,d\alpha$
    \item The sum of the series:  \[\sum_{i=0}^\infty \frac{3(-1)^{n+1}}{2^n}\] is 
      \begin{enumerate}
        \item $-2$
        \item $-3$
        \item $2$
        \item $3$
        \item none of these 
      \end{enumerate}
  \end{enumerate}
\end{document}
sachinrajsharma
Posts: 35
Joined: Sun Apr 08, 2012 5:48 am

Re: Formatting Problem for Watermark

Post by sachinrajsharma »

Thanks a lot ... thanks once again... that's great...

Regards,

Sachin
Post Reply