%% BEGIN pstricks.bug % LAST MODIFIED: April 2, 1997 % The latest version of this file can be obtained on CTAN % This file list some bugs and latebreaking news for PSTricks 97 % This file is edited by Denis Girou and % Sebastian Rahtz \def\fileversion{97.01} \def\filedate{1997/04/02} \message{ v\fileversion, \filedate} % PROBLEMS: % 1. Inside the psmatrix environment, we can't use a parameter for the first % column definition if it's not the first row. % Reported by in 1995. % % It's a parsing problem, as the parser wait something like [3mm] after the % \\ and not something like [name=B]. % % Test file: % % \documentclass{article} % % \usepackage{pstricks} % % \begin{document} % \begin{psmatrix} % [name=A] A \\ % [name=B] B % \end{psmatrix} % \end{document} % % Workaround: add [0pt] after the \\ in these cases: % % [name=A] A \\[0pt] % [name=B] B % 2. With the `french' package, there is a problem with the special % < and > characters used for diagram and tree annotations (they are % not correctly typed nor positioned). % N.B. This problem doesn't occur with the frenchb sub-option of the % `babel' package. % Reported by Philippe Esperet in October 1996. % % Test file: % % \documentclass{article} % % \usepackage{pstricks} % \usepackage{pst-node} % \usepackage{french} % % \begin{document} % \begin{psmatrix} % E&F\\ % G&H % \ncline{1,1}{1,2}^w % \ncline{2,1}{2,2}_f % \ncline{1,1}{2,1}v % \end{psmatrix} % \end{document} % % Workaround: put the `psmatrix' environment inside an `english' one % PATCHES: (Input this file to get these patches) \edef\TheAtCode{\the\catcode`\@} \catcode`\@=11 % Nothing for the moment... \catcode`\@=\TheAtCode\relax \endinput %% END pstricks.bug