-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
964fb47
commit f661fe2
Showing
5 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,3 +127,7 @@ dmypy.json | |
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
# LaTeX | ||
*.aux | ||
*.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
make: | ||
pdflatex multicolumn.tex |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
\documentclass[twocolumn]{article} | ||
\usepackage{lipsum} | ||
\usepackage{booktabs} | ||
\begin{document} | ||
|
||
\title{Two-Column Document with Lorem Ipsum} | ||
\author{Your Name} | ||
\date{\today} | ||
|
||
\maketitle | ||
|
||
\begin{abstract} | ||
This is a sample document with two columns filled with Lorem Ipsum text. | ||
\end{abstract} | ||
|
||
|
||
\lipsum[1-10] % Adjust the range to change the amount of Lorem Ipsum text | ||
|
||
\pagebreak | ||
\begin{table}[h] | ||
\centering | ||
\caption{EU Countries Information} | ||
\begin{tabular}{lcccc} | ||
\toprule | ||
\textbf{Country} & \textbf{Population (millions)} & \textbf{Area (km\textsuperscript{2})} & \textbf{Capital} & \textbf{Official Language} \\ | ||
\midrule | ||
Austria & 8.9 & 83,879 & Vienna & German \\ | ||
Belgium & 11.5 & 30,689 & Brussels & Dutch, French, German \\ | ||
Czech Republic & 10.7 & 78,866 & Prague & Czech \\ | ||
Denmark & 5.8 & 42,951 & Copenhagen & Danish \\ | ||
Finland & 5.5 & 338,424 & Helsinki & Finnish, Swedish \\ | ||
\bottomrule | ||
\end{tabular} | ||
\end{table} | ||
|
||
\end{document} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters