嗨,我正在尝试将文本强制移到小页面的顶部,但似乎没有任何效果。我对 Latex 还不熟悉,所以我了解不多。我正在使用 overleaf 编辑文件,我将两个小页面并排放置,右侧是我期望的,但左侧将所有内容保持在小页面的中心。这就是文本的样子(我希望 B862a 移到页面顶部)
生成此部分的代码如下:
\documentclass{article}
\usepackage{csquotes}
\usepackage{lipsum}
\begin{document}
{
\vspace*{\fill} % Posição vertical
%\hrule % Linha horizontal
\begin{center}
\begin{minipage}[c]{11.5cm}
\begin{center}
\lipsum[3]
\end{center}
\end{minipage}
\end{center}
\vspace{5 mm}
\fbox{
\begin{center} % Minipage Centralizado
\begin{minipage}[]{12.5cm} % Largura
\begin{minipage}[t]{.1\textwidth}
B862a
\vspace{\fill}
\end{minipage}
\begin{minipage}[]{.80\textwidth}
\lipsum[2]
\hspace{2mm}
\end{minipage}
\end{minipage}
\end{center}
}
%\hrule
}
\end{document}
答案1
发布的程序给出了一个错误。纠正错误后,我得到了满满的盒子,但是Peter Grill 的回答看起来工作正常。
你想要这样的东西吗?
\documentclass[]{article}
\usepackage{csquotes}
\usepackage{lipsum}
\begin{document}
\vspace*{\fill}% % Posição vertical
\begin{center}
\begin{minipage}[c]{11.5cm}
\begin{center}
\lipsum[3]\bigskip
\end{center}
\end{minipage}
\bigskip\par% skips are better than absolute dimensions like 5mm when you can use them
\noindent% don't indent this paragraph
\fbox{\centering% the center environment gives an error here. Change the padding of the box or insert e.g. \smallskip\par if you want more spacing
\begin{minipage}[]{.95\textwidth}% 12.5cm is too wide for the page layout % Largura
\begin{minipage}[t]{.1\textwidth}
B862a
\end{minipage} % note the space between the minipages here (a new line is a space unless commented)
\begin{minipage}[t]{.80\textwidth}
\lipsum[2]
\end{minipage}
\end{minipage}%
}
\end{center}
\end{document}
请注意,您实际上不需要csquotes
该示例。
答案2
对于这种情况,使用[t]
对齐选项minipage
似乎有效:
参考
- 答案在理解小页面 - 顶部对齐具有有用的参考价值。
代码:
\documentclass[a4paper]{article}
\begin{document}
\begin{minipage}[t]{.1\textwidth}
B862a
\end{minipage}%
\begin{minipage}[t]{.75\textwidth}
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin et blandit velit. Quisque lorem diam, aliquam sit amet nibh eu, facilisis hendrerit nulla. Nulla et auctor leo. Sed eros ligula, rhoncus a tristique ac, congue sit amet nisi. Duis semper ut mi id congue. Pellentesque ut purus vel diam posuere tincidunt. Integer luctus placerat accumsan.
\end{minipage}
\end{document}