从外部文本文件读取数据作为单独的行

从外部文本文件读取数据作为单独的行

我需要将这些内容读取为单独的行并在不同位置使用。

我怎样才能在 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}

在此处输入图片描述

但是我确实注意到一个限制,即文件不能以 开头%

相关内容