乳胶中的问题

发布于 2024-08-27 17:52:50 字数 809 浏览 8 评论 0原文

我在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

茶色山野 2024-09-03 17:52:50

您可以使用 \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.

素手挽清风 2024-09-03 17:52:50

我个人讨厌在 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.

摘星┃星的人 2024-09-03 17:52:50

你正在尝试手工做一些 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.

森林散布 2024-09-03 17:52:50

也许您可以尝试将其放入一个或多个 盒子 中,

\parbox[pos]{width}{...text...}

或者

\begin{minipage}[pos]{width}...text...\end{minipage}

Maybe you could experiment by either putting it inside one or several boxes, either

\parbox[pos]{width}{...text...}

or

\begin{minipage}[pos]{width}...text...\end{minipage}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文