我正试着用乳胶写一份简历,但现在我被困住了。因为我想学习Latex,所以我不想只使用模板。
我在想把一页分成几栏/小页:
尝试过小页和列,但是图像正在破坏整个格式.试着使用模板中的部件,它工作得很好,例如,分段的等等。参见下面的示例。
不是一个具体的问题,但希望有人有一个好的想法,如何利用这个想法:)
示例:
%Preamble
\documentclass[a4paper]{article}
\usepackage{graphicx}
\usepackage{geometry}
\geometry{a4paper, total={170mm,257mm}, left=10mm, top=10mm}
\pagestyle{empty}
%%% Custom sectioning (sectsty package)
\usepackage{sectsty}
\sectionfont{\usefont{OT1}{phv}{m}{n}\sectionrule{0pt}{0pt}{-10pt}{1pt}}
\subsectionfont{\usefont{OT1}{phv}{m}{n}}
%Document
\begin{document}
\begin{minipage}[250mm]{0.4\linewidth}
\includegraphics{image.png}
Date of birth:
Phone:
Email:
\end{minipage}
\begin{minipage}[250mm]{0.65\linewidth}
\part*{Name}
\section*{EDUCATION}
\section*{EXPERIENCE}
\end{minipage}
\end{document}发布于 2019-11-03 09:42:08
很高兴看到,您不只是简单地复制一个现有的模板,而是想学习一些乳胶。
关于您的代码的一些评论:
\hfill,以在它们之间得到一点空间--[width=\linewidth]选项。这将自动缩放图像正确的[T]和[b]来确定垂直对齐的showframe添加到您的几何选项中来可视化这一点,例如\geometry{a4paper, total={170mm,257mm}, left=10mm, top=10mm,showframe}。你确定这是简历的好选择吗?%Preamble
\documentclass[a4paper]{article}
\usepackage{graphicx}
\usepackage{geometry}
\geometry{a4paper, total={170mm,257mm}, left=10mm, top=10mm}
\pagestyle{empty}
%%% Custom sectioning (sectsty package)
\usepackage{sectsty}
\sectionfont{\usefont{OT1}{phv}{m}{n}\sectionrule{0pt}{0pt}{-10pt}{1pt}}
\subsectionfont{\usefont{OT1}{phv}{m}{n}}
%Document
\begin{document}
\noindent
\begin{minipage}[T]{0.4\linewidth}
\includegraphics[width=\linewidth]{example-image-duck}
Date of birth:
Phone:
Email:
\end{minipage}%
\hfill
\begin{minipage}[b]{0.55\linewidth}
\part*{Name}
\section*{EDUCATION}
\section*{EXPERIENCE}
\end{minipage}
\end{document}

https://stackoverflow.com/questions/58678426
复制相似问题