I'm using the mdtheorem environment and for some reason the boxes seem to not print out correctly when I compile and open my pdf file. Everything compiles fine, but I get that my theorem is only framed on the bottom-right, and the top-left part of the frame is missing.
I just use a command like, say,
\begin{algo} \label{alg:ew} \textbf{Calcul }
\end{algo}
any ideas?
Ok, well, this is an example of code :
\documentclass[12pt]{article}
%\pagestyle{empty}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amsthm}
\usepackage{mdframed}
\usepackage{multirow}
\usepackage{graphicx}
\usepackage[french]{babel}
%\usepackage[autolanguage]{numprint}
\newmdtheoremenv{alg}{Algorithme}
\begin{document}
\begin{alg} \ \ \textbf{Graphiques de $P(X=x)$ et $P(X\leq x)$ }
\end{alg}
\end{document}
Which is just the basic use of it here. I was able to make the whole box appear now, but only when I was zoomed in so close on the thing I couldn't see anything else.
Is there a way to make the frame thicker, so maybe that would help the frame to post properly even when not so zoomed in?


\newmdtheoremenv[linewidth=1pt]{alg}{Algorithme}, but the result won't be nice. In general, the thicker the line, the more funerary the result. – egreg Jun 08 '12 at 18:20