Re: [問題] 關於跨column的equation
※ 引述《clsu (kooky)》之銘言:
: 想要請問一下
: 寫paper的時候 將版面分割成兩個column
: 不過有幾個equation實在太長了
: 如果換行又會變的很醜
: 想說可以像table* 或者figure*等
: 有沒有什麼作法可以讓equation跨兩個column嗎?
: 謝謝
從 IEEE 某範例抄來的,要注意的是 \setcounter{equation}{編號}
這邊編號是你希望出現編號的上一條數學式子編號數
例如,你想要讓這條數學式子編號是 11,就要填寫 10
(這是唯一麻煩的地方,你要手動看一下之前那條數學式子編號是多少)
====================================================================
% 下面這個 counter 要在 \begin{document} 之前設定好
\newcounter{mytempeqncnt}
====================================================================
\begin{figure*}[!t]
% ensure that we have normalsize text
\normalsize
% Store the current equation number.
\setcounter{mytempeqncnt}{\value{equation}}
% Set the equation number to one less than the one
% desired for the first equation here.
% The value here will have to changed if equations
% are added or removed prior to the place these
% equations are referenced in the main text.
\setcounter{equation}{10}
\begin{equation}
\label{eq:LK-1}
\arg \min_{d_x^L, d_y^L}\sum_{x = u_x^L - w_x}^{u_x^L + w_x}\sum_{y = u_y^L - w_y}^{u_y^L + w_y}( I^L(x, y) - J^L(x + g_x^L + d_x^L, y + g_y^L + d_y) )^2
\end{equation}
% Restore the current equation number.
\setcounter{equation}{\value{mytempeqncnt}}
% IEEE uses as a separator
\hrulefill
% The spacer can be tweaked to stop underfull vboxes.
\vspace*{4pt}
\end{figure*}
\addtocounter{equation}{1}
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 218.175.230.164
討論串 (同標題文章)
本文引述了以下文章的的內容:
完整討論串 (本文為第 2 之 3 篇):
LaTeX 近期熱門文章
PTT數位生活區 即時熱門文章