是否有像 Lipsum 或 Blindtext 这样的用于表格和图形的虚拟包?

是否有像 Lipsum 或 Blindtext 这样的用于表格和图形的虚拟包?

Lipsum 和 Blindtext 提供段落、列表甚至整个文档的虚拟内容来测试 LaTeX 布局。

是否有一个包可以以类似的方式生成表格和图形?

答案1

我不确定这对世界有多少帮助,但是你可以看看。

该包在浮动环境中提供了一个虚拟图形和一个虚拟表格。表格将始终等于,\linewidth因此您可以在不同的页面几何图形中使用它,如下twocolumn例所示。该图形实际上是一个表格,但如果主要关注的是检查标题格式和页面布局,这似乎不是一个问题。

我想让它可配置(指定浮动位置、表格行数、不同的图形宽度等等),但如果其他人需要更多功能,我会把它留给他们。


包裹sator.sty

\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{sator}[2014/11/26 Dummy figures and tables for testing, by Andrew A. Cashner, [email protected]]

\RequirePackage{tabulary,booktabs}

\newcommand{\sator}{Sator arepo tenet opera rotas}
\newcommand{\Sator}{Sator Arepo Tenet Opera Rotas}

% For float labels
\newcounter{fignum}
\newcounter{tabnum}

% Figures
\newcommand{\satorfig}{%
    \stepcounter{fignum}%
    See figure~\ref{fig:\thefignum}.\par
    \begin{figure}
    {\huge\bfseries\hfil%
    \begin{tabular}{|c|c|c|c|c|} \hline
        S & A & T & O & R\\ \hline
        A & R & E & P & O\\ \hline
        T & E & N & E & T\\ \hline
        O & P & E & R & A\\ \hline
        R & O & T & A & S\\ \hline
    \end{tabular}}

    \caption{\sator}
    \label{fig:\thefignum}
    \end{figure}
}

%*******************
% Tables
\newcommand{\tableheader}{No. & Sator Arepo & Tenet Opera & Rotas\\}
\newcommand{\tablerow}[1]{#1 & \sator &  \sator & \sator\\}

\newcommand{\satortab}{%
    \stepcounter{tabnum}%
    See table~\ref{table:\thetabnum}.\par
    \begin{table}
        \caption{\sator}
        \label{table:\thetabnum}

        \begin{tabulary}{\linewidth}{rLLL}
            \toprule
            \tableheader\midrule
            \tablerow{1}
            \tablerow{2}
            \tablerow{3}
            \tablerow{4}
            \bottomrule
        \end{tabulary}
    \end{table}%
}

\endinput

使用示例:

\documentclass[twocolumn]{article}
\usepackage{sator}
\usepackage[nopar]{lipsum}

\begin{document}

\section{\Sator}
\lipsum[1-3]

\satorfig

\lipsum[4]

\subsection{\Sator}
\lipsum[5-7]

\satortab

\lipsum[8-9]
\satorfig
\end{document}

在此处输入图片描述 在此处输入图片描述

答案2

包裹待办事项卢托多诺特斯提供\missingfigure

todonotes-缺失图

包裹姆韦提供图像“example-image”,可以使用 将其包含includegraphics{example-image}。它还提供更多图像,例如具有黄金比例的图像等。

示例图像

我检查了容易做到修复方法注释去做, 和整我. 所有这些都不支持轻松指定缺失数字。

相关内容