我使用Texmaker,目前我的部分看起来像这样:
BCC Cr\\
1.00 \# Scaling factor for the lattice constant\\
2.8850 0.0 0.0 \# Real lattice vectors\\
0.0 2.8850 0.0\\
0.0 0.0 2.8850\\
2 \# Number of atoms of Cr in the unit cell\\
Direct \# Fractional coordinates\\
0.00 0.00 0.00 \# Positions of the atoms in the unit cell\\
0.50 0.50 0.50\\\\
我故意缩进以/#开头的短语来解释我想在报告中看到的内容。我希望这些短语能够垂直对齐。我知道有一个\ align函数,但这会把整个事情变成数学输入。是否有\ align的文本版本?最后,我希望我的最终结果看起来像这样(PDF格式):
BCC Cr
1.00 # Scaling factor for the lattice constant
2.8850 0.0 0.0 # Real lattice vectors
0.0 2.8850 0.0
0.0 0.0 2.8850
2 # Number of atoms of Cr in the unit cell
Direct # Fractional coordinates
0.00 0.00 0.00 # Positions of the atoms in the unit cell
0.50 0.50 0.50
答案 0 :(得分:1)
好的,我找到了解决自己问题的方法,就是使用表格。
以下作品:
\begin{tabular}{ll}
BCC Cr\\
1.00 &\# Scaling factor for the lattice constant\\
2.8850 0.0 0.0 &\# Real lattice vectors\\
0.0 2.8850 0.0\\
0.0 0.0 2.8850\\
2 &\# Number of atoms of Cr in the unit cell\\
Direct &\# Fractional coordinates\\
0.00 0.00 0.00 &\# Positions of the atoms in the unit cell\\
0.50 0.50 0.50\\\\
\end{tabular}\\
{ll}将我的表定义为有2列并且左对齐。 &&#的工作方式与对齐方式相同。
答案 1 :(得分:-1)
\begin{vplace}[0.7]
This is some text to be centred vertically.
\end{vplace}
我认为这会起作用