方程式很大

方程式很大

我的方程式太大,沒有進入表格,我該如何解決?

\begin{equation}
    \label{ecuacionTrOpti}
    [(lr: 0{.}1, error: 0{.}1),(lr: 0{.}1, error: 0{.}5),(lr: 0{.}1, error: 0{.}9),
     (lr: 0{.}5, error: 0{.}1),(lr: 0{.}5, error: 0{.}5),(lr: 0{.}5, error: 0{.}9),
     (lr: 0{.}9, error: 0{.}1),(lr: 0{.}9, error: 0{.}5),(lr: 0{.}9, error: 0{.}9)]
    \end{equation}

答案1

即使您仍然需要方程式標籤,作為等寬文字不是更好嗎?

\documentclass{article}
\usepackage[usestackEOL]{stackengine}
\begin{document}
This
\begin{equation}
    \label{ecuacionTrOptiA}
  \textrm{\ttfamily\Longstack[r]{%
    [(lr: 0{.}1, error: 0{.}1),(lr: 0{.}1, error: 0{.}5),\\
     (lr: 0{.}1, error: 0{.}9),(lr: 0{.}5, error: 0{.}1),\\
     (lr: 0{.}5, error: 0{.}5),(lr: 0{.}5, error: 0{.}9),\\
     (lr: 0{.}9, error: 0{.}1),(lr: 0{.}9, error: 0{.}5),\\
     (lr: 0{.}9, error: 0{.}9)]
  }}
    \end{equation}
or this:
\begin{equation}
    \label{ecuacionTrOptiB}
  \textrm{\Longstack[r]{%
    [(lr: 0{.}1, error: 0{.}1),(lr: 0{.}1, error: 0{.}5),(lr: 0{.}1, error: 0{.}9),\\
     (lr: 0{.}5, error: 0{.}1),(lr: 0{.}5, error: 0{.}5),(lr: 0{.}5, error: 0{.}9),\\
     (lr: 0{.}9, error: 0{.}1),(lr: 0{.}9, error: 0{.}5),(lr: 0{.}9, error: 0{.}9)]
  }}
    \end{equation}
\end{document}

在此輸入影像描述

答案2

另一種解決方案可能是使用align\notag \\進入該頁面。

\begin{align}
    \label{ecuacionTrOptiB} 
    [(lr: 0{.}1, error: 0{.}1),(lr: 0{.}1, error: 0{.}5),(lr: 0{.}1, error: 0{.}9),\notag\\ 
     (lr: 0{.}5, error: 0{.}1),(lr: 0{.}5, error: 0{.}5),(lr: 0{.}5, error: 0{.}9),\notag\\ 
     (lr: 0{.}9, error: 0{.}1),(lr: 0{.}9, error: 0{.}5),(lr: 0{.}9, error: 0{.}9)]
\end{align}

相關內容