pstricks.tex
(2019-01-22 버전)의 75행에서 다음을 읽습니다 .
\ifx\pgfkeysloaded\endinput\else
\input pgfutil-common.tex
\input pgfkeys.code.tex
\input pgffor.code.tex
\fi
\let\pgfforeach\foreach
테스트가 \ifx\pgfkeysloaded\endinput
이상한 것 같아요. Tikz 이후에 Pstricks가 로드되면 파일이 pgfutil-common.tex
두 번 로드될 수 있습니다. 이로 인해 불일치가 발생할 수 있습니다. 예를 들어, \pgfutil@raggedright
발견된 위치 의 정의는 Tikz가 로드되었을 때 완료 위치 pgfutil-common.tex
의 정의 (동일하지 않음)를 삭제합니다.\pgfutil@raggedright
pgfutil-latex.def
\relax
대신해서는 안됩니까 \endinput
?