我学习 LaTeX 已经有一年了,在学术文本方面我已经相当有信心了。我对我的论文成果非常满意。
现在,我想开始制作更具视觉吸引力和吸引力更小的文档。
我想要做的但目前不知道该怎么做,就是将水平颜色框放在左侧的绝对边距中,这样页面左侧就没有白色。
我想要做的事情大致可以在这个文档(由word制作)中看到: https://drive.google.com/file/d/0B0LE3gpWwmAaYmo5QzhZRmRZMUk/edit?usp=sharing
有什么想法可以解决这个问题吗?
答案1
将某些内容放在固定位置的方法是将其放在页面头部:
\documentclass[a4paper]{article}
\usepackage[a4paper]{geometry}
\usepackage{color}
\makeatletter
\def\@oddhead{%
\setlength\unitlength{1cm}%
\linethickness{.5cm}%
\kern-1in
\kern-\oddsidemargin\begin{picture}(0,0)
{\color{red}\put(0,4){\line(0,-1){4}}}%
{\color{blue}\put(0,-0){\line(0,-1){4}}}%
{\color{yellow}\put(0,-4){\line(0,-1){4}}}%
{\color{green}\put(0,-8){\line(0,-1){4}}}%
\end{picture}\hfill}
\makeatother
\begin{document}
hello
\end{document}