我知道在两个文本之间添加空格的可能方法,如解释和回答所述这里。我很难设置一个单词前的空格,除了这个之外,我尝试过的其他方法都不起作用:
\documentclass[11pt]{article}
\usepackage{tcolorbox}
\begin{document}
\noindent\fcolorbox{black}{white}{
\parbox{\textwidth}{
Usage: export.py \\
\begin{tabular}{lp{5cm}}
& Save the ...
\end{tabular}}}
\end{document}
我的问题是:我可以用不同的方式从该行获取此输出吗?或者这是在单词前留空格的唯一方法?
编辑:更新代码;所有内容都在里面parbox
,我无法使用\quad
、\qquad
或\hspace
。
EDIT2:我需要在脚本选项中创建一个框,其显示方式与终端中的显示方式类似:
答案1
这不是一个完整的答案,但只是您的一个起点:
\documentclass[11pt]{article}
\usepackage{tcolorbox}
\begin{document}
\color{white}
\noindent\fcolorbox{black}{black}{
\parbox{\textwidth}{
\begin{tabular}{lp{5cm}}
Usage:& export.py \\
& Save the ...\\
Options:&\\
\multicolumn{1}{r}{-h,}&-{}-help \\
\multicolumn{1}{r}{-p,}&-{}-please continue\\
\multicolumn{1}{r}{-f,}&-{}-from here\\
\end{tabular}}}
\end{document}
这将给你: