我对于这个包裹了解不多xypic
。
我遇到了以下问题:
- 我无法画一个以 BC 为半径、以 C 为圆心的圆。
- 我想在线上画五个点。
- 为了看起来更好,我想在线外画出点 2、1、0、-1 和 -2 以及 A、B、C、D 和 E。
这是我的努力:
\documentclass{article}
\usepackage{xypic}
\begin{document}
\xymatrix{
\ar[dddddd] \\
.2 & & & & &\\
.1 & & &D & & \\
.0 \ar[r]^p & \ar[rrrr] &A & C &B &\\
.-1& & &E \\
.-2 & & &\ar[uuuu]\\
\ar[uuuuuu]
}
\end{document}
答案1
使用 PSTricks。
\documentclass[pstricks,border=12pt]{standalone}
\usepackage{pst-eucl}
\begin{document}
\begin{pspicture}(-2.25,-1.25)(2.25,1.25)
\pstGeonode[PosAngle=-135]
(-2,0){E}
(-1,0){D}
(0,0){C}
(1,0){B}
(2,0){A}
\pstLineAB{E}{A}
\pstCircleOA{C}{B}
\end{pspicture}
\end{document}