我useasboundingbox
在 tikz 图片中使用 使它们光学居中。我希望标题与边界框的左边缘对齐。通常,这可以measuredfigure
通过 的环境来完成threeparttable
。在下面的代码中,它没有。我做错了什么?标题应该与 y 轴对齐,即边界框的左边缘。
(抱歉,这个例子不够简单。我全局设置了一些图的参数,但我不知道问题出在哪里。)
\documentclass{article}
\usepackage{tikz}
\usepackage{threeparttable}
\usepackage{calc}
\usepackage[singlelinecheck=false]{caption}
\begin{document}
\newlength\plotheight % Height of plotting area
\setlength\plotheight{.4\textwidth}
\newlength\plotwidth % Width of plotting area
\setlength\plotwidth{.7\textwidth}
\newlength\axissep % Space between plotting area and axis
\setlength\axissep{\parindent}
\newlength\tickl % Length of minor ticks
\setlength\tickl{2mm}
\newlength\ylabsep % space between plotting area and ylab
\setlength\ylabsep{\axissep+\tickl+2em}
\newlength\xlabsep % space between plotting area and ylab
\setlength\xlabsep{\axissep+\tickl+2em}
\begin{figure}
\begin{measuredfigure}
\caption{Some caption}
\def\maxy{50}
\def\miny{0}
\def\maxx{40}
\def\minx{0}
\def\xlab{x-label}
\def\ylab{y-label}
\begin{tikzpicture}[y=\plotheight/(\maxy-\miny)
, x=\plotwidth/(\maxx-\minx)]
\useasboundingbox (\miny-\axissep,\miny-\xlabsep)
rectangle (\maxx,\maxy);
% y-axis
\draw (\minx-\axissep,\miny) -- (\minx-\axissep,\maxy);
% y-ticks
\foreach \x/\l in {\miny,10,...,\maxy}
{\draw (\minx,\x) ++ (-\axissep,0) -- ++ (-\tickl,0)
% y-ticklabels
node[anchor=east] {\l};}
% y-label
\path (\minx-\ylabsep, {(\miny+\maxy)/2}) node[rotate=90 ,anchor=south] {\ylab};
% x-axis
\draw (\minx,\miny) ++ (0,-\axissep) -- ++ (\maxx,0);
% x-ticks
\foreach \x in {0,10,...,\maxx}
\draw (\x, \miny) ++ (0,-\axissep) -- ++ (0, -\tickl)
% x-ticklabels
node [anchor=north] {\x};
% x-label
\path ({(\minx+\maxx)/2},\miny) ++ (0, -\xlabsep)
node[anchor=north] {\xlab};
\end{tikzpicture}
\end{measuredfigure}
\end{figure}
\end{document}
答案1
您有几个虚假的空格。在环境%
内的行末添加measuredfigure
。
\documentclass{article}
\usepackage{tikz}
\usepackage{threeparttable}
\usepackage{calc}
\usepackage[singlelinecheck=false]{caption}
\begin{document}
\newlength\plotheight % Height of plotting area
\setlength\plotheight{.4\textwidth}
\newlength\plotwidth % Width of plotting area
\setlength\plotwidth{.7\textwidth}
\newlength\axissep % Space between plotting area and axis
\setlength\axissep{\parindent}
\newlength\tickl % Length of minor ticks
\setlength\tickl{2mm}
\newlength\ylabsep % space between plotting area and ylab
\setlength\ylabsep{\axissep+\tickl+2em}
\newlength\xlabsep % space between plotting area and ylab
\setlength\xlabsep{\axissep+\tickl+2em}
\begin{figure}
\centering% <- added code
\begin{measuredfigure}
\caption{Some caption}%
%
\def\maxy{50}%
\def\miny{0}%
\def\maxx{40}%
\def\minx{0}%
\def\xlab{x-label}%
\def\ylab{y-label}%
%
\begin{tikzpicture}[y=\plotheight/(\maxy-\miny)
, x=\plotwidth/(\maxx-\minx)]
% bounding box
\useasboundingbox(\minx-\axissep,\miny-\xlabsep)
rectangle (\maxx,\maxy);
% y-axis
\draw (\minx-\axissep,\miny) -- (\minx-\axissep,\maxy);
% y-ticks
\foreach \x/\l in {\miny,10,...,\maxy}
{\draw (\minx,\x) ++ (-\axissep,0) -- ++ (-\tickl,0)
% y-ticklabels
node[anchor=east] {\l};}
% y-label
\path (\minx-\ylabsep, {(\miny+\maxy)/2}) node[rotate=90 ,anchor=south] {\ylab};
% x-axis
\draw (\minx,\miny) ++ (0,-\axissep) -- ++ (\maxx,0);
% x-ticks
\foreach \x in {0,10,...,\maxx}
\draw (\x, \miny) ++ (0,-\axissep) -- ++ (0, -\tickl)
% x-ticklabels
node [anchor=north] {\x};
% x-label
\path ({(\minx+\maxx)/2},\miny) ++ (0, -\xlabsep)
node[anchor=north] {\xlab};
% drawing the bounding box
\draw[red](current bounding box.south west)
rectangle(current bounding box.north east);
\end{tikzpicture}%
\end{measuredfigure}
\end{figure}
\end{document}
请注意,我已使用环境\centering
内部figure
来使图片居中。边界框由红色矩形显示。