我认为标题中的伪代码说明了一切:TeX(或 LaTeX)如何找出正在运行的 $USER pdflatex
?
latex
我正在合作,希望当我运行时的输出与我的合作者运行时的输出看起来略有不同。
答案1
该方法适用于所有操作系统(但基本与 David 的方法相同),还需要-shell-escape
:
\documentclass{article}
\usepackage{catchfile}
% #1 = control sequence to define
% #2 = variable to get the value of
\newcommand{\getvar}[2]{%
\CatchFileEdef#1{"|kpsewhich -var-value #2"}{\endlinechar=-1 }%
}
\def\me{enrico}
\getvar{\usrtest}{USER}
\begin{document}
\ifx\me\usrtest ME \else IMPOSTER\fi
\end{document}
有了它,kpsewhich
我们就可以避免使用引号和美元符号%
;程序在 TeX Live 和 MiKTeX 上应该可以同样地工作。当然,在不同的操作系统上,要设置的变量名称可能会有所不同:在USER
Unix 上和USERNAME
在 Windows 上。
答案2
我对 LuaLaTeX 的卑微尝试:
\documentclass{article}
\usepackage{luacode}
\usepackage[T1]{fontenc}
\begin{luacode}
-- get the username variable,
-- or a default string in case
-- the variable is not found
function getUsername()
return os.getenv("USERNAME") or "Oh no!"
end
-- let's do a simple comparison
-- and print the test result
function checkUsername(username)
if username == getUsername() then
tex.print("Authenticated.")
else
tex.print("I'm calling the \\TeX\\ police.")
end
end
\end{luacode}
\newcommand\authenticate[1]{\luadirect{checkUsername(\luastring{#1})}}
\begin{document}
Trying with \verb|paulo|: \authenticate{paulo}
Trying with \verb|david|: \authenticate{david}
\end{document}
输出:
答案3
这需要
pdflatex --shell-escape
\documentclass{article}
\makeatletter
{\everyeof{\noexpand}
\xdef\usrtest{\@@input"|echo \string$USER""\expandafter}}
\makeatother
\def\me{davidc}
\begin{document}
\ifx\me\usrtest ME \else IMPOSTER\fi
\end{document}
答案4
正如我所说的,我认为你不能直接访问用户名(编辑:好的,你可以,参见上文),但该optional
包应该可以正常工作:
\documentclass{minimal}
\usepackage[bob]{optional} %\usepackage[joe]{optional}
\begin{document}
This document was compiled by \opt{joe}{Joe Schmoe}\opt{bob}{Bob Wilbur}!
\end{document}