1
\RequirePackage{amsthm}
2
\RequirePackage{listings}
3
4
\newtheorem{pregunta}{Pregunta}
5
6
\newcommand*{\repositorio}[1]{\texttt{#1}}
7
\newcommand*{\preambulo}[1]{\texttt{#1}}
8
\newcommand*{\gitk}{\texttt{gitk}}
9
\newcommand*{\fichero}[1]{\texttt{#1}}
10
\newcommand*{\orden}[1]{\texttt{#1}}
11
\newcommand*{\treeish}[1]{\texttt{#1}}
12
\newcommand*{\commitish}[1]{\texttt{#1}}
13
\newcommand*{\rama}[1]{\texttt{#1}}
14
15
\newcounter{saveenum}
16
\newcommand{\savelp}{\setcounter{saveenum}{\value{enumi}}}
17
\newcommand{\loadlp}{\setcounter{enumi}{\value{saveenum}}}
18
\newenvironment{first-enumerate}{\begin{enumerate}}{\savelp{}\end{enumerate}}
19
\newenvironment{continue-enumerate}{\begin{enumerate}\loadlp{}}{\savelp{}\end{enumerate}}
20
21
\lstset{basicstyle=\small,breaklines=true,columns=fullflexible,frame=tb}
22
23
\newenvironment{tikzpicture-fixed}{\begin{tikzpicture}\shorthandoff{<>}}{\shorthandon{<>}\end{tikzpicture}}
24
25
%%% Local Variables: 
26
%%% mode: latex
27
%%% TeX-master: t
28
%%% End: