好吧,它似乎很簡單,但我找不到方法爲方程添加標題。 標題是需要解釋方程中使用的變量,所以某種類似桌子的結構,以保持它的所有對齊和漂亮會很好。在LaTeX中爲方程添加標題
38
A
回答
38
的\caption
命令只限於花車:你需要的地方數字或表格環境中的等式(或新的浮動環境)。例如:
\begin{figure}
\[ e = m c^2 \]
\caption{A famous equation}
\end{figure}
浮點的問題是你讓LaTeX決定它們的位置。如果你想方程出現在一個固定的位置,不要使用浮動。 caption package的\captionof
命令可用於在浮動環境之外放置標題。它是這樣使用:
\[ e = m c^2 \]
\captionof{figure}{A famous equation}
這也將產生的\listoffigures
項時,如果您的文檔有一個。
要對齊的方程部分,看一看的eqnarray
environment,或一些amsmath包的環境:對齊,收集,多行...
8
你可能想看看http://tug.ctan.org/tex-archive/macros/latex/contrib/float/,它允許您使用
定義新的花車我這樣說是因爲字幕通常適用於浮動。
直線前進方程(用$ ... $
,$$ ... $$
,begin{equation}...
編寫的方程)是不支持\caption
的內嵌對象。
這是可以做到用以下snippet之前\begin{document}
\usepackage{float}
\usepackage{aliascnt}
\newaliascnt{eqfloat}{equation}
\newfloat{eqfloat}{h}{eqflts}
\floatname{eqfloat}{Equation}
\newcommand*{\ORGeqfloat}{}
\let\ORGeqfloat\eqfloat
\def\eqfloat{%
\let\ORIGINALcaption\caption
\def\caption{%
\addtocounter{equation}{-1}%
\ORIGINALcaption
}%
\ORGeqfloat
}
,並添加公式時使用類似
\begin{eqfloat}
\begin{equation}
f(x) = ax + b
\label{eq:linear}
\end{equation}
\caption{Caption goes here}
\end{eqfloat}
0
在本forum post by Gonzalo Medina,第三條路可是:
\documentclass{article}
\usepackage{caption}
\DeclareCaptionType{equ}[][]
%\captionsetup[equ]{labelformat=empty}
\begin{document}
Some text
\begin{equ}[!ht]
\begin{equation}
a=b+c
\end{equation}
\caption{Caption of the equation}
\end{equ}
Some other text
\end{document}
相關問題
- 1. 在沒有浮點(表格)的LaTex中添加標題?
- 2. 在LaTeX中添加數字標題的前綴?
- 3. 在LaTeX標題頁上添加SVN分支名稱
- 4. LaTeX在MATLAB多行標題
- 5. 在wordpress中爲圖片標題標籤添加標題
- 6. 編程添加UITextView作爲UITableView標題
- 7. 在asp.net中以編程方式添加「類別」標題
- 8. Blogspot Latex方程
- 9. LaTeX:在標題中引用[]參數
- 10. 在LaTeX中定位表格標題
- 11. 在PHP中添加標題
- 12. 在godoc中添加標題
- 13. 如何在Latex中添加jpg圖像
- 14. 如何在recyclerview中爲卡片添加標題/標題?
- 15. 在Michael Hartl的Rails教程中爲推文添加標題
- 16. 如何在ggplot2圖例標籤中添加Latex代碼?
- 17. 爲WPF標題添加EventHandler
- 18. 您可以在LaTeX中爲頁面邊角的徽標添加邊距嗎?
- 19. 如何在LaTeX中爲此部分標題着色?
- 20. 在網站標題中添加徽標
- 21. 在標題中添加圖標
- 22. Python中添加標題爲CSV
- 23. 添加列標題爲CSV在python
- 24. 在ListActivity中向ListView添加標題的標準方法
- 25. 在SQL Server查詢結果上方添加標題標題
- 26. 在GWT數據網格的列標題上方添加標題
- 27. 在LaTeX Beamer中增加LaTeX Beamer
- 28. 在Vim中,LaTeX內聯方程完成
- 29. 如何在LaTeX方程中敲出?
- 30. 如何編寫LaTeX標題
通過等式,你的意思是一個定理嗎? – dmckee 2008-09-29 16:36:30