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
|
\documentclass{article}
\usepackage{acronym}
\begin{document}
\section{Test section}
This is a test file for the acronyms.
Each time a \ac{bgp} advertisement traverses an \ac{AS}, the \ac{aspath}
attribute is modified. Additionally, \acp{AS} may introduce additional
changes in the \ac{aspath} for traffic engineering purposes.
Used following acronym macros
\begin{verbatim}
\usepackage{acronym}
\acrodef{AS}{Autonomous System}
\begin{acronym}
\acrodef{aspath}[AS\_PATH]{AS Path}
\acro{bgp}[BGP-4]{Border Gateway Protocol}
\acro{isis}[IS-IS]{IS-IS Protocol}
\acro{RIP}{RIPv2 Routing Protocol}
\end{acronym}
\end{verbatim}
Only \textbf{\ac{bgp}} should appear as an acronym in the acronym section.
\acrodef{AS}{Autonomous System}
\begin{acronym}
\acrodef{aspath}[AS\_PATH]{AS Path}
\acro{bgp}[BGP-4]{Border Gateway Protocol}
\acro{isis}[IS-IS]{IS-IS Protocol}
\acro{RIP}{RIPv2 Routing Protocol}
\end{acronym}
\end{document}
|