2

This may be a stupid question, but I often see academic papers where all the tables and figures are placed at the end of the document. Instead, throughout the text, you'd see these centralized rectangular brackets saying 'Insert Table X here'. I was wondering how to do this as well?

Right now, I have included all the tables and figures at the end of the document, but was wondering how to get the 'Insert Table X here' in the main text.

John
  • 643

1 Answers1

3

I was wondering how to get the 'Insert Table X here' in the main text.

Something like this?

enter image description here

\documentclass{article}
\usepackage{lipsum} % filler text
\usepackage[colorlinks,allcolors=blue]{hyperref}
\usepackage[nameinlink,capitalize]{cleveref}

\newcommand\PlaceInsert[1]{%
  \begin{center}
  \framebox{Insert \Cref{#1} here.}
  \end{center}
  \bigskip}

\begin{document}
\lipsum[1]
\PlaceInsert{tab:test}
\lipsum[2]

\clearpage
\begin{table}\caption{A table} \label{tab:test} \end{table}
\end{document}
Mico
  • 506,678