X-Git-Url: https://gapil.gnulinux.it/gitweb/?a=blobdiff_plain;ds=sidebyside;f=macro.tex;h=f1b1bf554332874b091a101c28e8e3b9c73abc5b;hb=f0cf1e6f39cc8e46cadf4a6cfe1420bd81f088c0;hp=7375bebe6d59ec58b5eff3a7a2342b46a1de9c4c;hpb=3d44c36183fe67ed64bff95a36596ad87f620683;p=gapil.git diff --git a/macro.tex b/macro.tex index 7375beb..f1b1bf5 100644 --- a/macro.tex +++ b/macro.tex @@ -1,7 +1,7 @@ % % Defining some commands to manipulate counter to avoid ude of % \label and \ref commands (and related problem to remeber the -% used labels +% used labels) to refer nearest objects % % \newcounter{usercount} % define a new counter for internal use @@ -9,14 +9,18 @@ % Figure commands % \newcommand{\curfig}{fig.~\thefigure} + \newcommand{\nfig}{% \setcounter{usercount}{\value{figure}}% \addtocounter{usercount}{1}% fig.~\thechapter.\theusercount} + \newcommand{\pfig}{% \setcounter{usercount}{\value{figure}}% \addtocounter{usercount}{-1}% fig.~\thechapter.\theusercount} + +\newcommand{\figref}[1]{fig.~\ref{#1}} % % Tables commands % @@ -29,6 +33,7 @@ tab.~\thechapter.\theusercount} \setcounter{usercount}{\value{table}}% \addtocounter{usercount}{-1}% tab.~\thechapter.\theusercount} +\newcommand{\tabref}[1]{tab.~\ref{#1}} % % equations commands % @@ -41,7 +46,6 @@ tab.~\thechapter.\theusercount} \setcounter{usercount}{\value{equation}}% \addtocounter{usercount}{-1}% (\thechapter.\theusercount)} - % % Macro to put picture (in format PICT) inside a figure % @@ -52,4 +56,62 @@ tab.~\thechapter.\theusercount} \end{minipage} } % +% Command for section and chapters +% +\newcommand{\capref}[1]{cap.~\ref{#1}} +\newcommand{\secref}[1]{sez.~\ref{#1}} +% +% Macro to create a special environment for function prototypes +% boxed description +% +\newenvironment{prototype}[2] +{% defining what is done by \begin + \center + \footnotesize + \begin{minipage}[c]{14cm} + \par \texttt{\#include <#1>} +% \par \ + \par \texttt{#2} +% \begin{lstlisting}{} +% #1 +% #2 +% \end{lstlisting} + \begin{list}{}{} + \item +} +{% defining what is done by \end + \end{list} + \par +\par \texttt{ } +\end{minipage} +\normalsize +\par +} +\newenvironment{errlist}{\begin{description}}{\end{description}} + +% +% Slighty different envirnoment to be used for multi-header, +% multi-functions boxed description % +\newcommand{\headdecl}[1]{\par \texttt{\#include <#1>}} +\newcommand{\funcdecl}[1]{\par \texttt{#1}} +\newenvironment{functions} +{% defining what is done by \begin + \center + \footnotesize + \begin{minipage}[c]{14cm} + + \begin{list}{}{} + \item } +{% defining what is done by \end + \end{list} + \par +\par \texttt{ } +\end{minipage} +\normalsize +\par +} +\newenvironment{errlist}{\begin{description}}{\end{description}} + + +