Skip to content

Commit

Permalink
Release 1.0
Browse files Browse the repository at this point in the history
Upload the latex source files and the sample codes. All these had been
finished years ago.:P
  • Loading branch information
qhan committed Aug 18, 2015
1 parent 38c7349 commit 17e0cd6
Show file tree
Hide file tree
Showing 104 changed files with 473,589 additions and 0 deletions.
32 changes: 32 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
part:
gbk2uni main.out
latex main.tex
dvipdfm main.dvi
xpdf main.pdf

all:
latex main.tex
-bibtex main
latex main.tex
gbk2uni main.out
latex main.tex
dvipdfm main.dvi
acroread main.pdf

clean:
-find -name '*.aux' -exec rm {} \;
-find -name '*.bak' -exec rm {} \;
-find -name '*.dvi' -exec rm {} \;
-find -name '*~' -exec rm {} \;
-find -name 'ChangeLog' -exec rm {} \;
-find -name '*.out' -exec rm {} \;
-rm *.bbl *.blg *.log *.ps *.thm *.toc *.toe *.lof *.lot
-rm _region_.tex
-rm -rf auto
-rm -rf ./body/auto
-rm -rf ./reference/auto
-rm -rf ./setup/auto
-rm -rf *.prv

clean-cvs-really:
-find -name 'CVS' -exec rm -rf {} \;
26 changes: 26 additions & 0 deletions algo.sty
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
\newcounter{algorithmeligne}

\newenvironment{algorithme}
{
\setcounter{algorithmeligne}{0}

\newcommand{\ITEM}{
\stepcounter{algorithmeligne}
{\footnotesize \arabic{algorithmeligne}.}\>
}
\newcommand{\lign}{\ITEM}
\begin{center}
\begin{tabular}{|c|}
\hline
\begin{minipage}{1cm}
% \scriptsize
\begin{tabbing}
\hskip1cm\=\qquad\=\qquad\=\qquad\=\qquad\=\qquad\=\qquad\=\qquad\=\qquad\=\qquad\=\qquad\=\qquad\\\kill
}
{
\end{tabbing}
\end{minipage}
\\\hline
\end{tabular}
\end{center}
}
Loading

0 comments on commit 17e0cd6

Please sign in to comment.