1

Here is a minimal code example.

\documentclass[12pt]{article}
\usepackage[active,tightpage]{preview}
\begin{document}
\begin{preview}
$a=b$
\[ b=c \]
\hfill $c=d$
\end{preview}
\end{document}

This is producing the following result.

result with preview tightpage

Without preview, the following (and expected) result is produced.

result without preview tightpage

Is there a way to get the second result with preview environment ?

MB4E
  • 1,084

1 Answers1

0

Just add a \par.

\documentclass[12pt]{article}
\usepackage[active,tightpage]{preview}
\begin{document}
\begin{preview}
$a=b$
\[ b=c \]
\hfill $c=d$\par
\end{preview}
\end{document}

enter image description here