[Tex/LaTex] Bold arrows in xymatrix

arrowspdftexxy-pic

How can I produce a bold arrow in the package \xymatrix? I've tried with \ar@{\bf{->}}[r] and similar alternatives without success.

Best Answer

If you try compiling this document with pdflatex

\documentclass{article}
\usepackage[all]{xypic}
\begin{document}
\xymatrix{A \ar@*{[|(3)]}[r] & B}
\end{document}

you receive the following warnings

<xymatrix 2x1

Xy-pic Warning: The linewidth 1.19994pt effect is not implemented
with the current driver. [notimpl:4].


Xy-pic Warning: The linewidth 1.19994pt effect is not implemented
with the current driver. [notimpl:4].


Xy-pic Warning: The linewidth 1.19994pt effect is not implemented
with the current driver. [notimpl:4].

44>

This means that the feature is not available with the current implementation of the xypdf driver (version 1.7)

Related Question