04_The_geometry_package_cheat_sheetgeometry-cheat-sheet绘制代码如下:

\documentclass{article}

\usepackage{tikz}
\usepackage{lipsum}
\usetikzlibrary{math}
\usetikzlibrary{calc}

\begin{document}

\begin{tikzpicture}[scale=0.035]
  \footnotesize
  \tikzmath{
    \PAPERWIDTH=210;
    \PAPERHEIGHT=297;
    \LMARGIN=35;
    \RMARGIN=25;
    \TMARGIN=55;
    \BMARGIN=45;
    \HEADHEIGHT=12;
    \HEADSEP=20;
    \FOOTSKIP=20;
    \WIDTH=\PAPERWIDTH-\LMARGIN-\RMARGIN;
    \HEIGHT=\PAPERHEIGHT-\TMARGIN-\BMARGIN;
  }

  \coordinate(SW) at (0,0);
  \coordinate(NE) at (\PAPERWIDTH,\PAPERHEIGHT);
  \coordinate(NW) at (SW |- NE);
  \coordinate(SE) at (SW -| NE);

  \coordinate(sw) at (\LMARGIN,\BMARGIN);
  \coordinate(ne) at ($(\LMARGIN,\BMARGIN)+(\WIDTH,\HEIGHT)$);
  \coordinate(nw) at (sw |- ne);
  \coordinate(se) at (sw -| ne);

  \coordinate(fsw) at ($(sw)-(0,\FOOTSKIP)$);
  \coordinate(fse) at ($(fsw)+(\WIDTH,0)$);

  \coordinate(hsw) at ($(nw)+(0,\HEADSEP)$);
  \coordinate(hne) at ($(hsw)+(\WIDTH,\HEADHEIGHT)$);
  \coordinate(hnw) at (hsw |- hne);
  \coordinate(hse) at (hsw -| hne);

  \begin{scope}[thick]
    \draw (SW) rectangle (NE);
    \draw (sw) rectangle (ne);
    \draw (fsw) -- (fse);
    \draw (hsw) rectangle (hne);
  \end{scope}

  \newcommand\hmeasure[4][0]{% #1: offset, #2: name, #3,#4: coordinates
    \node(#2) at ($(#3)!0.5!(#4)+(0,-#1)$) {\texttt{#2}};
    \draw[<-] ($(#3)+(0,-#1)$) -- (#2);
    \draw[->] (#2) -- ($(#4)+(0,-#1)$);
  }
  \newcommand\vmeasure[4][0]{% #1: offset, #2: name, #3,#4: coordinates
    \node[rotate=90](#2) at ($(#3)!0.5!(#4)+(#1,0)$) {\texttt{#2}};
    \draw[<-] ($(#3)+(#1,0)$) -- (#2);
    \draw[->] (#2) -- ($(#4)+(#1,0)$);
  }

  \hmeasure[8]{paperwidth}{SW}{SE}
  \vmeasure[8]{paperheight}{SE}{NE}

  \coordinate[yshift=20](sw1) at (sw);
  \coordinate[yshift=20](se1) at (se);
  \hmeasure{width}{sw1}{se1}

  \coordinate[xshift=-30](se2) at (se);
  \coordinate[xshift=-30](ne2) at (ne);
  \vmeasure{height}{se2}{ne2}

  \coordinate[xshift=20](sw3) at (sw);
  \coordinate[xshift=20](fsw3) at (fsw);
  \hmeasure{footskip}{sw3}{fsw3}

  \coordinate[xshift=20](nw4) at (nw);
  \coordinate[xshift=20](hsw4) at (hsw);
  \hmeasure{headsep}{nw4}{hsw4}

  \coordinate[xshift=-30](hse5) at (hse);
  \coordinate[xshift=-30](hne5) at (hne);
  \hmeasure{headheight}{hse5}{hne5}

  \coordinate(W) at ($(SW)!0.5!(NW)$);
  \coordinate(w) at ($(sw|-SW)!0.5!(nw|-NW)$);
  \vmeasure{lmargin}{W}{w}

  \coordinate(E) at ($(SE)!0.5!(NE)$);
  \coordinate(e) at ($(se|-SE)!0.5!(ne|-NE)$);
  \vmeasure{rmargin}{E}{e}

  \coordinate(N) at ($(NW)!0.5!(NW-|nw)$);
  \coordinate(n) at ($(nw-|N)$);
  \vmeasure{tmargin}{N}{n}
  \draw[dotted] (nw) -- (NW|-nw);

  \coordinate(S) at ($(SW)!0.5!(SW-|sw)$);
  \coordinate(s) at ($(sw-|S)$);
  \vmeasure{bmargin}{S}{s}
  \draw[dotted] (sw) -- (SW|-sw);
\end{tikzpicture}

\end{document}

另外,ChinaTeX组织翻译了geometry的说明文档,仍需更新,主要内容没有太大变化,推荐给您,猛击这里

点赞(0)

评论列表 共有 0 条评论

暂无评论
立即
投稿

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部