我该怎么做?我可以使用 tikz 设置一些东西吗?我希望能够描述不同长度和复杂度的 ID。最好是一些类似脚本的功能。我对 latex 或 tikz 并不陌生,但我的使用方法一直很简单。
谢谢你!
编辑:重新审视我的这个旧问题后,我终于想出了一个解决方案,我对此非常满意。因此,为了以防有人遇到类似的问题,我会在下面发布它:
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{positioning, arrows}
\begin{document}
\def\myhbar{1mm}
\def\myvbar{.3mm}
\def\myyshift{0mm}
\def\myxshift{0mm}
\pgfmathsetmacro{\myinnersep}{0.5}
\begin{tikzpicture}[auto,node distance=.5mm,font=\tiny\ttfamily, minimum height={height("Ag")+\myinnersep*1mm},inner sep=\myinnersep*1mm]
\node [] (a1) at(2,0) {-rw-r--r--};
\foreach [count=\x from 2] \txt in {\phantom{0}6,michael,admins,4096,Apr 25 13:53,some\_file.txt}{
\pgfmathparse{\x-1}
\node [right = of a\pgfmathresult] (a\x) {\txt};
}
\node [below = -1mm of a1] (b1) {drwxr-xr-x};
\draw [] ([yshift=\myhbar+\myyshift,xshift=\myvbar]b1.south west) -- ([yshift=\myyshift,xshift=\myvbar]b1.south west) -- ([yshift=\myyshift,xshift=-\myvbar]b1.south east) -- ([yshift=\myhbar+\myyshift,xshift=-\myvbar]b1.south east);
\foreach [count=\x from 2] \txt in {22,collins,editor,4096,Apr 25 13:53,some\_folder}{
\pgfmathparse{\x-1}
\node [right = of b\pgfmathresult] (b\x) {\txt};
\draw [] ([yshift=\myhbar+\myyshift,xshift=\myvbar]b\x.south west) -- ([yshift=\myyshift,xshift=\myvbar]b\x.south west) -- ([yshift=\myyshift,xshift=-\myvbar]b\x.south east) -- ([yshift=\myhbar+\myyshift,xshift=-\myvbar]b\x.south east);
}
\foreach [count=\y from 1] \desc in {file permissions, number of links, user, group, size, date and time, name}{
\node [anchor=west](c\y) at (0,-\y*2mm-5mm){\desc};
\draw [<-,arrows={-[}] (c\y.east) -| ([yshift=\myyshift]b\y.south);
}
\end{tikzpicture}
\end{document}