多列设计问题

多列设计问题

我尝试使用多种方法来获得以下具有多列的通用模板,但是,我遇到的一个问题是字体大小会发生变化;有没有什么办法可以美化总体轮廓?

答案1

标题的外观可以通过sectstytitlesec包获得。如果没有这些包,也可以定义如下内容:

\def\RULE{\noindent\rule{\linewidth}{.5ex}}
\newcommand{\tmpsection}[1]{}
\let\tmpsection=\section
\renewcommand{\section}[1]{\vspace{4ex}\protect{\RULE}\vspace{-5ex}\begin{center}\tmpsection{#1}\end{center}\vspace{-4ex}\RULE\nobreak\vspace{3ex}}

对于正文,您只需要 \raggedright使用粗体、斜体等常用的格式化命令。

对于第一个联系信息,肯定有很多方法可以实现。我尝试使用需要 9 个参数的宏 \ContacUs 来简化内容中的文本输入和格式命令。这会在需要时更改字体格式,在两个边距中添加缩进的最后一个句子(使用quoting环境),最后添加两个规则,而无需任何表格环境。

如果子节的大多数项目都是固定的,则可以对其他部分执行相同操作。例如使用宏\RATINGS

平均能量损失

\documentclass[twocolumn]{article}
\usepackage{lipsum}% dummy text
\usepackage{xcolor}% 
\usepackage[colorlinks=true,urlcolor=blue]{hyperref}% dummy text
\usepackage{quoting}
\quotingsetup{vskip=5pt}
\usepackage{PTSansNarrow} 
%\renewcommand*\familydefault{\sfdefault} 
%\usepackage{tgchorus}
\usepackage[T1]{fontenc}
\usepackage{calligra}
\usepackage{aurical}

\usepackage{sectsty} 
\sectionfont{\sectionrule{2ex}{2pt}{-1ex}{2pt}%
\sffamily\centering\vspace{-2.4ex}\MakeUppercase}

\subsectionfont{\sffamily\MakeUppercase}

\newcommand\ContactUs[9]{
{\small\sffamily 
#1\\% Address
\textbf{Phone:} #2~~$\bullet$~~%
\textbf{Financial Aid Phone}: #3\\ 
\textbf{Email:} #4 \\   
\textbf{Fax:} #5~~$\bullet$~~\textbf{CEEB Code:} #6 \\
\textbf{Website:} \url{#7}~~$\bullet$~~%
\textbf{ATC Code:} #8}
\begin{quoting}
\footnotesize\Fontskrivan%\calligra ... what you want
#9  
\end{quoting}
\begin{minipage}[c]{\linewidth}
\color{gray}
\offinterlineskip
\rule[0ex]{\linewidth}{.2ex}\vspace{.5mm}
\rule[0ex]{\linewidth}{.4ex}
\end{minipage}
\vspace{-5ex}
}

\newcommand\RATINGS[3]{%
{\footnotesize\sffamily%
\textbf{Admission Selectiviy Ratings:} #1\hfill%
\textbf{Fire Safety Rating:} #2\hfill% 
\textbf{Green Rating:} #3}
}

% End of preamble ===========================
\begin{document}
\raggedright
\section*{Abilene Christian University}
\ContactUs
{ACU Box 27940, Abilene, TX, 79699-9141.}
{325-674-2300}{325-674-2300}
{[email protected]}
{325-674-2130}{6001}
{www.acu.edu}{4050}
{This private school, affiliated with the Chruch of Christ
Church, was founded in 1906. It has a 208--acre campus}
\subsection*{RATINGS}
\RATINGS{80}{74}{76}
\subsection*{STUDENS AND FACULTY}
\textbf{Lore impsum:} Lore ipsum. 
\textbf{Lore impsum with emphasis:}
\textit{Lore ipsum dolor sit amet}. 
\textbf{More text:} \lipsum[3]
\lipsum[2]
\lipsum[5]
\section*{Nobody knows University}
\ContactUs
{ACU Box 0000, Nowere, Nocountry, PO Box 0000.}
{555-555-5550}{555-555-5551}
{[email protected]}
{555-555-5552}{0000}
{www.noboyknow.edu}{4050}
{This the finest personal campus, were I am  
completely relaxed.}
\subsection*{RATINGS}
\RATINGS{0}{0}{10000}
\subsection*{STUDENS AND FACULTY}
\lipsum[1]
\subsection*{material}
\lipsum[2]
\subsection*{Methods}
\lipsum[3] 
\section*{Results}
\lipsum[4]
\section*{Discussion}
\lipsum[5]
\end{document}

相关内容