내 코드에서 임의 들여쓰기

내 코드에서 임의 들여쓰기

내 코드는 다음과 같습니다.

\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}.

관련 정보