如何删除姓名的大写字母

如何删除姓名的大写字母

我希望我的名字不全部是大写。

这是我的.tex 文件。

%----------------------------------------------------------------------------------------
%   PACKAGES AND OTHER DOCUMENT CONFIGURATIONS
%----------------------------------------------------------------------------------------

\documentclass{resume} % Use the custom resume.cls style

\usepackage[left=0.75in,top=0.6in,right=0.75in,bottom=0.6in]{geometry} % Document margins

\name{Aston Martin} % Your name

这是我的.cls 文件。

\ProvidesClass{resume}[]

\LoadClass[11pt,letterpaper]{article} % Font size and paper type

\usepackage[parfill]{parskip} % Remove paragraph indentation
\usepackage{array} % Required for boldface (\bf and \bfseries) tabular columns
\usepackage{ifthen} % Required for ifthenelse statements

\pagestyle{empty} % Suppress page numbers



%----------------------------------------------------------------------------------------
%   HEADINGS COMMANDS: Commands for printing name and address
%----------------------------------------------------------------------------------------

\def \name#1{\def\@name{#1}} % Defines the \name command to set name
\def \@name {} % Sets \@name to empty by default

该名称当前显示为:“ASTON MARTIN”。

但是,我希望它的格式如下:“阿斯顿马丁”。

答案1

看来你正在使用resume.cls找到的这里. 将以下内容添加到您的序言中:

\makeatletter
\def \printname {
  \begingroup
    \hfil{\namesize\bfseries \@name}\hfil
    \nameskip\break
  \endgroup
}
\makeatother

相关内容