
그림 안에 포함된 tikzpicture 아래 캡션에 포함하고 싶은 작은 테이블이 있습니다. 이것이 가능한가?
답변1
이에 대한 몇 가지 옵션이 있습니다.
포함수치캡션이 아닌 이미지의 일부로.
\begin{figure} \centering \begin{tikzpicture} \draw (0,0) -- (1,1); \end{tikzpicture} \caption{This is a caption} \begin{tabular}{c|c} tl & tr \\ \hline bl & br \end{tabular} \end{figure}
\caption
ToC와 텍스트 콘텐츠를 구별하려면 선택적 인수를 사용하세요 . 이를 통해tabular
캡션에 삽입할 수 있습니다 .\begin{figure} \centering \begin{tikzpicture} \draw (0,0) -- (1,1); \end{tikzpicture} \caption[This is a caption]{This is a caption \begin{tabular}{c|c} tl & tr \\ \hline bl & br \end{tabular} } \end{figure}
그것은 모두 사용 사례에 따라 다릅니다. 두 경우 모두 tabular
LoF로 끝나지 않습니다.