所以這種關係到這Puzzling.SE 上關於從數字 [1...n] 產生 π(n=[1,2,3...20])的問題。我目前正在使用以下方法處理文檔晚的乳膠當所有 n=[1,2,3...20] 都計算出來後,我將作為線上參考發布。
我目前正在研究我的社區 wiki 答案以獲取信息,並決定跳到 n=17 並輸入這些公式,這樣我以後就不必再這樣做了。
我目前遇到的問題是 n=20 的連分數很難讀,因為它看起來很小。
但是,如果這是我需要解決的問題,我可以接受將公式壓縮在\hline
s 之間。
問題圖片:
代碼:
\documentclass[12pt]{article}
\begin{document}
\begin{table*}
\begin{tabular}{|c|c|c|c|}
\hline
$n=$&Formula&Error&Credit\\\hline
1&1=1&2.14E0&Simd, 2012rcampion\\\hline
2&1+2=3&1.42E$-1$&Simd, 2012rcampion\\\hline
3&3=3&1.42E$-1$&Simd, 2012rcampion\\\hline
4&3+$\frac1{2\times4}=3.125$&1.66E$-2$&Simd, 2012rcampion\\\hline
5&3+$\frac1{2+5}=\frac{22}7$&1.26E$-3$&2012rcampion\\\hline
17&$\left(\frac1{10}\right)^{(4-6)/3}+8^{5-11}$&5.28E$-9$&CrSb0001\\&$-\frac7{12-2}-\frac{17-13}{14-9}$&&\\\hline
18&&&\\\hline
19&&&\\\hline
20&$3+\frac1{7+\frac{6-5}{15+\frac2{(10-8)+\frac{11-9}{(20\times14+12)+\frac{17-16}{13\times4}}}}}$&2.21E$-13$&Bubbler\\\hline
\end{tabular}
\end{table*}
\end{document}
有沒有辦法讓連分數變大,這樣比較容易閱讀?我嘗試過使用\dfrac
,但它完全破壞了分數。
編輯:這就是我所說的「完全打破分數」的意思:
答案1
編輯:
考慮 @Mico 註釋並更改第三列類型 (1.2e3 --> 1.2e-2) 和 siunitx 規範的規格(新增了print-zero-exponent
選項sisetup
)。
像這樣?
對於上表,使用tabularray
帶有庫的包amsmath
,siunitx
其中第二列定義為數學模式並左對齊,第三列是包S
中定義的類型。siunitx
tabularray
由於表格相當寬,表格中使用的是\small
字體大小。
\documentclass[12pt]{article}
\usepackage[margin=25mm]{geometry}
\usepackage{tabularray}
\UseTblrLibrary{amsmath, siunitx}
\sisetup{print-zero-exponent,
tight-spacing}
\usepackage{nccmath} % for `\mfrac` (medium size fraction)
\begin{document}
\begin{table}
\begin{tblr}{hlines, vlines,
colspec = {Q[c]
X[l, mode=math]
Q[l, si={table-format=1.2e-2}]
l},
row{1} = {guard, c, mode=text},
row{2-Z} = {rowsep = 5pt},
cells = {font=\small}
}
$n$ & Formula & Error & Credit \\
1 & 1=1 & 2.14E 0 & Simd, 2012rcampion \\
2 & 1+2=3 & 1.42E-1 & Simd, 2012rcampion \\
3 & 3=3 & 1.42e-1 & Simd, 2012rcampion \\
4 & 3+\mfrac1{2\times4}=3.125
& 1.66e-2 & Simd, 2012rcampion \\
5 & 3+\mfrac1{2+5}=\mfrac{22}7
& 1.26E-3 & 2012rcampion \\
17 & \Bigl(\frac1{10}\Bigr)^{(4-6)/3}+8^{5-11} - \frac7{12-2} - \frac{17-13}{14-9}
& 5.28E-9 & CrSb0001 \\
18 & & & \\
19 & & & \\
20 & 3+\cfrac1{7+\cfrac{6-5}{15+\cfrac2{(10-8)+\cfrac{11-9}{(20\times14+12)+\cfrac{17-16}{13\times4}}}}}
& 2.21E-13 & Bubbler \\
\end{tblr}
\end{table}
\end{document}
答案2
只需刪除\hline
指令或用指令替換它們即可\addlinespace
。並且,一定要擺脫所有垂直規則。
\documentclass[12pt]{article}
\usepackage[margin=1in,letterpaper]{geometry} % set page parameters as needed
\usepackage{array} % for '\newcolumntype' macro
\newcolumntype{L}{>{$}l<{$}}
\usepackage{amsmath} % for '\cfrac' macro
\usepackage{booktabs} % for well-spaced horizontal rules
\begin{document}
\begin{table}[ht]
\footnotesize % optional, for a 20% linear reduction in font size
\centering
$\begin{array}{@{} c >{\displaystyle}l L L @{}}
\toprule
n & \text{Formula} & Error & Credit\\
\midrule
1 & 1=1 & 2.14E0 & Simd, 2012rcampion\\ \addlinespace
2 & 1+2=3 & 1.42E-1 & Simd, 2012rcampion\\ \addlinespace
3 & 3=3 & 1.42E-1 & Simd, 2012rcampion\\ \addlinespace
4 & 3+\frac{1}{2\cdot4}=3.125 & 1.66E-2 & Simd, 2012rcampion\\ \addlinespace
5 & 3+\frac{1}{2+5}=\frac{22}{7} & 1.26E-3 & 2012rcampion\\ \addlinespace
\vdots \\ \addlinespace
17 & \Bigl(\frac{1}{10}\Bigr)^{(4-6)/3}
-\frac{7}{12-2}-\frac{17-13}{14-9}
& 5.28E-9 & CrSb0001\\ \addlinespace
18 & \dots \\ \addlinespace
19 & \dots \\ \addlinespace
20 & 3+\cfrac{1}{7+\cfrac{6-5}{15+\cfrac{2}{(10-8)+\cfrac{11-9}{(20\cdot14+12)+\cfrac{17-16}{13\cdot4}}}}}
& 2.21E-13 & Bubbler \\ \addlinespace
\bottomrule
\end{array}$
\end{table}
\end{document}
答案3
我會選擇更開放的外觀;也用於siunitx
第三列似乎是最好的。
如果將字體設定為\small
並將連分數設為\footnotesize
,則可以將表格設定為標準文字寬度。但是,這些調整取決於您使用的文字寬度。
\documentclass[12pt]{article}
\usepackage{amsmath}
\usepackage{booktabs}
\usepackage{siunitx}
\sisetup{
output-exponent-marker=\mathrm{E},
}
\begin{document}
\begin{table}
\centering
\small
\addtolength{\tabcolsep}{-2pt}
\begin{tabular}{@{}ccS[table-format=1.2e-1]c@{}}
\toprule
$n$ & Formula & {Error} & Credit\\
\midrule
1 & $1=1$ & 2.14E0 & Simd, 2012rcampion\\
\addlinespace
2 & $1+2=3$ & 1.42E-1 & Simd, 2012rcampion\\
\addlinespace
3 & $3=3$ & 1.42E-1 & Simd, 2012rcampion\\
\addlinespace
4 & $3+\frac1{2\times4}=3.125$ & 1.66E-2 & Simd, 2012rcampion\\
\addlinespace
5 & $3+\frac1{2+5}=\frac{22}7$ & 1.26E-3 & 2012rcampion\\
\addlinespace
17 & $\left(\frac1{10}\right)^{(4-6)/3}+8^{5-11}-\frac7{12-2}-\frac{17-13}{14-9}$ &
5.28E-9 & CrSb0001\\
\addlinespace
18 & & & \\
\addlinespace
19 & & & \\
\addlinespace
20 &
\footnotesize
$3+\cfrac{1}{
7+\cfrac{6-5}{
15+\cfrac{2}{
(10-8)+\cfrac{11-9}{
(20\times14+12)+\cfrac{17-16}{
13\times4
}
}
}
}
}$ & 2.21E-13 & Bubbler\\
\addlinespace
\bottomrule
\end{tabular}
\caption{The caption}
\end{table}
\end{document}
為什麼-2pt
?因為如果我在不進行此調整的情況下設置桌子,則溢出會稍微少一點,12pt
並且有六個列間空間可供利用。
或者,你可以這樣做
\begin{table}
\centering
\small
\setlength{\tabcolsep}{0pt}
\begin{tabular*}{\textwidth}{
@{\extracolsep{\fill}}
c
c
S[table-format=1.2e-1]
c
}
[identical body of the tabular]
\end{tabular*}
\caption{Table caption}
\end{table}