Research Practicum in Artificial Intelligence
Jinho D. Choi
  • Overview
    • Syllabus
    • Schedule
    • Discussions
  • Speed Dating
    • Profiles
  • Faculty Interests
    • AI Faculty
  • Research Areas
    • AI Conferences
  • Task Selection
  • Introduction
    • Motivation
    • Overview
    • Exercise
  • Related Work
    • Literature Review
    • Exercise
  • Approach
    • Algorithm Development
    • Model Design
    • Data Creation
  • Research Challenges
  • Experiments
    • Datasets
    • Models
    • Results
    • 5.4. Homework
  • Analysis
    • Performance Analysis
    • Error Analysis
    • Discussions
    • 6.4. Homework
  • Conclusion & Abstract
    • Conclusion
    • Title & Abstract
  • Peer Review
  • Presentations
  • Team Projects
    • Fall 2023
    • Fall 2022
  • Assignments
    • HW1: Speed Dating
    • HW2: Research Areas
    • HW3: Team Promotion
    • HW4: Introduction
    • HW5: Related Work
    • HW6: Approach
    • HW7: Experiments
    • HW8: Analysis
    • HW9: Conclusion & Abstract
    • HW10: Peer Review
    • Team Project
  • Supplementary
    • LaTex Guidelines
      • Getting Started
      • File Structure
      • Packages
      • References
      • Paragraphs
      • Labels
      • Tables
      • Figures
      • Lists
    • Writing Tips
    • Progress Reports
    • Team Promotion
Powered by GitBook
On this page
  • Image Format
  • Figures in Column
  • Figures in Page
  • Sub-Figures
Export as PDF
  1. Supplementary
  2. LaTex Guidelines

Figures

Image Format

Before including figures, make sure the followings:

  • Export all images to PDF format. Converting image files (e.g., PNG) to PDF does not render well; you must export the vectorized images to PDF.

  • Crop white margins around the image. If you use Mac OS or Linux, you can simply type the following command in a terminal, which will crop image.pdf and save it to image-crop.pdf:

    $ pdfcrop image.pdf image-crop.pdf

Figures in Column

Use the following template to include figures in column:

\begin{figure}[htbp!]
\centering
\includegraphics[width=\columnwidth]{img/image.pdf}
\caption{Description.}
\label{fig:name}
\end{figure}

Use the following options for all figures:

\begin{figure}[htbp!]
\centering

The width can be configured proportionally. The following example sets the width to 0.9 * \columnwidth:

\includegraphics[width=0.9\columnwidth]{img/image.pdf}

If the figure seems too large, use scale instead of width as the option for \includegraphics:

\includegraphics[scale=0.5]{img/image.pdf}

Make sure the label starts with the prefix fig:.

Figures in Page

Use the following template to include tables that expand to the full page.

\begin{figure*}[htbp!]
\centering
\includegraphics[width=\textwidth]{img/image.pdf}
\caption{Description.}
\label{fig:name}
\end{figure*}
  • Use the \textwidth option instead of \columnwidth for \resizebox.

Sub-Figures

Use the following template to create sub-figures.

\begin{figure}[htbp!]
\centering

\begin{subfigure}{\columnwidth}
\centering
\includegraphics[width=\columnwidth]{img/image.pdf}
\caption{Sub-figure 1.}
\label{tab:name-1}
\end{subfigure}

\begin{subfigure}{\columnwidth}
\centering
\includegraphics[width=\columnwidth]{img/image.pdf}
\caption{Sub-figure 1.}
\label{tab:name-1}
\end{subfigure}

\caption{Description.}
\label{tab:name}
\end{figure}
  • The subfigure environment requires the subcaption package.

  • Put \vspace{0.5em} at the end of every sub-figure except for the very last one.

PreviousTablesNextLists

Last updated 2 years ago

See the other explanations for the .

See to create sub-tables that expand to the full page.

Figures in Column
Figures in Page