需要制作一个四边形图表,将 4 个小页面放在一篇文章文档的一页中

需要制作一个四边形图表,将 4 个小页面放在一篇文章文档的一页中

编辑:参见问题末尾。

我需要保持与文档其余部分相同的外边距,并为四边形图添加标题。一个四边形中的文本不应流入其他四边形,否则我会使用带有水平线的多列。有人在类似的问题中提出了以下建议,但我不确定如何实现它。

\newflowframe{.45\textwidth}{.45\textheight}{0pt}{.55\textheight}
\newflowframe{.45\textwidth}{.45\textheight}{.55\textwidth}{.55\textheight}
\newflowframe{.45\textwidth}{.45\textheight}{0pt}{0pt}
\newflowframe{.45\textwidth}{.45\textheight}{.55\textwidth}{0pt}

如果我可以控制内部四边形边距以使用尽可能大的区域而不会影响可读性,那就太好了。

工作示例,抱歉,序言太冗长:

%----------------------------------------------------------------------------------------
%   PREAMBLE
%----------------------------------------------------------------------------------------

\documentclass[12pt, paper=letter]{article}

%----------------------------------------------------------------------------------------
%   REQUIRED PACKAGES
%----------------------------------------------------------------------------------------

\usepackage[
nochapters, % Turn off chapters since this is an article        
beramono, % Use the Bera Mono font for monospaced text (\texttt)
eulermath,% Use the Euler font for mathematics
pdfspacing, % Makes use of pdftex’ letter spacing capabilities via the microtype package
dottedtoc % Dotted lines leading to the page numbers in the table of contents
]{classicthesis} % The layout is based on the Classic Thesis style

\usepackage{arsclassica} % Modifies the Classic Thesis package

\usepackage[T1]{fontenc} % Use 8-bit encoding that has 256 glyphs

\usepackage[utf8]{inputenc} % Required for including letters with accents

\usepackage{graphicx} % Required for including images
\graphicspath{{Figures/}} % Set the default folder for images

\usepackage{enumitem} % Required for manipulating the whitespace between and within lists

\usepackage{lipsum} % Used for inserting dummy 'Lorem ipsum' text into the template

\usepackage{subfig} % Required for creating figures with multiple parts (subfigures)

\usepackage{amsmath,amssymb,amsthm} % For including math equations, theorems, symbols, etc

\usepackage{varioref} % More descriptive referencing

%----------------------------------------------------------------------------------------
%   THEOREM STYLES
%---------------------------------------------------------------------------------------

\theoremstyle{definition} % Define theorem styles here based on the definition style (used for definitions and examples)
\newtheorem{definition}{Definition}

\theoremstyle{plain} % Define theorem styles here based on the plain style (used for theorems, lemmas, propositions)
\newtheorem{theorem}{Theorem}

\theoremstyle{remark} % Define theorem styles here based on the remark style (used for remarks and notes)

%----------------------------------------------------------------------------------------
%   HYPERLINKS
%---------------------------------------------------------------------------------------

\hypersetup{
%draft, % Uncomment to remove all links (useful for printing in black and white)
colorlinks=true, breaklinks=true, bookmarks=true,bookmarksnumbered,
urlcolor=webbrown, linkcolor=RoyalBlue, citecolor=webgreen, % Link colors
pdftitle={}, % PDF title
pdfauthor={\textcopyright}, % PDF Author
pdfsubject={}, % PDF Subject
pdfkeywords={}, % PDF Keywords
pdfcreator={pdfLaTeX}, % PDF Creator
pdfproducer={LaTeX with hyperref and ClassicThesis} % PDF producer
}

\usepackage[english]{babel}
\usepackage[utf8]{inputenc}
\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[colorinlistoftodos]{todonotes}
\usepackage{lipsum}
\usepackage{etoolbox}
\patchcmd{\thebibliography}{\section*}{\section}{}{}
%\usepackage[superscript,biblabel]{cite}
\usepackage{multirow}
\usepackage{float}
\usepackage{unicode-math}
\usepackage{tikz}
%\usepackage[toc]{multitoc}
\usepackage{soul}
%\renewcommand*{\multicolumntoc}{2}
\setlength{\columnseprule}{0.5pt}
\usepackage{geometry}
\geometry{top = 1 in, bottom = 1 in, left = 1 in, right = 1 in}
\usepackage{tabularx,ragged2e,booktabs}
\usepackage[font = small]{caption}
\usepackage{multicol,enumitem,caption,graphicx}
\captionsetup[figure]{
  font=small,% 10pt
  labelsep=endash
}
\usepackage{pdfpages}
\usepackage{hyperref}
\usepackage{xcolor}
\hypersetup{
    colorlinks,
    linkcolor={blue!50!black},
    citecolor={cyan!50!black},
    urlcolor={blue!80!black}
}

\usepackage{fontspec}
\setmainfont{Times New Roman}
\newfontfamily{\titlefont}{Arial}
\newfontfamily{\headingfont}{Arial}

\linespread{2}

\newcommand{\heading}[1]{%
  \par
  {\large\headingfont #1\par}% 12pt
  \vspace{-\baselineskip}
}


%----------------------------------------------------------------------------------------
%   HEADERS
%----------------------------------------------------------------------------------------

\renewcommand{\sectionmark}[1]{\markright{\spacedlowsmallcaps{#1}}} % The header for all pages (oneside) or for even pages (twoside)
%\renewcommand{\subsectionmark}[1]{\markright{\thesubsection~#1}} % Uncomment when using the twoside option - this modifies the header on odd pages
\lehead{\mbox{\llap{\small\thepage\kern1em\color{halfgray} \vline}\color{halfgray}\hspace{0.5em}\rightmark\hfil}} % The header style

\pagestyle{scrheadings} % Enable the headers specified in this block


%----------------------------------------------------------------------------------------
%   TITLEPAGE
%----------------------------------------------------------------------------------------

\title{\normalfont\spacedallcaps{Title}}

\author{\spacedlowsmallcaps{subtitle}}

%\date{\spacedlowsmallcaps{PI: Michael Chapiro}}

\begin{document}

\maketitle

\setcounter{tocdepth}{4}

%\tableofcontents %might need to make multi-column later to not fill more than a page.

%\vspace{1 cm}

%-------------------------------------------------------------------------------  
\lipsum[1-5]
\clearpage

%Quadchart goes here

\end{document}

编辑:我错过了附件中详细说明其他格式要求的文件。指定格式的文件位于广泛机构公告的最后两页,以下是屏幕截图:

https://i.imgur.com/nxFR99z.png

https://i.imgur.com/01pdj2k.png

我也找到了这两张图片,但是示例图片也可以: http://www.uwyo.edu/airrotc/_files/images/af-wings.jpg

https://upload.wikimedia.org/wikipedia/commons/c/c0/Air_Force_Research_Laboratory.png

相关内容