1,000행의 제품 데이터가 포함된 파일이 있습니다. 내 문서에 인쇄할 특정 제품 유형만 선택하고 싶습니다.
다음의 최소 코드 main.tex
:
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{product.tex}
%Type =1,2...10
No.,Type ,Name , Description
1, 1, A1,D1
….
30, 1, A1, D30
31, 2, A2, D31
…
131,2, A2, D131
132,3,A3,D132
….
249,4,A4,D249
…
1.000,10, A10,D1000
\end{filecontents*}
\begin{document}
%Need command can CHOOSE Type = 1 and/or 2, and/or 3, ...10
%i choose type = 1 & 3
\include{run.tex}
\end{document}
제품 유형의 범위는 1, 2, ..., 10입니다 run.tex
.
%Display like:
Name[i] & Description[j]
main.pdf
결과:
유형 = 1 A1 - D1 … A1 - D30 유형 = 3 A3 - D132 … A3 - D248
답변1
사용datatool
이를 위해:
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{product.tex}
%Type =1,2...10
No,Type,Name,Description
1,1,A1,D1
2,1,A1,D2
3,1,A1,D3
30,1,A1,D30
31,2,A2,D31
131,2,A2,D131
132,3,A3,D132
133,3,A3,D133
134,3,A3,D134
249,4,A4,D249
1000,10,A10,D1000
\end{filecontents*}
\usepackage{datatool}
\DTLloaddb[autokeys=false]{products}{product.tex}
\newcommand{\printtype}[1]{%
\par
\section*{Type #1}
\DTLforeach*
[\DTLiseq{\Type}{#1}]% Condition
{products}% Database
{\No=No,\Type=Type,\Name=Name,\Description=Description}{%
\noindent\Name \quad \Description\par
}%
}
\begin{document}
Here is some text.
\printtype{1}
Some breaking text here.
\printtype{3}
And then some final text.
\end{document}
이 \printtype{<type>}
명령은 데이터베이스를 \DTLforeach
순환 하고 동일한 products
항목만 인쇄하는 데 사용됩니다 . 원하는 대로 프레젠테이션 형식을 지정할 수 있습니다.\Type
<type>
답변2
이것은 다음을 기반으로 한 답변입니다.이 답변. 여기서 중요한 점은 \pgfplotsinvokeforeach
조판하려는 유형을 반복하기 위해 수행해야 할 작업이 아니라 \foreach
.
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{product.dat}
No.,Type,Name,Description
1, 1, A1,D1
2, 1, A1,D2
30, 1, A1, D30
31, 2, A2, D31
131,2, A2, D131
132,3,A3,D132
249,4,A4,D249
1.000,10, A10,D1000
\end{filecontents*}
\usepackage{amsmath,amssymb}
\usepackage{pgfplotstable}
\pgfplotsset{compat=1.16}
\begin{document}
\pgfplotstableread[col sep=comma]{product.dat}{\data}
\pgfplotsinvokeforeach{1,3}{
\subsection*{\boldmath$\text{Type}=#1$}
\pgfplotstabletypeset[string type,
row predicate/.code={%
\pgfplotstablegetelem{##1}{Type}\of{\data}
\ifnum\pgfplotsretval=#1\relax
\else\pgfplotstableuserowfalse\fi}
]{\data}
}
\end{document}