
Я бы хотел, чтобы мое имя было написано не полностью заглавными буквами.
Это мой файл .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».
Однако я бы хотел, чтобы он был отформатирован следующим образом: «Aston Martin».
решение1
Кажется, вы используете resume.cls
найденноездесь. Добавьте в преамбулу следующее:
\makeatletter
\def \printname {
\begingroup
\hfil{\namesize\bfseries \@name}\hfil
\nameskip\break
\endgroup
}
\makeatother