ConTeXt에서 캡션 없이 그림/표를 배치하는 방법은 무엇입니까?

ConTeXt에서 캡션 없이 그림/표를 배치하는 방법은 무엇입니까?

내가하려고 할 때

\placefigure[here]{none}{\externalfigure....

캡션이 없는 그림 대신 "없음" 캡션이 있는 그림이 나타납니다.

\placefigure캡션 없이 사용하는 방법

mtx-context     | ConTeXt Process Management 0.60
mtx-context     |
mtx-context     | main context file: /usr/share/texmf-dist/tex/context/base/context.mkiv
mtx-context     | current version: 2013.05.28 00:36

답변1

MkII 구문을 사용하고 있습니다. MkIV에서는 none캡션이 더 이상 마법의 단어로 처리되지 않습니다. 캡션을 비활성화하려면 매개변수 none로 추가해야 합니다 location. 따라서 다음을 사용하십시오.

\placefigure[here, none]{}{\externalfigure[...]}

또는 키 값 기반 인터페이스:

\startplacefigure[location={here,none}]
    \externalfigure[....]
\stopexternalfigure

관련 정보