Created
November 18, 2013 15:16
-
-
Save gallais/7529438 to your computer and use it in GitHub Desktop.
Underscore in a pragma breaks the lhs2tex-generated LaTeX code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\documentclass{article} | |
%include lhs2TeX.fmt | |
%include lhs2TeX.sty | |
%include polycode.fmt | |
\begin{document} | |
\begin{code} | |
module Equal where | |
data _≡_ {a} {A : Set a} (x : A) : A → Set a where | |
refl : x ≡ x | |
{-# BUILTIN EQUALITY _≡_ #-} | |
\end{code} | |
\end{document} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment