我正在使用该lscape
包对文档的某些页面进行横向显示。这些页面基本上是一个部分/子部分标题加上一个必须进行横向显示的表格。问题是进入横向模式会强制分页,因此我最终会得到第一个空白页,其中只有部分/子部分标题,而第二个页面则包含表格。此代码应该可以说明问题:
\documentclass[12pt,letterpaper]{article}
\usepackage{lscape}
\begin{document}
\section{Foo}
\subsection{Bar}
\begin{landscape}
Landscaped content
\end{landscape}
\end{document}
有什么方法可以避免分页符并使标题和内容位于同一页面中?
注意:我不想美化章节/小节标题。
答案1
我在一个德国论坛上回答过类似的问题,因此我取这个例子。
hvfloat
我推荐一个可以满足您需求的软件包。
\documentclass{report}
\usepackage{geometry}
\usepackage{amsmath}
\usepackage{booktabs}
\usepackage{hvfloat}
\usepackage{units}
\begin{document}
\section{minimalbeispiel}
\vfill
\begin{center}
\hvFloat[%
nonFloat=true,%
capPos=l,%
capAngle=90,%
objectAngle=90,%
]{table}{\tiny%
\begin{tabular}{llllllll}
\toprule
& \multicolumn{4}{c}{Coefficients} & & \\
\cmidrule(lr){2-5}
Clamp. pres. in bar & $b_0$ & $b_1$ & $b_2$ & $b_3$ & $SS_{\text{err}}$ & $R^2$ in \%\\
\midrule
15 & $9.63*10^{-1}$ & $-2.16*10^{-3}$ & $3.56*10^{-6}$ & $-3.38*10^{-9}$ & $6.16*10^{-4}$ & 99.88\\
20 & $9.62*10^{-1}$ & $-2.08*10^{-3}$ & $3.40*10^{-6}$& $-3.27*10^{-9}$ & $8.19*10^{-4}$ & 99.83\\
25 & $9.64*10^{-1}$ & $-2.08*10^{-3}$ & $3.46*10^{-6}$ & $-3.29*10^{-9}$ & $5.30*10^{-4}$ & 99.89\\
30 & $9.61*10^{-1}$ & $-1.99*10^{-3}$ & $3.19*10^{-6}$ & $-3.00*10^{-9}$ & $6.99*10^{-4}$ & 99.84\\
35 & $9.53*10^{-1}$ & $-1.98*10^{-3}$ & $3.09*10^{-6}$ & $-2.92*10^{-9}$ & $6.87*10^{-4}$ & 99.85\\
40 & $9.53*10^{-1}$ & $-2.04*10^{-3}$ & $3.33*10^{-6}$ & $-3.22*10^{-9}$ & $5.84*10^{-4}$ & 99.88\\
45 & $9.54*10^{-1}$ & $-2.06*10^{-3}$ & $3.20*10^{-6}$ & $-3.02*10^{-9}$ & $5.24*10^{-4}$ & 99.89\\
\bottomrule
\end{tabular}%
}%
[Polarization curve data fitting of clamping pressure testing]{%
Polarization curve data fitting of clamping pressure testing\\ Model: $\frac{U}{V} = b_0 + b_1 \frac{i}{\unitfrac[]{\text{mA}}{\text{cm}^2}} + b_2 \frac{i^2}{\left(\unitfrac[]{\text{mA}}{\text{cm}^2}\right)^2} + b_3 \frac{i^3}{\left(\unitfrac[]{\text{mA}}{\text{cm}^2}\right)^3}$}{tab:3}
\end{center}
\vfill\clearpage
\end{document}