这是对此的后续问题。我试图使用来自外部文件的数据来绘制点。垂直坐标表示国家,水平坐标表示年份。为了实现这一点,我需要向环境提供axis
国家列表作为符号坐标,而这正是我遇到的问题所在。
在下面的 MWE 中,在第一个 tikzpicture 中,我手动提供了国家列表,一切正常。在第二个 tikzpicture 中,我使用包\CatchFileDef
中的命令提供了从外部文件加载的列表catchfile
。这会产生错误,即使该命令\listcountries
似乎包含与我手动输入的文本完全相同的文本(即:AUT、GER、FRA)。
你能解释一下为什么\CatchFileDef
在这种情况下不起作用吗?
\documentclass{standalone}
\usepackage{filecontents,catchfile}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.7}
\usepackage{pgfplotstable}
\begin{filecontents}{testcountries.txt}
AUT,GER,FRA
\end{filecontents}
\begin{filecontents}{CountryYears.csv}
#########################################################
country,year
AUT,1998
AUT,1999
AUT,2000
GER,1999
GER,2000
GER,2001
GER,2002
FRA,2000
FRA,2001
FRA,2002
FRA,2003
#########################################################
\end{filecontents}
\begin{document}
\pgfplotstableset{columns/country/.style={string type}}
\pgfplotstableread[col sep=comma]{CountryYears.csv}\loadeddata
\CatchFileDef{\listcountries}{testcountries.txt}{}
This is the list of countries from testcountries.txt: \listcountries
\bigskip
\begin{tikzpicture}
\begin{axis}[symbolic y coords={AUT,GER,FRA
},ytick=data,
x tick label style={/pgf/number format/.cd,%
scaled x ticks = false,
set thousands separator={},
fixed},]
\addplot[only marks] table[x=year,y=country] \loadeddata;
\end{axis}
\end{tikzpicture}
\begin{tikzpicture}
\begin{axis}[symbolic y coords={\listcountries
},ytick=data,
x tick label style={/pgf/number format/.cd,%
scaled x ticks = false,
set thousands separator={},
fixed},]
\addplot[only marks] table[x=year,y=country] \loadeddata;
\end{axis}
\end{tikzpicture}
\end{document}
答案1
该参数未展开;您需要先展开它,然后才能\begin{axis}
吸收选项:
\documentclass{standalone}
\usepackage{filecontents,catchfile}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=1.7}
\usepackage{pgfplotstable}
\begin{filecontents}{testcountries.txt}
AUT,GER,FRA
\end{filecontents}
\begin{filecontents}{CountryYears.csv}
country,year
AUT,1998
AUT,1999
AUT,2000
GER,1999
GER,2000
GER,2001
GER,2002
FRA,2000
FRA,2001
FRA,2002
FRA,2003
\end{filecontents}
\begin{document}
\pgfplotstableset{columns/country/.style={string type}}
\pgfplotstableread[col sep=comma]{CountryYears.csv}\loadeddata
\CatchFileDef{\listcountries}{testcountries.txt}{}
This is the list of countries from testcountries.txt: \listcountries
\bigskip
\begin{tikzpicture}
\begin{axis}[
symbolic y coords={AUT,GER,FRA},
ytick=data,
x tick label style={
/pgf/number format/.cd,
scaled x ticks = false,
set thousands separator={},
fixed
},
]
\addplot[only marks] table[x=year,y=country] \loadeddata;
\end{axis}
\end{tikzpicture}
\begin{tikzpicture}
\begingroup\edef\x{\endgroup
\noexpand\begin{axis}[
symbolic y coords={\unexpanded\expandafter{\listcountries}},
ytick=data,
x tick label style={
/pgf/number format/.cd,%
scaled x ticks = false,
set thousands separator={},
fixed
},
]}\x
\addplot[only marks] table[x=year,y=country] \loadeddata;
\end{axis}
\end{tikzpicture}
\end{document}