TeX/Manual/afterpage
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
[[TeX/Manual]]
*図表を強制的に次のページに送る [#m07726e2]
LaTeXは図表の扱いがそれほど得意なわけではありません.希望...
\afterpage{
\begin{figure}[p]
\centering
\includegraphics[width=\textwidth,clip]{Example.pdf}
\caption{Example}
\end{figure}
}
**図表見出しに脚注をつけて適切な位置に配置する [#k09a0f37]
図表の見出し(\caption)に脚注をつけるのは体裁上好ましく...
\begin{figure}[htbp]
\addtocounter{footnote}{-1}
\includegraphics[width=\textwidth]{example.pdf}
\caption{Example\protect\footnotemark}
\end{figure}
\footnotetext{footnote.}
footnoteカウンターを-1しているのは,\captionが2度処理され...
図表のみのページになった場合などは特に\footnotetextの内容...
...
\usepackage{afterpage}
...
...
\begin{figure}[htbp]
...
\caption{Example\protect\footnotemark}
...
\end{figure}
\footnotetext{footnote.}
**図表のみのページを文書の中央付近にまとめて配置する [#cc...
小冊子を作る時など,文書の中央付近に図表をまとめたい時が...
\afterpage{\input{images.tex}}
と書きます.images.texの最後には\clearpageを入れておきま...
終了行:
[[TeX/Manual]]
*図表を強制的に次のページに送る [#m07726e2]
LaTeXは図表の扱いがそれほど得意なわけではありません.希望...
\afterpage{
\begin{figure}[p]
\centering
\includegraphics[width=\textwidth,clip]{Example.pdf}
\caption{Example}
\end{figure}
}
**図表見出しに脚注をつけて適切な位置に配置する [#k09a0f37]
図表の見出し(\caption)に脚注をつけるのは体裁上好ましく...
\begin{figure}[htbp]
\addtocounter{footnote}{-1}
\includegraphics[width=\textwidth]{example.pdf}
\caption{Example\protect\footnotemark}
\end{figure}
\footnotetext{footnote.}
footnoteカウンターを-1しているのは,\captionが2度処理され...
図表のみのページになった場合などは特に\footnotetextの内容...
...
\usepackage{afterpage}
...
...
\begin{figure}[htbp]
...
\caption{Example\protect\footnotemark}
...
\end{figure}
\footnotetext{footnote.}
**図表のみのページを文書の中央付近にまとめて配置する [#cc...
小冊子を作る時など,文書の中央付近に図表をまとめたい時が...
\afterpage{\input{images.tex}}
と書きます.images.texの最後には\clearpageを入れておきま...
ページ名: