使用 tikz 对齐文本

使用 tikz 对齐文本

參考圖片

你好,我正在尝试进行如上图所示的对齐。

我无法根据需要修改 Jüri Üyeleri、Başkan 和 Üye 部分。使用 tikz 时,我该怎么办?

谢谢。

\documentclass[12pt]{report}
\usepackage[hidelinks]{hyperref}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[turkish,english,shorthands=:!]{babel}
\usepackage{apacite}
\usepackage[a4paper,left=30mm,top=30mm,right=25mm,bottom=25mm]{geometry}
\usepackage{epigraph}
\usepackage{graphicx}
\usepackage{float}
\usepackage{mathptmx} 
\usepackage[titletoc,title]{appendix}
\usepackage{afterpage}
\usepackage[doublespacing]{setspace}
\usepackage{tocloft}
\usepackage{url}
\usepackage{indentfirst}
\usepackage{tikz}               
\usetikzlibrary{positioning}    
\usepackage{longtable} 
\usepackage{lipsum} 

\begin{document}

\begin{titlepage}
\singlespacing %Satır bitimlerinde (\\) tek boşluk bırakır.
     \begin{tikzpicture}[remember picture, overlay,
            every node/.style = {align=center}, font=\bfseries
                                ]
         \coordinate (cpn) at (current page.north);
         \node[below= 3.5cm of cpn] {TEKNİK ÜNİVERSİTESİ\\ FEN BİLİMLERİ ENSTİTÜSÜ};
         \node[below=10.4cm of cpn] {başlıklı bu çalışma 10/5/2019 gün ve 654 sayılı\\kararıyla oluşturulan jüri tarafından yapılan sınava\\YÜKSEK LİSANS TEZİ\\olarak kabul edilmiştir.};
        \node[below=16.7cm of cpn] {Jüri Üyeleri};
        \node[below=18.2cm of cpn] {Başkan  : Prof. Dr. John DOE . . . . . . . . };
        \node[below=19.4cm of cpn] {Üye     : Doç. Johnie DOEDOE . . . . . . . . };
        \node[below=20.6cm of cpn] {Üye     : Dr. Johnnn DOEKOER . . . . . . . . };
     \end{tikzpicture}
\end{titlepage}


\end{document}

答案1

以下是一个例子。简单又直观。

\documentclass[12pt]{report}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[turkish,english,shorthands=:!]{babel}
\usepackage[a4paper]{geometry}
\usepackage[doublespacing]{setspace}

\begin{document}

\mbox{}

\vspace{10cm}

\begin{tabular}{p{1cm}p{0.1cm}p{4.5cm} p{8cm}}
\multicolumn{2}{l}{Jüri Üyeleri}\\
Baskan & : &Prof. Dr. John DOE &\dotfill\\[1cm]
Üye    & : &Doç. Johnie DOEDOE &\dotfill\\
Üye    & : &Dr. Johnnn DOEKOER &\dotfill\\
\end{tabular}
\end{document}

相关内容