이 작업을 기반으로 템플릿을 만드는 방법은 무엇입니까? (스크린샷 포함)

이 작업을 기반으로 템플릿을 만드는 방법은 무엇입니까? (스크린샷 포함)

나는 이것이 매우 일반적인 질문이라는 것을 알고 있지만 도움이 필요한 지점에 도달했습니다. 이거 복습해야지

지금까지 나는 이것을 할 수 있었다

하지만 아시다시피:

  • 제목 줄 사이의 공백이 너무 큽니다.
  • 제목 아래 블록(A, Via, De, Fecha y Referencia)을 포맷해야 합니다.

나머지 내용은 거의 비슷해요 :)

이 '템플릿'은 작업 양식을 기반으로 합니다.롭 오크스다운로드한 후 수정했습니다.cls파일에 새 변수를 추가합니다. 원본 템플릿을 확인하거나 내 템플릿을 다운로드하세요.수정된 템플릿.

위 목록의 형식을 지정하는 데 도움이 필요합니다. 어떤 충고?

답변1

글쎄, 마침내 간단한 article문서로 시작할 수 있습니다. 이를 위해서는 완전한 템플릿이 필요하지 않습니다.

간단한 시작점은 다음 코드일 수 있습니다.

\documentclass[10pt]{article}

\usepackage{graphicx}  % <============================= \includegraphics
\usepackage{showframe} % <============ visualize typing area and margins
\usepackage{lipsum}    % <=================================== dummy text

\usepackage[scaled]{helvet} % <===================== or libertine or ...
\usepackage[T1]{fontenc}
\renewcommand\familydefault{\sfdefault} % <=== Sans serif to be standard!


\begin{document}

\noindent\includegraphics[width=2cm]{example-image-duck} \hfill \includegraphics[width=2cm]{example-image-a}

\noindent\rule{\textwidth}{2pt}

\begin{center}
{\Huge Title}\\
{\Large second line}\\
third line
\end{center}

\vspace{2\baselineskip}

\begin{tabular}{p{3cm}p{8cm}}
  {\bfseries A:}         & James Smith\\
  {\bfseries Via:}       & Something \\ 
  ... \\ 
  {\bfseries Referencia} & A big text here that we will break manually with this and continue to next line\\%
\end{tabular}

\noindent\rule{\textwidth}{1pt}
Senior Director
\vspace{2\baselineskip}

\lipsum[1]

\section{INTRODUCTION}

\lipsum[1-5]

\end{document}

결과는 다음과 같습니다.

결과 PDF

귀하의 회사/기관에 대한 공식을 다시 작성하려는 것 같습니다. 왜냐하면 나는 당신에게 남겨진 사양(예를 들어 제목과 두 번째 제목 줄 사이의 거리)을 모르기 때문입니다. 패키지를 사용하면 geometry필요한 여백 등을 정의할 수 있습니다.

그러나 출발점으로는 좋은 에너지라고 생각합니다.

관련 정보