我想在论文文件的页码周围插入菱形。我正在使用论文文档类。页码显示在右上角。
答案1
拥有tikz
和shapes.geometric
图书馆
\documentclass[11pt, oneside]{thesis}
\usepackage{fancyhdr}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric}
\usepackage{lipsum}
\pagestyle{fancy}
\renewcommand{\headrulewidth}{0pt}
\fancyhead{} % clear all header fields
\fancyfoot{} % clear all footer fields
\newcommand{\diam}[1]{\tikz\draw (0,0)node[shape aspect=1,diamond,draw,,inner sep=2pt]{#1};}
\rhead{\diam{\thepage}}
\begin{document}
\chapter{chapter one}
\lipsum[1-4]
\section{section one}
\lipsum[5-10]
\end{document}
结果