我需要将这些内容读取为单独的行并在不同位置使用。
我怎样才能在 LaTeX 中完成这个?
% my text file contents are %
College Name
College Address
university Name
% end of contents
答案1
也许是这样的?
\documentclass{article}
\usepackage{readarray}[2016-11-07]
\usepackage{filecontents,lipsum}
\begin{filecontents*}{myfile}
College Name
College Address
university Name
\end{filecontents*}
\begin{document}
\readrecordarray{myfile.tex}\mydata
Second record is ``\mydata[2].''
\lipsum[1]
Third Record is ``\mydata[3].''
\end{document}
但是我确实注意到一个限制,即文件不能以 开头%
。