Мне понадобится что-то вроде этого:
\setfield{record1}{field1}{alpha}
\setfield{record1}{field2}{beta}
\setfield{record2}{field1}{gamma}
\setfield{record2}{field2}{delta}
\assign{record3}{record2}
\getfield{record1}{field1} % should expand to alpha
\getfield{record1}{field2} % should expand to beta
\getfield{record2}{field1} % should expand to gamma
\getfield{record2}{field2} % should expand to delta
\getfield{record3}{field1} % should expand to gamma
\getfield{record3}{field2} % should expand to delta
Есть ли пакет для этого? Я мог бы жить без assign
команды.
решение1
По сути, \setfield
это , \def
где последовательность c
управления создается с использованием первых двух аргументов. просто устанавливает запрошенную последовательность управления (проверка ошибок не выполняется; ... возвращает , если запись/поле не существует).s
name
\getfield
\csname
\endcsname
\relax
\documentclass{article}
\usepackage{etoolbox}
\newcommand{\setfield}[3]{%
\expandafter\def\csname #1@#2\endcsname{#3}%
\listcsgadd{#1}{#2}%
}
\newcommand{\getfield}[2]{%
\ifcsname #1@alias\endcsname
\expandafter\expandafter\expandafter\csname \csname #1@alias\endcsname @#2\endcsname
\else
\csname #1@#2\endcsname
\fi}
\newcommand{\recordalias}[2]{\expandafter\def\csname #2@alias\endcsname{#1}}
\newcommand{\recordcopy}[2]{%
\renewcommand*{\do}[1]{%
\expandafter\edef\csname #2@##1\endcsname{\csname #1@##1\endcsname}}%
\dolistcsloop{#1}%
}
\begin{document}
\setfield{record1}{field1}{alpha}
\setfield{record1}{field2}{$\beta$}
\setfield{record2}{field1}{gamma}
\setfield{record2}{field2}{$\delta$}
\recordalias{record2}{record3}
\recordcopy{record2}{record4}
\getfield{record1}{field1} % should expand to alpha
\getfield{record1}{field2} % should expand to $\beta$
\getfield{record2}{field1} % should expand to gamma
\getfield{record2}{field2} % should expand to $\delta$
\getfield{record3}{field1} % should expand to gamma
\getfield{record3}{field2} % should expand to $\delta$
\setfield{record2}{field1}{$\gamma$}
\getfield{record2}{field1} % should expand to $\gamma$
\getfield{record3}{field1} % should expand to $\gamma$
\getfield{record4}{field1} % should expand to gamma
\end{document}
Добавлены два типа заданий:
- псевдонимvia
\recordalias{<first>}{<second>}
- это делает<second>
запись псевдонимом для<first>
; - копияvia
\recordcopy{<first>}{<second>}
- это последовательно копирует все поля из<first>
в<second>
с использованием обработки списка, предоставляемойetoolbox
.
решение2
\documentclass[10pt]{article}
\usepackage{readarray}
\begin{document}
\readarraysepchar{ }
\def\mydata{alpha beta gamma delta}
\readarray\mydata\myarray[-,2]% Read \mydata as 2 fields into 2-D \myarray
Cell (2,2) has \myarray[2,2]
whereas cell (1,2) has \myarray[1,2]
\end{document}
Если данные находятся в файле, тоже нет проблем. Обратите внимание \readdef
, что при чтении файла устанавливается \ncols
на количество полей, обнаруженных в первой строке, и может использоваться вместо явного 2
для \readarray
. Я также демонстрирую использование другого разделителя (запятая вместо пробела) и показываю, как опция *
удалит \readarray
начальные и конечные пробелы.
\documentclass[10pt]{article}
\usepackage{readarray,filecontents}
\begin{filecontents*}{mydatafile}
alpha, beta
gamma, delta force
\end{filecontents*}
\begin{document}
\readarraysepchar{,}
\readdef{mydatafile}{\mydata}
\readarray*\mydata\myarray[-,\ncols]% Read \mydata as 2 fields into 2-D \myarray
Cell (2,2) has \myarray[2,2]
whereas cell (1,2) has \myarray[1,2]
\end{document}
ОКОНЧАТЕЛЬНОЕсли необходимо изменять данные ячейки «на лету», я реализую следующий макрос \setfield\<array name>[<row>,<column>]{<data>}
:
\documentclass[10pt]{article}
\usepackage{readarray}
\makeatletter
\gdef\setfield#1[#2,#3]#4{%
\expandafter\gdef\csname\expandafter\@gobble\string#1[#2,#3]\endcsname{#4}}%
\makeatother
\begin{document}
\readarraysepchar{ }
\def\mydata{alpha beta gamma delta}
\readarray\mydata\myarray[-,2]% Read \mydata as 2 fields into 2-D \myarray
Cell (2,2) has \myarray[2,2]
whereas cell (1,2) has \myarray[1,2]
\setfield\myarray[1,2]{$\beta$}
Cell (1,2) now has \myarray[1,2].
\end{document}