\parbox 不工作或者不可见?

\parbox 不工作或者不可见?

在此处输入图片描述我想使用 \parbox 来在文本周围添加一个方框。但是当我排版时,我只得到文本而没有方框...我不知道为什么。我担心这可能是我的序言中的问题...我在处理一系列文档时不断包含软件包,但我不知道它们会如何交互。包括 TeX 代码和我排版时得到的图像。非常感谢任何帮助。

\documentclass[11pt, letterpaper]{article}

\usepackage[utf8]{inputenc}
\usepackage{relsize, geometry, booktabs, hyperref, polynom, enumerate, amssymb,amsmath, graphicx,fancyhdr,empheq}
\usepackage{ragged2e}
\usepackage[hang,flushmargin]{footmisc}

\setcounter{section}{-1}

\usepackage[super]{nth}
\setlength\parindent{0.0in}
\renewcommand{\baselinestretch}{1}
\pagestyle{fancy}
\fancyhf{}
\renewcommand{\headrulewidth}{0pt}
\rhead{Day 16[![enter image description here][1]][1]}
\cfoot{\thepage}

\fancypagestyle{plain}{%
  \renewcommand{\headrulewidth}{0pt}%
  \fancyhf{}%
}


\begin{document}
\title {\textbf{Title}\\[0.2em]\smaller{}\textbf{Blah}: Blah}

\author{\copyright{} Name}
\date{April 2023}
\maketitle
\pagenumbering{arabic}

\parbox{\textwidth} { Why won't my box show up? }\\~\\


\end{document}

答案1

parbox 制作一个 tex 盒子,一个不可破坏的单元,它不绘制任何规则,用于在\fbox{\parbox{..}{...}}盒子周围设置一个框架

相关内容