항목 및 부제목

항목 및 부제목
\newcommand{\ressubheading}[4]{
\begin{tabular*}{6.5in}{l@{\extracolsep{\fill}}r}
        \textbf{#1} & #2 \\
        \textit{#3} & \textit{#4} \\
\end{tabular*}\vspace{-6pt}}

이 명령을 사용하고 있습니다

\ressubheading{Graph Plotter (Course Project)}{CSE, XYZ} {Guide: Prof.ABC}{Autumn, 2013}

하지만 글머리 기호와 텍스트 시작 부분에 약간의 오프셋이 있습니다.

어떻게 해결해야 합니까?

답변1

먼저 수정구슬을 맞물리세요! 아마도 다음 템플릿을 사용하고 있을 것입니다.

\documentclass[letterpaper,11pt]{article}

%-----------------------------------------------------------
%Margin setup

\setlength{\voffset}{0.1in}
\setlength{\paperwidth}{8.5in}
\setlength{\paperheight}{11in}
\setlength{\headheight}{0in}
\setlength{\headsep}{0in}
\setlength{\textheight}{11in}
\setlength{\textheight}{9.5in}
\setlength{\topmargin}{-0.25in}
\setlength{\textwidth}{7in}
\setlength{\topskip}{0in}
\setlength{\oddsidemargin}{-0.25in}
\setlength{\evensidemargin}{-0.25in}
%-----------------------------------------------------------
%\usepackage{fullpage}
\usepackage{shading1}
%\textheight=9.0in
\pagestyle{empty}
\raggedbottom
\raggedright
\setlength{\tabcolsep}{0in}

%-----------------------------------------------------------
%Custom commands
\newcommand{\resitem}[1]{\item #1 \vspace{-2pt}}
\newcommand{\resheading}[1]{{\large \parashade[.9]{sharpcorners}{\textbf{#1 \vphantom{p\^{E}}}}}}
\newcommand{\ressubheading}[4]{
\begin{tabular*}{6.5in}[t]{l@{\extracolsep{\fill}}r}
        \textbf{#1} & #2 \\
        \textit{#3} & \textit{#4} \\
\end{tabular*}\vspace{-6pt}}
%-----------------------------------------------------------


\begin{document}

\begin{tabular*}{7in}{l@{\extracolsep{\fill}}r}
\textbf{\Large David Grant}  & 604-555-5555\\
\#666-1234 Main Street &  davidgrant-at-gmail.com \\
Vancouver, BC A1B 2C3 & http://www.davidgrant.ca\\
\end{tabular*}
\\

\vspace{0.1in}

\resheading{Education}
\begin{itemize}
\item
    \ressubheading{University of Waterloo}{Waterloo, ON}{M.A.Sc., Electrical Engineering (Grades: 80\%)}{Sep. 2002 - May. 2004}
    \begin{itemize}
        \resitem{Relevant courses: Semiconductor Devices: Physics and Modelling, Digital VLSI Design, Amorphous Silicon, Mixed-signal modelling with VHDL-AMS}
    \end{itemize}

\item
    \ressubheading{University of British Columbia}{Vancouver, BC}{B.A.Sc. Engineering Physics (Electrical Engineering Option)}{1997-2002}
    \begin{itemize}
        \resitem{Graduated with Honors, \textbf{86\%} cumulative average, and Dean's Honour List each year.}
        \resitem{Relevant courses: Solid-state physics, Quantum Mechanics, Semiconductor Devices (BJT, HBT, FET, analog IC layout and simulation), Digital Systems Design using VHDL, Waveguides and Photonics, RF, Analog/Digital Communications Systems, Analog Hardware Design}
    \end{itemize}

\end{itemize}
\ressubheading{Graph Plotter (Course Project)}{CSE, XYZ}
                {Guide: Prof.ABC}{Autumn, 2013}

\end{document}

이 템플릿에서는 페이지 레이아웃이 정확하게 정의되어 있으므로 사용하기에 안전합니다.

\begin{tabular*}{6.5in}

그러나 레이아웃을 변경하면 이상한 일이 발생합니다.

\documentclass{article}
\usepackage{showframe}   %% just for demo
%-----------------------------------------------------------
\newcommand{\ressubheading}[4]{
\begin{tabular*}{6.5in}[t]{l@{\extracolsep{\fill}}r}
        \textbf{#1} & #2 \\
        \textit{#3} & \textit{#4} \\
\end{tabular*}\vspace{-6pt}}
%-----------------------------------------------------------

\begin{document}


\ressubheading{Graph Plotter (Course Project)}{CSE, XYZ}
                {Guide: Prof.ABC}{Autumn, 2013}

\end{document}

여기에 이미지 설명을 입력하세요

6.5인치는 여기에서 크기가 너무 커서 오른쪽으로 흘러나옵니다. 또한 \indent테이블 형식 직전에 신경 써야 할 부분 도 있습니다 .

정의를 다음으로 변경합니다.

\newcommand{\ressubheading}[4]{%     %%%<--- Better to put a % here
\noindent                            %% < this added
\begin{tabular*}{\linewidth}[t]{l@{\extracolsep{\fill}}r}     %%% 6.5in → \linewidth
        \textbf{#1} & #2 \\
        \textit{#3} & \textit{#4} \\
\end{tabular*}\vspace{-6pt}}

당신은 다음을 얻습니다:

여기에 이미지 설명을 입력하세요

관련 정보