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
  • Top Level
  • Tex Folder
  • Image Folder
Export as PDF
  1. Supplementary
  2. LaTex Guidelines

File Structure

PreviousGetting StartedNextPackages

Last updated 2 years ago

Top Level

Our includes 4 files on the top level:

  • acl_latex.tex: contains the main content.

  • acl_natbib.bst: defines the bibliography format.

  • acl.sty: defines the paper format.

  • custom.bib: contains all references.

Tex Folder

Except for acl_latex.tex, all the other tex files are saved under the tex folder, making it easier to manage extended contents. There are 9 files under the tex folder:

  • abstract.tex

  • introduction.tex

  • related-work.tex

  • approach.tex

  • experiments.tex

  • analysis.tex

  • conclusion.tex

  • acknowledgements.tex

  • appndeix.tex

These files should be added in acl_latex.tex:

\input{tex/abstract}
\input{tex/introduction}
\input{tex/related-work}
\input{tex/approach}
\input{tex/experiments}
\input{tex/analysis}
\input{tex/conclusion}
\input{tex/acknowledgments}

% References come after the acknowledgment section
\bibliography{custom}

% Appendix comes after the references and must start at a new page
\cleardoublepage\appendix
\input{tex/appendix}

Image Folder

Additionally, the img folder contains all image files included as figures in the paper.

template