我有一个 txt 文件,想将其导入 LaTeX。如何导入 txt 文件而不更改其格式?特别是,txt 文档有很多符号(它是其他程序的输出),因此 LaTeX 必须忽略这些符号...有什么办法吗?
psd:我目前的解决方案是将txt转换为pdf,然后将Pdf导入LaTeX。
答案1
使用 XeLaTeX 或 LuaLaTeX 等现代引擎以及包含字形的字体不会出现问题。
\begin{filecontents}{\jobname-Symbols.txt}
ä %00e4
ú %00fa
ẞ %1e9e
∋ %220b
ʤ %02a4
∏ %220f
ϗ %03d7
א %05d0
ᾧ %1fa7
⓴ %24f4
☙ %2619
\end{filecontents}
\documentclass{article}
\usepackage{fontspec}
\usepackage{libertine}
\begin{document}
Some normal text, let's input the Symbols
\verb!\input{\jobname-Symbols.txt}!
\input{\jobname-Symbols.txt}
\end{document}