私のコード内のランダムインデント

私のコード内のランダムインデント

これが私のコードです:

\documentclass[12pt,fleqn]{article}

\usepackage[margin = 0.25in, letterpaper]{geometry}
\usepackage{amsmath, amssymb}
\usepackage{textcomp}
\usepackage{framed}
\usepackage{graphicx}
\usepackage{blindtext}
\usepackage{multicol}


\begin{document}
\begin{framed}
    \section[short]{Functions and Algebra}
    \textbf{POLYNOMIALS}\\
    For \(p(x)~|~ n~is~the~degree~of~p(x);\)\\
    \(p(x) = a_{0}x^0 + a_{1}x + a_{2}x^2 ... a_{n}a^n \)\\
    With \(p(x)\) having \(n\) number of \(zeros(z), complex ~ or ~ real\), can be factored, \\
    \(p(x)=(x-z_{1})(x-z_{2})...(x-z_{n})\)
    \begin{multicols}{2}
        \begin{framed}
            \begin{center}
                Common Factoring Formulae: \\
                \(a^2 - b^2 = (a+b)(a-b)\)\\
                \(a^3 \pm b^3 = (a-b)(a^2 + b^2 \mp ab)\)
            \end{center}
        \end{framed}
        \columnbreak
        \begin{framed}
            \begin{center}
                Common Expanding Formulae: \\
                \((a \pm b)^2 = a^2 \pm 2ab +b^2\)\\
                \((a \pm b)^3 = a^3 \pm 3a^2b + 3ab^2 + b^2\)
            \end{center}
        \end{framed}
    \end{multicols}
    \textbf{FUNCTIONS}\\
    Reflection of a function over the \(y-axis\) of \(f(x)\) is \(f(-x)\)\\
    Reflection of a function over the \(x-axis\) of \(f(x)\) is \(-f(x)\)\\
    Trasformation of \(f(x) \rightarrow af[b(x-h)]+k\)\\


    \section[short]{Logarithms}
    Defined as \(a^b = x \longleftrightarrow \log_{a}x = b \)\\
    Principle Identities;\\
    \(a^{\log_{a}x} = x\) ~~
    \(\log_{a}1=0\) ~~
    \(\log_{a}a=1\) ~~
    \(\log_{\frac{1}{a}}a = -1\)
\end{framed}
\end{document}

37 行目にランダムなインデントがあるようです。\textbf{FUNCTIONS}\\

エラーコードはUnderfull \hbox (badness 10000)LaTeX

エラーを検索し、同じエラー コードの以前の問題を修正しましたが、このエラーだけは修正できないようです。出力は次のようになります。ランダムなインデントを強調表示します。 私の出力は次のようになります。ランダムなインデントを強調表示します。

助けてください。私は初心者の LaTeX プログラマーです。この質問がすでに出ていた場合は申し訳ありません。

答え1

Underfull \hbox (badness 10000)段落の末尾に間違った位置を置いたため\\、すべて削除します。

赤い矢印は「ランダムインデント」ではなく、段落の通常のインデントの開始です。次のようなセクション見出しを使用する必要があります。

\subsection*{FUNCTIONS}

ない\textbf

\subsection*POLOYNOMIALS も、見出しの後の最初の段落なので、その場合はインデントを抑制する必要があります\section{Functions and Algebra}

関連情報