Skip to content

Commit

Permalink
chore: ok up to horn clauses
Browse files Browse the repository at this point in the history
  • Loading branch information
gciatto committed Mar 11, 2022
1 parent 3e1b819 commit ef325f6
Show file tree
Hide file tree
Showing 3 changed files with 638 additions and 300 deletions.
20 changes: 7 additions & 13 deletions ise-lab-knowledge-representation.bib
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@


@manual{bibtex-patashnik88,
author = {Patashnik, Oren},
booktitle = {\BibTeXing},
date-added = {2021-07-06 17:51:32 +0200},
date-modified = {2021-07-06 18:13:21 +0200},
month = {8~} # feb,
organization = {CTAN, The Comprehensive TeX Archive Network},
title = {\BibTeX{}ing},
url = {http://mirrors.ctan.org/biblio/bibtex/base/btxdoc.pdf},
year = 1988,
Bdsk-Url-1 = {http://www.ctan.org/get/biblio/bibtex/contrib/doc/btxdoc.pdf}}
@misc{enwiki:cons,
author = "{Wikipedia contributors}",
title = "Cons --- {Wikipedia}{,} The Free Encyclopedia",
year = "2021",
url = "https://en.wikipedia.org/w/index.php?title=Cons&oldid=1049428255",
note = "[Online; accessed 11-March-2022]"
}
43 changes: 43 additions & 0 deletions ise-lab-knowledge-representation.sty
Original file line number Diff line number Diff line change
@@ -1,2 +1,45 @@
\usepackage{multicol}
\usepackage{amsmath,amssymb}
\usepackage{todonotes}

% ISE numbering
\labN{1}

\AtBeginSection[]
{
\begin{frame}[c,noframenumbering]\frametitle{Next in Line\ldots}
% \begin{multicols}{2}
\tableofcontents[sectionstyle=show/shaded, subsectionstyle=show/hide, subsubsectionstyle=hide/hide]
% \end{multicols}
\end{frame}
}

\AtBeginSubsection[]
{
\begin{frame}[c,noframenumbering]\frametitle{Next in Line\ldots}
% \begin{multicols}{2}
\tableofcontents[sectionstyle=show/shaded, subsectionstyle=show/hide, subsubsectionstyle=hide/hide]
% \end{multicols}
\end{frame}
}

\newcommand{\argmin}[2]{\underset{#1}{\text{argmin}} \left\{ #2 \right\}}
\newcommand{\argmax}[2]{\underset{#1}{\text{argmax}} \left\{ #2 \right\}}
\newcommand{\unify}[2]{\text{unify}(#1, #2)}
\newcommand{\mgu}[2]{\text{mgu}(#1, #2)}
\newcommand{\functor}[1]{\mathtt{#1}}
\newcommand{\variable}[1]{\mathit{#1}}
\newcommand{\predication}[1]{\mathit{#1}}
\newcommand{\consdot}{\functor{~.~}}

\newcommand{\grammar}[1]{\mathsf{#1}}
\newcommand{\meta}[1]{\grammar{\left\langle#1\right\rangle}}
\newcommand{\terminal}[1]{\text{`}\mathit{#1}\text{'}}
\newcommand{\kleenestar}{^\grammar{*}}
\newcommand{\plus}{\grammar{+}}
\newcommand{\questionmark}{\grammar{?}}
\newcommand{\onceormore}[1]{\grammar{(#1)}\plus}
\newcommand{\severaltimes}[1]{\grammar{(#1)}\kleenestar}
\newcommand{\optional}[1]{\grammar{(#1)}\questionmark}

\newcommand{\twopkt}{\textsc{2P-Kt}}
Loading

0 comments on commit ef325f6

Please sign in to comment.