我正在尝试写一篇论文,这是我第一次使用 Tex 格式。我从另一个网站获得了一个设计并尝试对其进行修改,但问题是标题和旁边的图像在所有页面上都一直显示。
\documentclass[12pt]{report}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\graphicspath{ {images/} }
\usepackage{lmodern}
\usepackage{geometry}
\geometry{left=20mm,right=20mm,top=20mm,bottom=20mm}
\usepackage{xcolor}
\usepackage{ragged2e}
\usepackage{fancyhdr}
\pagestyle{fancy}
\usepackage{lastpage}
\usepackage{flowfram,calc}
\newdynamicframe{\dimexpr.2\textwidth-.75\columnsep}{.3\textheight}{0pt}{.7\textheight}[upperfarleft]
\newdynamicframe{\dimexpr.3\textwidth-.75\columnsep}{.3\textheight}{.2\textwidth+.5\columnsep}{.7\textheight}[upperleft]
\newdynamicframe{\dimexpr.35\textwidth-.60\columnsep}{.3\textheight}{.5\textwidth+3\columnsep}{.69\textheight}[upperright]
\setdynamicframe*{upperleft}{style=raggedright}
\setdynamicframe*{upperright}{style=raggedleft}
\setdynamicframe*{upperfarleft}{style=centering}
\setlength{\columnsep}{20mm}
\setlength{\ffcolumnseprule}{3pt}
\twocolumninarea{\textwidth}{.7\textheight-5pt}{0pt}{0pt}
\renewcommand{\ffruledeclarations}{\color[rgb]{0.9,0.9,0.9}}
\insertvrule{flow}{1}{flow}{2}
\setdynamiccontents*{upperfarleft}{\includegraphics[height=7cm, width=9cm]{VirtualReality.jpg}}
\setdynamiccontents*{upperleft}{}
\setdynamiccontents*{upperright}{{\fontsize{47}{30}\selectfont \textbf{Virtual Reality Gaming} \break} ADNAN SALEH ALTENEIJI: Ibaraki University, Graduate School Science and Information}
\begin{document}
\thispagestyle{fancy}
\textbf{Abstract}
\section*{Introduction}
\clearpage
\textbf{Definition}
\end{document}
答案1
我认为这应该或多或少能达到你想要的效果。双栏论文的标题,带有浅灰色的栏分隔符。仍然需要进行一些微调。
\documentclass[12pt,twocolumn]{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{lmodern}
\usepackage{geometry}
\geometry{left=20mm,right=20mm,top=20mm,bottom=20mm}
\usepackage{ragged2e}
\usepackage{xcolor}
\usepackage{etoolbox}
\tracingpatches
\makeatletter
\patchcmd{\@outputdblcol}{\normalcolor}{\color{black!40}}{}{}
\makeatother
\setlength{\columnseprule}{3pt}
\setlength{\columnsep}{20mm}
\usepackage{blindtext}
\begin{document}
\twocolumn[%
\begin{minipage}{\textwidth}%
\begin{minipage}{.5\textwidth}%
{\includegraphics[width=.9\textwidth]{example-image}}%
\end{minipage}%
\begin{minipage}{.5\textwidth}%
\hfill\parbox{.7\textwidth}{\raggedleft\fontsize{47}{30}\bfseries
Virtual Reality Gaming\medbreak}\par
Adnan Saleh Alteneiji: Ibraki University, \par
Graduate School Science and Information
\end{minipage}%
\end{minipage}%
\bigbreak
]
\noindent\textbf{Abstract}
\section*{Introduction}
\blindtext[10]
\end{document}