我正在尝试弄清楚如何缩小子部分中的要点。任何建议都将不胜感激!
\documentclass{article}
\usepackage{titlesec}
\usepackage{titling}
\usepackage[margin=1in]{geometry}
\usepackage{hyperref}
...
\titleformat{\section}
{\Large\bfseries}
{}
{-.12em}
{}
\titleformat{\subsection}
{\large}
{}
{0em}
{}
\titleformat{\subsubsection}[runin]
{\large}
{\hspace*{.25in}$\bullet$}
{.5em}
{}
\titlespacing{\subsubsection}
{0em}{-.25em}{0em}
\titlespacing{\subsection}
{0em}{.25em}{0em}
\setlength\parindent{25pt}
\begin{document}
...
\section{\vspace*{-.7em} Education}
\subsection{{\vspace*{-.25em} school} \hfill \normalsize location}
\subsubsection{B.S. Candidate \hfill \normalsize May 2023} \subsubsection{Relevant Coursework: previous courses currently \vspace*{-.25em} \linebreak \phantom{1em} \: current courses} \subsubsection{GPA}
...
\thispagestyle{empty}
\end{document}
答案1
欢迎来到 TeX.SE...
请尝试以下操作:
%%Small bullet
\newcommand{\smallbullet}{} % for safety
\DeclareRobustCommand\smallbullet{%
\mathord{\mathpalette\smallbullet@{0.75}}%
}
\newcommand{\smallbullet@}[2]{%
\vcenter{\hbox{\scalebox{#2}{$\m@th#1\bullet$}}}%
}
然后使用\smallbullet
而不是\bullet
实际上,这是其他人建议的,但我错过了链接URL
......