blob: 5ce605d8a79aa7e571a45c1c790175d12eeb50e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
\documentclass{article}
\newcommand{\texlabel}{{\em tex-label}}
\newcommand{\labelscom}{{\em \textbackslash labels}}
\begin{document}
\section{Introduction}
The \texlabel{} package allows you to label parts of your document
just like labelling e-mail.
\section{Usage}
You can use the \labelscom{} command when you want to label some part of
your document. The labels remain effective until you issue the next
\labelscom{} command.
\section{Example}
See tex-label-demo.tex and tex-label-demo.pdf
\section{Customizing}
You can change the color of label text and label background by
redefining {\em label-color} and {\em label-bg-color} respectievely.
For ex:- to redefine label text to white use
\begin{verbatim}
\definecolor{label-color}{rgb}{1,1,1}
\end{verbatim}
\end{document}
|