Hallo zusammen, im unten gezeigten Beispiel erscheinen der Vor- und Nachname im Header. Wie man sieht, ist das etwas arg nah am Text und sieht meiner Meinung nach nicht gut aus. Wie kann ich den Namen entfernen oder (alternativ und besser?) den Abstand zum Text erhöhen? Der Rest des Headers (Adresse, Telefonnr.) sollen bleiben. Vielen Dank. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % "ModernCV" CV and Cover Letter % LaTeX Template % Version 1.3 (29/10/16) % % This template has been downloaded from: % http://www.LaTeXTemplates.com % % Original author: % Xavier Danaux (xdanaux@gmail.com) with modifications by: % Vel (vel@latextemplates.com) % % License: % CC BY-NC-SA 3.0 (http://creativecommons.org/licenses/by-nc-sa/3.0/) % % Important note: % This template requires the moderncv.cls and .sty files to be in the same % directory as this .tex file. These files provide the resume style and themes % used for structuring the document. % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %---------------------------------------------------------------------------------------- % PACKAGES AND OTHER DOCUMENT CONFIGURATIONS %---------------------------------------------------------------------------------------- \documentclass[11pt,a4paper,sans]{moderncv} % Font sizes: 10, 11, or 12; paper sizes: a4paper, letterpaper, a5paper, legalpaper, executivepaper or landscape; font families: sans or roman \moderncvstyle{casual} % CV theme - options include: 'casual' (default), 'classic', 'oldstyle' and 'banking' \moderncvcolor{blue} % CV color - options include: 'blue' (default), 'orange', 'green', 'red', 'purple', 'grey' and 'black' \usepackage{lipsum} % Used for inserting dummy 'Lorem ipsum' text into the template \usepackage[scale=0.75]{geometry} % Reduce document margins %\setlength{\hintscolumnwidth}{3cm} % Uncomment to change the width of the dates column %\setlength{\makecvtitlenamewidth}{10cm} % For the 'classic' style, uncomment to adjust the width of the space allocated to your name \usepackage{etoolbox,changepage} \patchcmd{\makehead}% <cmd> {0.8\textwidth}% <search> {\linewidth}% <replace> {}{}% <success><failure> \usepackage{lipsum} %---------------------------------------------------------------------------------------- % NAME AND CONTACT INFORMATION SECTION %---------------------------------------------------------------------------------------- \firstname{Vorname soll weg} % Your first name \familyname{Nachname soll weg} % Your last name % All information in this block is optional, comment out any lines you don't need %\title{Motivation letter} \address{Diese Adresse ist ok}{Eine zweite Adresse} \mobile{+1234512345} \phone{+1234512345} \email{email@mail.com} %\extrainfo{additional information} %\photo[70pt][0.4pt]{pictures/picture} % The first bracket is the picture height, the second is the thickness of the frame around the picture (0pt for no frame) %\quote{"A witty and playful quotation" - John Smith} %---------------------------------------------------------------------------------------- \begin{document} %---------------------------------------------------------------------------------------- % COVER LETTER %---------------------------------------------------------------------------------------- % To remove the cover letter, comment out this entire block \clearpage \recipient{\textit{Empfänger} }{Straße\\Ort\\Land} % Letter recipient \date{\today} % Letter date \opening{\textit{Opening}} % Opening greeting %\closing{Sincerely yours,} % Closing phrase %\enclosure[Attached]{curriculum vit\ae{}} % List of enclosed documents \makelettertitle % Print letter title \lipsum %\makeletterclosing % Print letter signature \newpage \end{document} gefragt 01 Nov '20, 14:37 SF6 |
Eine Lösung habe ich schon für mich herausgefunden: \firstname{} % Your first name \familyname{} % Your last name ... einfach den Namen leer lassen. EDIT: Wobei, dann ist. natürlich auch die Unterschrift leer (makeletterclosing) Nicht gut. beantwortet 01 Nov '20, 17:33 SF6 |