因为我想将所有文本向上移动,所以如何摆脱页面顶部的默认间距?

因为我想将所有文本向上移动,所以如何摆脱页面顶部的默认间距?

帮助!

我想将所有文本上移,但似乎无法控制标题前的间距。我该怎么做?

我的源代码:

    \documentclass[10pt,a4paper]{article}
    \usepackage[utf8]{inputenc}
    \usepackage[T1]{fontenc}
    \usepackage[french]{babel}
    \usepackage{lipsum}
    \usepackage{blindtext}
    \usepackage{amssymb}
    \usepackage{amsmath}

    \begin{document}

    \begin{center}
        \Large
        \textbf{Exercice no.1}
    \end{center}

.................................................................................................................................................................................

    \\
    \\
    \Large{a)}
    \\
    \\
    \Large{$\lambda = 0$}\\ 
    \\
    \Large{$\Rightarrow y''= 0$}\\
    \Large{$\Rightarrow {y=ax+b \quad (a,b\in\mathbb{R}) \quad} \quad 
    \textrm{OU} \quad {y=0}$}\\
    \\
    \Large{Or, une fonction du premier degré est injective et, donc, ne respecte 
    pas les conditions initiales.}\\
    \\
    \Large{d'où $y=0$ est la seule solution possible.}\\
    \\

.............................................................................................................................

    \\
    \\
    \Large{b)}
    \\
    \\
    \Large{$\lambda<0$}
    \\
    \\
    \Large{$\Rightarrow y''-\lambda y = 0$}
    \\
    \Large{$\Rightarrow y = e^{rx} \quad \textrm{[ou y=0]}$}
    \\
    \Large{$\Rightarrow r^2 e^{rx} - \lambda e^{rx} = 0$}
    \\
    \Large{$\Rightarrow e^{rx}(r^2-\lambda)=0$}
    \\
    \Large{$\Rightarrow r^2-\lambda=0, \quad \textrm{car} \quad e^{rx}>0$}
    \\
    \Large{$\Rightarrow r=\pm\sqrt\lambda \quad \in \quad \mathbb{C/R}, \quad 
    \textrm{car} \quad \lambda<0$}
    \\
    \Large{$\Rightarrow r=0 \pm i\sqrt{|{\lambda}|}$}
    \\
    \Large{$\Rightarrow y=k_1cos(\sqrt{|\lambda|}x)+ik_2sin(\sqrt{|\lambda|}x), 
    \quad \textrm{car} \quad e^{0x}=1$}
    \\
    \\
    \Large{Or, $y(0)=k_1\neq0, \quad car \quad k_1,k_2 \in \mathbb{R}/0,$}
    \\
    \Large{\qquad ce qui ne respecte donc pas les conditions initiales.}
    \\
    \\
    \Large{d'où $y=0$ est la seule solution possible.}

    \end{document}

答案1

正如所发布的,您的代码将无法编译且不会出错。正如评论中所指出的,这也表明您正在尝试开始使用 LaTeX,而没有学习其工作原理的基础知识。请阅读众多可用的简介之一,因为它将为您节省大量浪费的时间和精力,以及许多许多麻烦,其中最大和最可怕的麻烦将根据索德著名的定律在最糟糕的时刻神秘地出现。

这是一个略有改进的版本。我猜你正在尝试模拟某种双倍行距。这在 LaTeX 中不是很好,但setspace至少是最低限度的。我使用过enumitem,以便您可以轻松配置列表,不太可能假设您被称为“Bob”,引入了titling,更大的字体大小,并且,正如 Bernard 所建议的那样,geometry。删除showframe选项以删除页面边框。这些只是为了向您展示布局。

这几乎肯定不是呈现数学的最佳方式,但它至少是一个相当大的改进,编译(这始终是一个加分项)并且不应该过多地抱怨不好的东西。

\documentclass[10pt,a4paper,french,12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{babel}
\usepackage{amssymb}
\usepackage{amsmath}
\usepackage[showframe]{geometry}
\usepackage{titling,setspace}
\usepackage{enumitem,calc}
\pretitle{\begin{center}\Large\bfseries}
\posttitle{\end{center}}
\predate{}
\postdate{}
\setlength\droptitle{-30pt}
\title{Exercice no.1}
\author{Bob}
\date{}
\doublespacing
\begin{document}
\maketitle

\begin{enumerate}[label=\alph*), itemsep=20pt]
  \item $\lambda = 0$

  $\Rightarrow y''= 0$

  $\Rightarrow {y=ax+b \quad (a,b\in\mathbb{R}) \quad} \quad \textrm{OU} \quad {y=0}$

  Or, une fonction du premier degré est injective et, donc, ne respecte pas les conditions initiales.

  d'où $y=0$ est la seule solution possible.

  \item $\lambda<0$

  $\Rightarrow y''-\lambda y = 0$

  $\Rightarrow y = e^{rx} \quad \textrm{[ou y=0]}$

  $\Rightarrow r^2 e^{rx} - \lambda e^{rx} = 0$

  $\Rightarrow e^{rx}(r^2-\lambda)=0$

  $\Rightarrow r^2-\lambda=0, \quad \textrm{car} \quad e^{rx}>0$

  $\Rightarrow r=\pm\sqrt\lambda \quad \in \quad \mathbb{C/R}, \quad \textrm{car} \quad \lambda<0$

  $\Rightarrow r=0 \pm i\sqrt{|{\lambda}|}$

  $\Rightarrow y=k_1cos(\sqrt{|\lambda|}x)+ik_2sin(\sqrt{|\lambda|}x), \quad \textrm{car} \quad e^{0x}=1$

  Or, $y(0)=k_1\neq0, \quad car \quad k_1,k_2 \in \mathbb{R}/0,$

  \qquad ce qui ne respecte donc pas les conditions initiales.

  d'où $y=0$ est la seule solution possible.
\end{enumerate}

\end{document}

生成的输出结果带有页面周围显示的框架以指示页面布局

相关内容