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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% small sample file
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass{article}
%
% a brief demonstration of the use of fncylab
%
\usepackage{fncylab,enumerate}
\begin{document}
%
% outer level lists (such as enumerate) use counter enumi for their
% list tags.
\begin{enumerate}[(i)]
\item first item, defining a non-fancy label \label{first}
%
% that label was defined to look otherwise than it was printed for the
% item:
\item second item (see also item~\ref{first})
%
% redefine label formats for this list's labels:
\labelformat{enumi}{(#1)}
%
% and label the another item in a different way:
\item third item, defining a fancy label \label{third}
%
% redefine label formats for this list's labels again:
\labelformat{enumi}{item~(#1)}
%
% we now see that the label has for item three has been defined
% differently, and that for item four differently again. note the
% reference starting a new sentence.
\item fourth item, defining a fancy label in a different format (see
also item~\ref{third}). \Ref{fourth} shows how a sentence may start
with reference to a fancy label; note that it's the \emph{label}
that's fancy, so the second change to the label format only affects
the labels defined after it. \label{fourth}
\end{enumerate}
\end{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% small sample file
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass{article}
%
% a brief demonstration of the use of fncylab
%
\usepackage{fncylab,enumerate}
\begin{document}
%
% outer level lists (such as enumerate) use counter enumi for their
% list tags.
\begin{enumerate}[(i)]
\item first item, defining a non-fancy label \label{first}
%
% that label was defined to look otherwise than it was printed for the
% item:
\item second item (see also item~\ref{first})
%
% redefine label formats for this list's labels:
\labelformat{enumi}{(#1)}
%
% and label the another item in a different way:
\item third item, defining a fancy label \label{third}
%
% redefine label formats for this list's labels again:
\labelformat{enumi}{item~(#1)}
%
% we now see that the label has for item three has been defined
% differently, and that for item four differently again. note the
% reference starting a new sentence.
\item fourth item, defining a fancy label in a different format (see
also item~\ref{third}). \Ref{fourth} shows how a sentence may start
with reference to a fancy label; note that it's the \emph{label}
that's fancy, so the second change to the label format only affects
the labels defined after it. \label{fourth}
\end{enumerate}
\end{document}
|