I need to get a A4 pager by latex. I want to get a "two column" style strictly after title and author name. In the second part, I want to get the "two column" style where the keyword part in the left column and abstract part in the right column in such a way that the column width of the 1st column (keyword part) is half of the column width of the 2nd column (abstract part). In rest part I need two column style of equal width.
The above is very needful for me. Please be kind enough to help be in this regard. I am a layman in tex. So please help me in details.
General ⇒ Two colomn or multiple column through out the article
NEW: TikZ book now 40% off at Amazon.com for a short time.

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Two colomn or multiple column through out the article
Code: Select all
\documentclass[11pt,a4paper,english]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{babel}
\usepackage[includeheadfoot,margin=2cm]{geometry}
\usepackage{multicol}
\usepackage{blindtext}
\usepackage{lmodern}
\usepackage{microtype}
\title{A custom layout}
\author{pallav}
\begin{document}
\maketitle
\noindent
\begin{minipage}[t]{0.32\linewidth}
\textbf{Keywords:} The quick brown fox jumps over the lazy dog.
\end{minipage}
\hfill
\begin{minipage}[t]{0.64\linewidth}
\textbf{Abstract:} \blindtext
\end{minipage}
\bigskip
\begin{multicols}{2}
\blinddocument
\end{multicols}
\end{document}
Best regards
Thorsten
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10