我一直在尝试使用 Hitec 类包来制作技术文档。但是文档非常稀少。可在此处获取:
https://mirrors.concertpass.com/tex-archive/macros/latex/contrib/hitec/hitec_doc.pdf
我不知道如何像他们一样在页眉中包含 3 个元素。有什么想法吗?
以下是 mwe: (摘自有哪些可用的“documentclass”类型及其用途?)
\documentclass{hitec}
\author{by Fran}
\title{A Minimal Working Example}
\usepackage{blindtext}
\usepackage{graphicx}
\begin{document}
\maketitle
\blinddocument
\end{document}
答案1
答案2
使用包fancyhdr
。请参阅其手册以了解更多选项。
\documentclass{hitec}
\author{by Fran}
\title{A Minimal Working Example}
\usepackage{blindtext}
%\usepackage{graphicx}% not needed
\usepackage{fancyhdr}
\pagestyle{fancy}
\fancyhead[R]{The Company, Ltd}
\fancyhead[L]{Fran san}
\fancyhead[C]{\textbf{- Unlimited Distribution -}}
\begin{document}
\maketitle
\blinddocument
\end{document}