conditionals
WARNING: Please update your bookmarks! The content of this site has been moved to http://dille.name where it will be updated as needed. This page will remain unchanged.
conditionals allow you to restrict chunks of your tex source to be processed in a certain context only:- special comments:
%begin{latexonly} % ... %end{latexonly}see latex2html - html package:
\begin{htmlonly} % ... \end{htmlonly} % ... \begin{latexonly} % ... \end{latexonly} - tex macros:
% ... \newif\ifpdf \ifx\pdfoutput\undefined \pdffalse \else \pdfoutput=1 \pdftrue \fi % ... \ifpdf % ... \fi



