乳胶中的问题
我在 Latex 中遇到问题:如果我有:
\begin{enumerate}
\item Alert - Mesaje de avertizare, erori, etc.
\item Form - Permite crearea de ecrane compuse din alte componente, cum ar fi imagini (Image) sau articole derivate din Item (ChoiceGroup, CustomItem, DateField, Gauge, ImageItem, Spacer, StringItem, TextField).
\item List - Ecran pentru selectarea unei op\c tiuni dintr-o mul\c time prestabilit\u a.
\item TextBox - Ecran pentru introducerea unui text.
\end{enumerate}
\bf BIBLIOGRAFIE
\linebreak \linebreak
1.suport\hspace{0.2cm}curs
那么,我想在最后一项之后显示 BIBLIOGRAFIE,但它们之间有两行。所以我有“TextBox - Ecran pentru importrea unui text.”,然后是两行,然后是 BIBLIOGRAFIE。我该怎么写呢?使用这段代码,List 和 TextBox 项之间的空间非常大,并且 BIBLIOGRAFIE 显示在底部......为什么?如果我在 \end{enumerate} 之后使用 \linebreak 我收到编译错误 请帮忙
谢谢!
I have a problem in Latex: if i have:
\begin{enumerate}
\item Alert - Mesaje de avertizare, erori, etc.
\item Form - Permite crearea de ecrane compuse din alte componente, cum ar fi imagini (Image) sau articole derivate din Item (ChoiceGroup, CustomItem, DateField, Gauge, ImageItem, Spacer, StringItem, TextField).
\item List - Ecran pentru selectarea unei op\c tiuni dintr-o mul\c time prestabilit\u a.
\item TextBox - Ecran pentru introducerea unui text.
\end{enumerate}
\bf BIBLIOGRAFIE
\linebreak \linebreak
1.suport\hspace{0.2cm}curs
then, i wanna display that BIBLIOGRAFIE after the last item, but with two lines between them. So i have "TextBox - Ecran pentru introducerea unui text.", then two lines, then BIBLIOGRAFIE. how can i write that? with this code, the space between List and TextBox items are very large, and BIBLIOGRAFIE is displayed at the buttom... why? if i use \linebreak after \end{enumerate} i got a compile error
Please help
Thankls!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用
\vspace
来控制垂直间距。因此,在您的情况下,由于空间太大,您可以向 vspace 传递一个负参数,例如\vspace{-3mm}
,它应该会为您移动。You can use
\vspace
to control vertical spacing. So in your case since you have too much space, you can pass vspace a negative argument such as\vspace{-3mm}
and it should move things up for you.我个人讨厌在 LaTeX 中使用任何神奇的数字;我更喜欢
\smallskip
\medskip
\bigskip
\vfill
换行不起作用,因为没有要换行的地方,因为在 LaTeX 中的任何其他代码之后编写某些内容并不意味着它会立即出现; LaTeX 不是这样的。
I personally hate using any magical numbers in LaTeX; I would prefer
\smallskip
\medskip
\bigskip
\vfill
The linebreak doesn't work, because there is no line to be broken, because writing something after any other code in LaTeX doesn't mean it will appear immediately after that; LaTeX is not like that.
你正在尝试手工做一些 LaTeX 很乐意为你做的事情。
不要使用 \bf 来创建节标题,而是尝试
\section*{Bibliografie}
。 (星号是为了防止该部分被编号。)如果该标题太大,请尝试\subsection*{Bibliografie}
甚至\subsubsection*{Bibliografie}
。一旦 LaTeX 知道节标题是你想要做的,它应该为你插入垂直空间;你不需要
\linebreak
或类似的东西。You're trying to do by hand something that LaTeX will happily do for you.
Instead of using \bf to make a section header, try
\section*{Bibliografie}
. (The asterisk is to keep the section from being numbered.) If that header is too big, try\subsection*{Bibliografie}
or even\subsubsection*{Bibliografie}
.Once LaTeX knows that a section header is what you're trying to do, it should insert vertical space for you; you won't need
\linebreak
or anything like it.也许您可以尝试将其放入一个或多个 盒子 中,
或者
Maybe you could experiment by either putting it inside one or several boxes, either
or